From 94426799acbb6db4c82505e59e5a9560e4a8141c Mon Sep 17 00:00:00 2001 From: Anthony Bretaudeau Date: Tue, 20 Feb 2024 09:19:48 +0100 Subject: [PATCH] fix --- tools/genenotebook/launch_gnb.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/genenotebook/launch_gnb.sh b/tools/genenotebook/launch_gnb.sh index 3d8d2aa..a27dc9a 100755 --- a/tools/genenotebook/launch_gnb.sh +++ b/tools/genenotebook/launch_gnb.sh @@ -60,7 +60,7 @@ while ! grep -q "GeneNoteBook server started, serving" ./gnb.log; do done; # Make sure that gnb is working, and that it's serving on the expected port -curl http://127.0.0.1/healthcheck > /dev/null +curl "http://127.0.0.1:${GNB_PORT}/healthcheck" > /dev/null grep -q "Healthcheck OK" ./gnb.log echo "GNB is ready"