Logging, data connectors, monitoring, secret handling and general lifehacks to make data people lives easier.
8
stars
1
forks
source link
[BUG] Method `for_storage_path` fails when instantiating the S3StorageClient #467
Closed
Andre-Lx-Costa closed 2 months ago
Description When instantiating the S3StorageClient through the
for_storage_path
classmethod the method fails.The failure happens on this line where we attempt to access the
base_client.session
property which will be None, since it hasn't been instantiated.It can be fixed either by:
Instantiate the session if not already instantiated here
Calling
AwsClient.initialize_session
here