Skip to content

Commit

Permalink
chore: make sure to re-raise if not a stale file handle
Browse files Browse the repository at this point in the history
  • Loading branch information
domphan-wandb committed Jan 14, 2025
1 parent e9cef1f commit ff53a8e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions weave_query/weave_query/ops_domain/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -863,6 +863,8 @@ def file_table(file: artifact_fs.FilesystemArtifactFile) -> typing.Optional[Tabl
import errno
if e.errno == errno.ESTALE:
return None
else:
raise e


@op(name="file-partitionedTable")
Expand Down

0 comments on commit ff53a8e

Please sign in to comment.