Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
pcrespov committed May 9, 2023
1 parent 2e7254c commit 4e7a55b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,8 @@ async def entry_exists(
f"{file_metadata=}",
)
return bool(file_metadata.file_id == s3_object)
except exceptions.S3InvalidPathError:
except exceptions.S3InvalidPathError as err:
log.debug("Failed request metadata for s3_object=%s with %s", s3_object, err)
return False


Expand Down

0 comments on commit 4e7a55b

Please sign in to comment.