mirror of
https://github.com/clearml/clearml
synced 2025-06-26 18:16:07 +00:00
Fix always trying to get a pipeline step cached
This commit is contained in:
parent
cf9671c253
commit
f3d42d0a53
@ -76,7 +76,7 @@ class ClearmlJob(object):
|
|||||||
# check cached task
|
# check cached task
|
||||||
self._is_cached_task = False
|
self._is_cached_task = False
|
||||||
task_hash = None
|
task_hash = None
|
||||||
if allow_caching and not disable_clone_task or not self.task:
|
if allow_caching and not disable_clone_task and not self.task:
|
||||||
# look for a cached copy of the Task
|
# look for a cached copy of the Task
|
||||||
# get parameters + task_overrides + as dict and hash it.
|
# get parameters + task_overrides + as dict and hash it.
|
||||||
task_hash = self._create_task_hash(
|
task_hash = self._create_task_hash(
|
||||||
|
Loading…
Reference in New Issue
Block a user