John Ramirez
03/23/2020, 4:17 PMUnexpected error: AttributeError("'S3ResultHandler' object has no attribute '_client'")
any thoughts?josh
03/23/2020, 5:18 PM_client
attribute was updated in this recent PR https://github.com/PrefectHQ/prefect/pull/2136 and I wonder if there’s a chance it’s being referenced before assignmentJohn Ramirez
03/23/2020, 5:22 PMjosh
03/23/2020, 5:23 PMJohn Ramirez
03/23/2020, 5:26 PMjosh
03/23/2020, 5:27 PMIn [21]: S3ResultHandler(bucket='my-bucket')
Out[21]: <ResultHandler: S3ResultHandler>
In [22]: r = _
In [23]: r.client
Out[23]: <botocore.client.S3 at 0x10cc10908>
In [24]: r._client
Out[24]: <botocore.client.S3 at 0x10cc10908>
John Ramirez
03/23/2020, 5:32 PMRESULT_HANDLER = S3ResultHandler(
bucket='workflow-output',
aws_credentials_secret='AWS_CREDS',
)
josh
03/23/2020, 5:34 PMJohn Ramirez
03/23/2020, 7:15 PMjosh
03/23/2020, 7:29 PMJohn Ramirez
03/23/2020, 8:07 PM0.9.8
? I have already moved back to 0.9.7
josh
03/23/2020, 8:20 PM0.9.7
?John Ramirez
03/24/2020, 2:00 PM0.9.8
and 0.9.7
I am getting the Unexpected error: AttributeError("'S3ResultHandler' object has no attribute '_client'")
errorJie Lou
03/26/2020, 6:19 PM