Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pingpong/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -870,7 +870,7 @@ async def _get_inactive_s3_files() -> None:
async with config.db.driver.async_session() as session:
logger.info("Getting inactive S3 files...")
async for s3_file in S3File.get_s3_files_without_files(session):
logger.info(f"Inactive S3 file found: {s3_file.id}")
logger.info(f"Inactive S3 file found: {s3_file.id}, {s3_file.key}")
logger.info("Done!")

asyncio.run(_get_inactive_s3_files())
Expand Down