Skip to content

Commit

Permalink
slack-19.0: disable --config-file-not-found-handling on v15 tests
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Vaillancourt <tim@timvaillancourt.com>
  • Loading branch information
timvaillancourt committed Jul 9, 2024
1 parent 15ee54c commit 9194d25
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion examples/common/env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ done;

# vtctldclient has a separate alias setup below
for binary in vttablet vtgate vtctld mysqlctl vtorc vtctl; do
alias $binary="$binary --config-file-not-found-handling=ignore"
$binary --version | grep -q "19\.[0-9]*\.[0-9]*"
if [[ "$?" -eq "0" ]]; then
alias $binary="$binary --config-file-not-found-handling=ignore"
fi
done;

if [ "${TOPO}" = "zk2" ]; then
Expand Down

0 comments on commit 9194d25

Please sign in to comment.