Skip to content

Commit

Permalink
Added PROXYTOOSHORT as pilot exit code 80
Browse files Browse the repository at this point in the history
  • Loading branch information
PalNilsson committed Oct 31, 2024
1 parent 0b5ff5f commit dae81f3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pilot/util/auxiliary.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ def get_error_code_translation_dictionary() -> dict:
"""
error_code_translation_dictionary = {
-1: [64, "Site offline"],
errors.CVMFSISNOTALIVE: [64, "CVMFS is not responding"], # same exit code as site offline
errors.GENERALERROR: [65, "General pilot error, consult batch log"], # added to traces object
errors.MKDIR: [66, "Could not create directory"], # added to traces object
errors.NOSUCHFILE: [67, "No such file or directory"], # added to traces object
Expand All @@ -196,7 +197,7 @@ def get_error_code_translation_dictionary() -> dict:
errors.MISSINGINPUTFILE: [77, "Missing input file in SE"], # should pilot report this type of error to wrapper?
errors.PANDAQUEUENOTACTIVE: [78, "PanDA queue is not active"],
errors.COMMUNICATIONFAILURE: [79, "PanDA server communication failure"],
errors.CVMFSISNOTALIVE: [64, "CVMFS is not responding"], # same exit code as site offline
errors.PROXYTOOSHORT: [80, "Proxy too short"], # added to traces object
errors.KILLSIGNAL: [137, "General kill signal"], # Job terminated by unknown kill signal
errors.SIGTERM: [143, "Job killed by signal: SIGTERM"], # 128+15
errors.SIGQUIT: [131, "Job killed by signal: SIGQUIT"], # 128+3
Expand Down

0 comments on commit dae81f3

Please sign in to comment.