From a187aec612350ed78d626e0e54279d38d0f19655 Mon Sep 17 00:00:00 2001 From: Tasko Olevski Date: Tue, 11 Oct 2022 13:18:31 +0200 Subject: [PATCH] fix(core): logging wrong chunk attribute (#3140) --- renku/ui/service/jobs/cleanup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renku/ui/service/jobs/cleanup.py b/renku/ui/service/jobs/cleanup.py index 20fc76589a..d2ca5c2a31 100644 --- a/renku/ui/service/jobs/cleanup.py +++ b/renku/ui/service/jobs/cleanup.py @@ -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():