Has anyone written a dynamic resource provider wit...
# python
l
Has anyone written a dynamic resource provider with asynchronous methods? The docs on the website say the CRUD methods can be async but I get these kinds of errors when I try that:
Copy code
RuntimeWarning: coroutine 'LFMResourceProvider.create' was never awaited
and
Copy code
E             pulumi-python:dynamic:Resource (test-disk):
E               error: Exception calling application: 'coroutine' object has no attribute 'outs'
Seems like a bug to me. 🤷
My custom provider is inheriting from
pulumi.dynamic.ResourceProvider
. Is there a separate async definition in the pulumi package?