Skip to content

Commit

Permalink
Added archiveOnAppError to the job model. Closes #361
Browse files Browse the repository at this point in the history
  • Loading branch information
mwvaughn committed Sep 10, 2021
1 parent 8ec7ded commit 5933818
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tapis_cli/commands/taccapis/v2/jobs/models/job.py
Expand Up @@ -29,6 +29,8 @@ class Job(TapisModel):
argmod.DEFAULT, None, None, False),
("archive", argtype.BOOLEAN, Verbosity.RECORD, argmod.BOOL_DEFAULTS,
argmod.DEFAULT, None, None, True),
("archiveOnAppError", argtype.BOOLEAN, Verbosity.RECORD,
argmod.BOOL_DEFAULTS, argmod.DEFAULT, None, None, True),
("archivePath", argtype.STRING, Verbosity.RECORD,
argmod.STRING_DEFAULTS, argmod.DEFAULT, None, None, True),
("archiveSystem", argtype.STRING, Verbosity.RECORD,
Expand Down

0 comments on commit 5933818

Please sign in to comment.