Skip to content

Commit

Permalink
update quotes
Browse files Browse the repository at this point in the history
Signed-off-by: Renan Rangel <[email protected]>
  • Loading branch information
rvrangel committed Jun 28, 2024
1 parent 8a23324 commit fac8c69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions go/vt/mysqlctl/mysqlshellbackupengine.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ var (
mysqlShellFlags = flag.String("mysql_shell_flags", "--defaults-file=/dev/null --js -h localhost", "execution flags to pass to mysqlsh binary")
// flags to pass through to backup phase
mysqlShellDumpFlags = flag.String("mysql_shell_dump_flags",
"{\"threads\": 2}",
`{"threads": 2}`,
"flags to pass to mysql shell dump utility. This should be a JSON string and will be saved in the MANIFEST")
// flags to pass through to extract phase of restore
mysqlShellLoadFlags = flag.String("mysql_shell_load_flags",
"{\"threads\": 2, \"updateGtidSet\": \"replace\", \"skipBinlog\": true, \"progressFile\": \"\"}",
`{"threads": 2, "updateGtidSet": "replace", "skipBinlog": true, "progressFile": ""}`,
"flags to pass to mysql shell load utility. This should be a JSON string")
// additional flags
mysqlShellBackupShouldDrain = flag.Bool("mysql_shell_should_drain",
Expand Down

0 comments on commit fac8c69

Please sign in to comment.