Skip to content

Commit 81d9086

Browse files
committed
CI: redirect stderr of background scripts
1 parent 55e32ff commit 81d9086

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker/startup.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ KC=${KC:=false}
77
# exit when any command fails
88
set -e
99

10-
./docker/start_db.sh &
10+
./docker/start_db.sh 2>&1 &
1111
START_DB_PID=$!
1212

1313
./docker/start_kafka_zk.sh
14-
./docker/start_schema_registry.sh &
14+
./docker/start_schema_registry.sh 2>&1 &
1515
START_SCHEMA_REGISTRY_PID=$!
1616

1717
if [ "$KC" == "true" ]; then

0 commit comments

Comments
 (0)