Skip to content

Commit a187aec

Browse files
authored
fix(core): logging wrong chunk attribute (#3140)
1 parent f8184bd commit a187aec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

renku/ui/service/jobs/cleanup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def cache_files_cleanup():
5252

5353
for chunk in chunks:
5454
if chunk.exists() and chunk.ttl_expired():
55-
worker_log.debug(f"purging chunk {chunk.file_id}:{chunk.file_name}")
55+
worker_log.debug(f"purging chunk {chunk.chunk_file_id}:{chunk.file_name}")
5656
chunk.purge()
5757
chunk_folders.add(chunk.abs_path.parent)
5858
elif not chunk.exists():

0 commit comments

Comments
 (0)