go/flags/endtoend/MIGRATION_CHECKLIST.md
Code Changes
vitess.io/vitess/go/vt/utils import where neededutils.SetFlag*Var functionTesting
Documentation
Date: 2025-09-05 Files Modified:
/go/vt/vtctld/action_repository.go/go/cmd/vtctlclient/main.go/go/cmd/vtctldclient/command/root.go/go/vt/vtgate/tabletgateway.goFlags Migrated:
action_timeout → action-timeoutgateway_initial_tablet_timeout → gateway-initial-tablet-timeoutTests Run:
go test ./go/vt/vtctld - PASSgo test ./go/vt/vtgate - PASSallow_first_backupfile_backup_storage_rootinitial_backupmin_backup_intervalrestart_before_backupstatsd_addressstatsd_sample_rateGetFlagVariantForTestsByVersion - DO NOT modify these// Before:
fs.StringVar(&variable, "flag_with_underscore", defaultValue, "description")
// After:
utils.SetFlagStringVar(fs, &variable, "flag-with-dashes", defaultValue, "description")