From 9b8b13877a5f5adc154bb2af87eaf4ffef7d29e5 Mon Sep 17 00:00:00 2001 From: Simon Detheridge Date: Thu, 24 Jun 2021 20:49:33 +0100 Subject: [PATCH] Make idleTimeout an integer in the config template --- services/git-bridge/conf/envsubst_template.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/git-bridge/conf/envsubst_template.json b/services/git-bridge/conf/envsubst_template.json index 7b44302039..5d3c28affc 100644 --- a/services/git-bridge/conf/envsubst_template.json +++ b/services/git-bridge/conf/envsubst_template.json @@ -1,7 +1,7 @@ { "port": ${GIT_BRIDGE_PORT:-8000}, "bindIp": "${GIT_BRIDGE_BIND_IP:-0.0.0.0}", - "idleTimeout": "${GIT_BRIDGE_IDLE_TIMEOUT:-600000}", + "idleTimeout": ${GIT_BRIDGE_IDLE_TIMEOUT:-600000}, "rootGitDirectory": "${GIT_BRIDGE_ROOT_DIR:-/tmp/wlgb}", "apiBaseUrl": "${GIT_BRIDGE_API_BASE_URL:-https://localhost/api/v0}", "postbackBaseUrl": "${GIT_BRIDGE_POSTBACK_BASE_URL:-https://localhost}",