Skip to content

Commit 6246a3e

Browse files
committed
log the timeout if specified as env var
1 parent 2efc9f6 commit 6246a3e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

docker/start.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -484,6 +484,7 @@ def main():
484484
api_timeout = 8
485485
if os.environ.get(API_TIMEOUT_ENV_NAME):
486486
api_timeout = int(os.environ.get(API_TIMEOUT_ENV_NAME))
487+
logger.info(f"API timeout set to {api_timeout} seconds")
487488
else:
488489
os.environ[API_TIMEOUT_ENV_NAME] = str(api_timeout)
489490

0 commit comments

Comments
 (0)