From 7b714ed4766436ab836b65832bdd707c4623dd5d Mon Sep 17 00:00:00 2001 From: Pavel_Shilin Date: Mon, 4 Dec 2023 15:37:24 +0100 Subject: [PATCH] Changed the command timeout 60 docker logs --- clt_tests/tests/query_log_to_stdout.rec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clt_tests/tests/query_log_to_stdout.rec b/clt_tests/tests/query_log_to_stdout.rec index 867344f..7c1dff1 100644 --- a/clt_tests/tests/query_log_to_stdout.rec +++ b/clt_tests/tests/query_log_to_stdout.rec @@ -4,7 +4,7 @@ docker run -d -e QUERY_LOG_TO_STDOUT=true --name manticore manticoresoftware/man ––– output ––– #!/[0-9a-z]+/!# ––– input ––– -Timeout 60 docker logs -f manticore | grep -qm1 "accepting connections" && echo 'accepting connections' || echo 'Timeout failed' +timeout 60 docker logs -f manticore | grep -qm1 "accepting connections" && echo 'accepting connections' || echo 'Timeout failed' ––– output ––– accepting connections ––– input –––