From fe0b601adeb85d05187f9635811681cdcc6a8d5f Mon Sep 17 00:00:00 2001 From: GPK Date: Thu, 3 Jul 2025 20:44:01 +0100 Subject: [PATCH] [v3-0-test] Fix Tinkerpop integration tests execution envrionment variable name (#52826) (cherry picked from commit 53cb9f05164696d5eb9007334fe5a172a6591a4e) Co-authored-by: GPK --- scripts/ci/docker-compose/integration-tinkerpop.yml | 2 +- scripts/in_container/check_environment.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/ci/docker-compose/integration-tinkerpop.yml b/scripts/ci/docker-compose/integration-tinkerpop.yml index 27e9783999afd..b9c2952e88eeb 100644 --- a/scripts/ci/docker-compose/integration-tinkerpop.yml +++ b/scripts/ci/docker-compose/integration-tinkerpop.yml @@ -34,7 +34,7 @@ services: depends_on: - gremlin environment: - - INTEGRATION_GREMLIN=true + - INTEGRATION_TINKERPOP=true stdin_open: true volumes: graph-data: diff --git a/scripts/in_container/check_environment.sh b/scripts/in_container/check_environment.sh index 0cf7b85c4b9b2..9f3e67172fc83 100755 --- a/scripts/in_container/check_environment.sh +++ b/scripts/in_container/check_environment.sh @@ -188,7 +188,7 @@ if [[ ${INTEGRATION_YDB} == "true" ]]; then check_service "YDB Cluster" "run_nc ydb 2136" 50 fi -if [[ ${INTEGRATION_GREMLIN} == "true" ]]; then +if [[ ${INTEGRATION_TINKERPOP} == "true" ]]; then check_service "gremlin" "run_nc gremlin 8182" 100 30 fi