Skip to content

Commit 0b2d275

Browse files
committed
Fix script call
Signed-off-by: Viet Nguyen Duc <[email protected]>
1 parent 49db679 commit 0b2d275

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Video/video.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ process_name="video.recorder"
2424
if [ "${SE_VIDEO_RECORD_STANDALONE}" = "true" ]; then
2525
JQ_SESSION_ID_QUERY=".value.nodes[]?.slots[]?.session?.sessionId"
2626
SE_NODE_PORT=${SE_NODE_PORT:-"4444"}
27-
NODE_STATUS_ENDPOINT="$(/opt/bin/video_gridUrl.py)/status"
27+
NODE_STATUS_ENDPOINT="$(python3 /opt/bin/video_gridUrl.py)/status"
2828
else
2929
JQ_SESSION_ID_QUERY=".[]?.node?.slots | .[0]?.session?.sessionId"
3030
SE_NODE_PORT=${SE_NODE_PORT:-"5555"}

Video/video_graphQLQuery.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ SESSION_ID=$1
88
if [ -n "${SE_NODE_GRID_GRAPHQL_URL}" ]; then
99
GRAPHQL_ENDPOINT=${SE_NODE_GRID_GRAPHQL_URL}
1010
else
11-
GRAPHQL_ENDPOINT="$(/opt/bin/video_gridUrl.py)"
11+
GRAPHQL_ENDPOINT="$(python3 /opt/bin/video_gridUrl.py)"
1212
fi
1313
if [[ -n ${GRAPHQL_ENDPOINT} ]] && [[ ! ${GRAPHQL_ENDPOINT} == */graphql ]]; then
1414
GRAPHQL_ENDPOINT="${GRAPHQL_ENDPOINT}/graphql"

0 commit comments

Comments
 (0)