Skip to content

Commit

Permalink
fix(core): logging wrong chunk attribute (#3140)
Browse files Browse the repository at this point in the history
  • Loading branch information
olevski committed Oct 11, 2022
1 parent f8184bd commit a187aec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion renku/ui/service/jobs/cleanup.py
Expand Up @@ -52,7 +52,7 @@ def cache_files_cleanup():

for chunk in chunks:
if chunk.exists() and chunk.ttl_expired():
worker_log.debug(f"purging chunk {chunk.file_id}:{chunk.file_name}")
worker_log.debug(f"purging chunk {chunk.chunk_file_id}:{chunk.file_name}")
chunk.purge()
chunk_folders.add(chunk.abs_path.parent)
elif not chunk.exists():
Expand Down

0 comments on commit a187aec

Please sign in to comment.