We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f7fed0f + 83494c3 commit 4c200f9Copy full SHA for 4c200f9
tests/queries/0_stateless/02116_clickhouse_stderr.sh
@@ -22,7 +22,8 @@ CUR_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
22
cd "$test_dir" || exit 1
23
24
stderr=$(mktemp -t clickhouse.XXXXXX)
25
- $CLICKHOUSE_SERVER_BINARY -- --logger.stderr="$stderr" 2>/dev/null
+ # It will fail to start because the port is already in use
26
+ $CLICKHOUSE_SERVER_BINARY -- --listen_host "${CLICKHOUSE_HOST}" --tcp_port "$CLICKHOUSE_PORT_TCP" --logger.stderr="$stderr" 2>/dev/null
27
# -s -- check that stderr was created and is not empty
28
test -s "$stderr" || exit 2
29
rm "$stderr"
0 commit comments