Skip to content

Commit

Permalink
default to kafka
Browse files Browse the repository at this point in the history
Signed-off-by: Ping Yu <yuping@pingcap.com>
  • Loading branch information
pingyu committed Jan 5, 2024
1 parent 695aba4 commit 13a140a
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions cdc/tests/integration_tests/run_group.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,17 @@ set -eo pipefail

CUR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)

sink_type=tikv
group=$1
if [[ $# -eq 1 ]]; then
# TODO: remove this branch when CI pipeline is updated.
sink_type=kafka
group=$1
elif [[ $# -eq 2 ]]; then
sink_type=$1
group=$2
else
echo "Usage: $0 [sink_type] group"
exit 1
fi

# Define groups
# Note: If new group is added, the group name must also be added to CI
Expand Down

0 comments on commit 13a140a

Please sign in to comment.