We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c492ceb commit de5991dCopy full SHA for de5991d
components/playground/instance/ticdc.go
@@ -63,6 +63,9 @@ func (c *TiCDC) Start(ctx context.Context, version utils.Version) error {
63
}
64
clusterVersion := string(version)
65
if tidbver.TiCDCSupportConfigFile(clusterVersion) {
66
+ if c.ConfigPath != "" {
67
+ args = append(args, fmt.Sprintf("--config=%s", c.ConfigPath))
68
+ }
69
if tidbver.TiCDCSupportDataDir(clusterVersion) {
70
args = append(args, fmt.Sprintf("--data-dir=%s", filepath.Join(c.Dir, "data")))
71
} else {
0 commit comments