From fcc81ee3a4b9ae937e0f447ee574b676506b6390 Mon Sep 17 00:00:00 2001 From: "halil.cakal" Date: Thu, 11 Jul 2024 14:54:57 +0100 Subject: Add passthrough write (CUD) operations to k6 - the delay for dmi has been hanlded in seprate commit - for simplicity only the POST request is considered Issue-ID: CPS-2267 Change-Id: I62ede04dd8e2744fc723566742396df31c42ea5d Signed-off-by: halil.cakal --- k6-tests/setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'k6-tests/setup.sh') diff --git a/k6-tests/setup.sh b/k6-tests/setup.sh index 86f6d26acd..346b9c0690 100755 --- a/k6-tests/setup.sh +++ b/k6-tests/setup.sh @@ -26,5 +26,5 @@ CONTAINER_IDS=$(docker ps --filter "name=cps-and-ncmp" --format "{{.ID}}") # Check the logs for each container for CONTAINER_ID in $CONTAINER_IDS; do echo "Checking logs for container: $CONTAINER_ID" - docker logs "$CONTAINER_ID" -f | grep -m 1 "$READY_MESSAGE" >/dev/null || true + docker logs "$CONTAINER_ID" -f | grep -m 1 "$READY_MESSAGE" >/dev/null && echo "CPS is ready in container: $CONTAINER_ID" || true done -- cgit 1.2.3-korg