From 19a490c020f3db172cd5c5f256715da01f5fc7b1 Mon Sep 17 00:00:00 2001 From: Alexander Indenbaum Date: Mon, 7 Aug 2023 23:20:10 +0300 Subject: [PATCH] Use public address of GW, also used by client Signed-off-by: Alexander Indenbaum --- .github/workflows/build-container.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-container.yml b/.github/workflows/build-container.yml index fa6e0038..1bb20116 100644 --- a/.github/workflows/build-container.yml +++ b/.github/workflows/build-container.yml @@ -151,9 +151,8 @@ jobs: timeout-minutes: 1 run: | . .env - HOST_PORT=$(make -s port OPTS="--index=1" CMD="nvmeof $NVMEOF_GW_PORT" | tr ":" " ") - echo using port $HOST_PORT - until nc -z $HOST_PORT; do + echo using gateway $NVMEOF_IP_ADDRESS port $NVMEOF_GW_PORT + until nc -z $NVMEOF_IP_ADDRESS $NVMEOF_GW_PORT; do echo -n . sleep 1 done