Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

actually test vtcombo #14095

Merged
merged 1 commit into from
Sep 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions go/flags/endtoend/flags_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ var (
//go:embed vtaclcheck.txt
vtaclcheckTxt string

//go:embed vtcombo.txt
vtcomboTxt string

//go:embed vtexplain.txt
vtexplainTxt string

Expand Down Expand Up @@ -87,19 +90,20 @@ var (
"mysqlctl": mysqlctlTxt,
"mysqlctld": mysqlctldTxt,
"vtaclcheck": vtaclcheckTxt,
"vtexplain": vtexplainTxt,
"vtgate": vtgateTxt,
"vttablet": vttabletTxt,
"vttlstest": vttlstestTxt,
"vtbackup": vtbackupTxt,
"vtcombo": vtcomboTxt,
"vtctld": vtctldTxt,
"vtctlclient": vtctlclientTxt,
"vtctldclient": vtctldclientTxt,
"vtexplain": vtexplainTxt,
"vtgate": vtgateTxt,
"vtorc": vtorcTxt,
"vttablet": vttabletTxt,
"vttestserver": vttestserverTxt,
"zkctld": zkctldTxt,
"vtbackup": vtbackupTxt,
"vttlstest": vttlstestTxt,
"zk": zkTxt,
"zkctl": zkctlTxt,
"zkctld": zkctldTxt,
}
)

Expand Down
1 change: 1 addition & 0 deletions go/flags/endtoend/vtcombo.txt
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ Flags:
--gc_check_interval duration Interval between garbage collection checks (default 1h0m0s)
--gc_purge_check_interval duration Interval between purge discovery checks (default 1m0s)
--gh-ost-path string override default gh-ost binary full path
--grpc-send-session-in-streaming If set, will send the session as last packet in streaming api to support transactions in streaming
--grpc-use-effective-groups If set, and SSL is not used, will set the immediate caller's security groups from the effective caller id's groups.
--grpc-use-static-authentication-callerid If set, will set the immediate caller id to the username authenticated by the static auth plugin.
--grpc_auth_mode string Which auth plugin implementation to use (eg: static)
Expand Down
Loading