remove j2 extension from templates

This commit is contained in:
2025-09-06 23:52:29 -07:00
parent f46e45b2b3
commit a08d8c9153
14 changed files with 12 additions and 12 deletions

View File

@ -0,0 +1,17 @@
#!/bin/bash
i=1
while [ $i ]
do
TIME_ELAPSED=$(curl -s http://172.17.0.1:5000/status | jq .Elapsed_Time)
TIMEOUT_VALUE=$(cat {{ streaming_working_folder }}/service_control/duration.json | jq .seconds)
if [[ $TIME_ELAPSED -gt $TIMEOUT_VALUE ]]; then
curl -s http://172.17.0.1:5000/stop
i=0
fi
sleep 1
done