From b41252971c7c5f54208fe9114953c924f0bb3548 Mon Sep 17 00:00:00 2001 From: Erik Taubeneck Date: Wed, 31 Jul 2024 13:29:23 -0700 Subject: [PATCH] add .log at the end of log files --- sidecar/app/query/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sidecar/app/query/base.py b/sidecar/app/query/base.py index 57caf17..d2509a2 100644 --- a/sidecar/app/query/base.py +++ b/sidecar/app/query/base.py @@ -24,7 +24,7 @@ def status_file_path(query_id: str) -> Path: def log_file_path(query_id: str) -> Path: settings = get_settings() - return settings.log_dir_path / Path(query_id) + return settings.log_dir_path / Path(f"{query_id}.log") @dataclass