Skip to content

Commit

Permalink
Suppress error message when QC xattr not found on file
Browse files Browse the repository at this point in the history
  • Loading branch information
benjwadams committed Nov 26, 2024
1 parent a62395a commit 55b56d4
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion glider_qc/glider_qc.py
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,6 @@ def check_needs_qc(nc_path):
if os.getxattr(nc_path, "user.qc_run"):
return False
except OSError:
log.exception(f"Exception occurred trying to get xattr at {nc_path}:")
pass
with Dataset(nc_path, 'r') as nc:
qc = GliderQC(nc, None)
Expand Down

0 comments on commit 55b56d4

Please sign in to comment.