Hi All, Having new Dynamic Provider in python whi...
# general
k
Hi All, Having new Dynamic Provider in python which as part of the flow pulls object from S3 bucket, this is being done via aws.s3.get_bucket_object call:
Copy code
s3_obj = aws.s3.get_bucket_object(bucket=self.bucket_name, key=self.csv_object_key)
This call is getting fail with an exception I couldn't find the root cause:
Copy code
venv/lib/python3.9/site-packages/grpc/_server.py:457: RuntimeWarning: coroutine 'invoke.<locals>.do_rpc' was never awaited
      return None, False
    RuntimeWarning: Enable tracemalloc to get the object allocation traceback
 
  pulumi-python:dynamic:Resource (app-map-migrated-tag):
    error: Exception calling application: There is no current event loop in thread 'ThreadPoolExecutor-0_0'.
At first the pulumi_aws package version was 3.33.0 and I even tried to upgrade it to the latest (4.13.0) but no luck. Any idea here what could be the issue?