From 9dec10557826dc499b55d303ffe9fa94742ab9c2 Mon Sep 17 00:00:00 2001 From: Roy Nieterau Date: Thu, 25 Jul 2024 20:04:10 +0200 Subject: [PATCH 1/2] Do not force the full job to fail - it may be just this machine has a server connection timeout. Fix #14 --- .../ayon_deadline/repository/custom/plugins/GlobalJobPreLoad.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/client/ayon_deadline/repository/custom/plugins/GlobalJobPreLoad.py b/client/ayon_deadline/repository/custom/plugins/GlobalJobPreLoad.py index 894049fb2a..7b4ae45bcf 100644 --- a/client/ayon_deadline/repository/custom/plugins/GlobalJobPreLoad.py +++ b/client/ayon_deadline/repository/custom/plugins/GlobalJobPreLoad.py @@ -407,7 +407,6 @@ def inject_openpype_environment(deadlinePlugin): import traceback print(traceback.format_exc()) print("!!! Injection failed.") - RepositoryUtils.FailJob(job) raise @@ -581,7 +580,6 @@ def inject_ayon_environment(deadlinePlugin): import traceback print(traceback.format_exc()) print("!!! Injection failed.") - RepositoryUtils.FailJob(job) raise From 6f5b59fb6ebd02403fabcb859c48fd753cf3f2a3 Mon Sep 17 00:00:00 2001 From: Roy Nieterau Date: Thu, 25 Jul 2024 20:59:24 +0200 Subject: [PATCH 2/2] Bump version --- .../ayon_deadline/repository/custom/plugins/GlobalJobPreLoad.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/ayon_deadline/repository/custom/plugins/GlobalJobPreLoad.py b/client/ayon_deadline/repository/custom/plugins/GlobalJobPreLoad.py index 7b4ae45bcf..73911230e8 100644 --- a/client/ayon_deadline/repository/custom/plugins/GlobalJobPreLoad.py +++ b/client/ayon_deadline/repository/custom/plugins/GlobalJobPreLoad.py @@ -13,7 +13,7 @@ FileUtils, DirectoryUtils, ) -__version__ = "1.1.2" +__version__ = "1.1.3" VERSION_REGEX = re.compile( r"(?P0|[1-9]\d*)" r"\.(?P0|[1-9]\d*)"