Skip to content

Commit bf6e595

Browse files
committed
Raising errors when we find them. RE:natcap#1580
1 parent 0a62247 commit bf6e595

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

codesigning/signing-worker/natcap-codesign.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,9 @@ def main():
8383
sign_file(filename)
8484
upload_to_bucket(filename, file_to_sign['gs-uri'])
8585
os.remove(filename)
86-
except Exception:
86+
except Exception as e:
8787
LOGGER.exception("Unexpected error signing file")
88+
raise e
8889
time.sleep(15)
8990

9091

0 commit comments

Comments
 (0)