Skip to content

Commit

Permalink
Merge pull request #69 from PanDAWMS/next
Browse files Browse the repository at this point in the history
3.4.6.1
  • Loading branch information
PalNilsson authored Dec 12, 2022
2 parents 76faf23 + e3f4c7e commit 0e866aa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion PILOTVERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.4.5.8
3.4.6.1
2 changes: 1 addition & 1 deletion pilot/common/errorcodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ def resolve_transform_error(self, exit_code, stderr):
exit_code = self.APPTAINERNOTINSTALLED
elif exit_code == 64 and "cannot create directory" in stderr:
exit_code = self.MKDIR
elif exit_code and "General payload setup verification error":
elif exit_code and "General payload setup verification error" in stderr:
exit_code = self.SETUPFAILURE
elif exit_code == -1:
exit_code = self.UNKNOWNTRFFAILURE
Expand Down
4 changes: 2 additions & 2 deletions pilot/util/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
# Pilot version
RELEASE = '3' # released number should be fixed at 3 for Pilot 3
VERSION = '4' # version number is '1' for first release, '0' until then, increased for bigger updates
REVISION = '5' # revision number should be reset to '0' for every new version release, increased for small updates
BUILD = '8' # build number should be reset to '1' for every new development cycle
REVISION = '6' # revision number should be reset to '0' for every new version release, increased for small updates
BUILD = '1' # build number should be reset to '1' for every new development cycle

SUCCESS = 0
FAILURE = 1
Expand Down

0 comments on commit 0e866aa

Please sign in to comment.