We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4670ad commit 5f789beCopy full SHA for 5f789be
2 files changed
README.md
app/store.py
@@ -266,7 +266,7 @@ def get_logs_with_disk_fallback(
266
) -> tuple[list[str], int]:
267
"""Like get_logs, but falls back to on-disk log if no in-memory lines."""
268
lines, new_offset = self.get_logs(job_id, offset)
269
- if not lines and offset == 0:
+ if not lines:
270
log_path = self.get_log_path(job_id)
271
if log_path and log_path.exists():
272
try:
0 commit comments