Skip to content

Commit

Permalink
Merge pull request #15 from BigRoy/enhancement/globaljobpreload_do_no…
Browse files Browse the repository at this point in the history
…t_fail_job

Do not fail job on error in GlobalJobPreLoad
  • Loading branch information
BigRoy authored Jul 29, 2024
2 parents dbc1298 + 6f5b59f commit 67fce57
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
FileUtils,
DirectoryUtils,
)
__version__ = "1.1.2"
__version__ = "1.1.3"
VERSION_REGEX = re.compile(
r"(?P<major>0|[1-9]\d*)"
r"\.(?P<minor>0|[1-9]\d*)"
Expand Down Expand Up @@ -407,7 +407,6 @@ def inject_openpype_environment(deadlinePlugin):
import traceback
print(traceback.format_exc())
print("!!! Injection failed.")
RepositoryUtils.FailJob(job)
raise


Expand Down Expand Up @@ -581,7 +580,6 @@ def inject_ayon_environment(deadlinePlugin):
import traceback
print(traceback.format_exc())
print("!!! Injection failed.")
RepositoryUtils.FailJob(job)
raise


Expand Down

0 comments on commit 67fce57

Please sign in to comment.