mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
Fix issue with job cache file retrieval
This commit is contained in:
parent
29ab3167e7
commit
6dd8d2c0cd
1 changed files with 1 additions and 1 deletions
|
|
@ -134,7 +134,7 @@ class Job:
|
|||
with LOCK:
|
||||
if not ret_data:
|
||||
return self.db.get_job_cache_file(job_name or self.job_name, name, service_id=service_id, plugin_id=plugin_id or self.job_path.name, with_info=with_info, with_data=with_data) # type: ignore
|
||||
ret_data.update(self.db.get_job_cache_file(job_name or self.job_name, name, service_id=service_id, plugin_id=plugin_id or self.job_path.name, with_info=True, with_data=False)) # type: ignore
|
||||
ret_data.update(self.db.get_job_cache_file(job_name or self.job_name, name, service_id=service_id, plugin_id=plugin_id or self.job_path.name, with_info=True, with_data=False) or {}) # type: ignore
|
||||
return ret_data
|
||||
|
||||
def is_cached_file(
|
||||
|
|
|
|||
Loading…
Reference in a new issue