Browse Source

Enforce limit to pipeline name length.

master
Roelf Wichertjes 2 years ago
parent
commit
60ede11dd6
Signed by: rewby GPG Key ID: 4C2B6D2972EE5423
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      entrypoint.sh

+ 1
- 0
entrypoint.sh View File

@@ -69,6 +69,7 @@ case "$1" in
"pipeline")
cd pipeline
export PIPELINE_NAME="${PIPELINE_NAME:-${PIPELINE_PREFIX}-$(hostname -s)}"
export PIPELINE_NAME="${PIPELINE_NAME:0:30}"
export NO_SCREEN=1
sudo /usr/sbin/tcp-closer -4 --dport 443 --idle_time 21601000 --last_recv_limit 43200000 --interval 300 &
sudo /usr/sbin/tcp-closer -6 --dport 443 --idle_time 21601000 --last_recv_limit 43200000 --interval 300 &


Loading…
Cancel
Save