You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Because S3PutObject is a named tuple, the else branch of this if statement is never hit, irrespective of user passing Tuple[str, PutValue] or S3PutObject.
Because
S3PutObject
is a named tuple, theelse
branch of thisif
statement is never hit, irrespective of user passingTuple[str, PutValue]
orS3PutObject
.metaflow/metaflow/plugins/datatools/s3/s3.py
Line 1322 in 5908c4e
If you pass an
S3PutObject
that haspath
set and notvalue
then theput_files
method is unable to resolve the file to upload because in linehttps://github.com/Netflix/metaflow/blob/5908c4e1481c15a93ec5ef845cec630c4ef84919/metaflow/plugins/datatools/s3/s3.py#L1324C21-L1324C39
path = key_path[1]
resolve topath
to None and it can no longer find the file.The text was updated successfully, but these errors were encountered: