From fac8c690c114b2703a4ea8edd5740247d0bdcad4 Mon Sep 17 00:00:00 2001 From: Renan Rangel Date: Fri, 28 Jun 2024 06:29:34 -0700 Subject: [PATCH] update quotes Signed-off-by: Renan Rangel --- go/vt/mysqlctl/mysqlshellbackupengine.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/go/vt/mysqlctl/mysqlshellbackupengine.go b/go/vt/mysqlctl/mysqlshellbackupengine.go index e29807f0781..076b8dea89b 100644 --- a/go/vt/mysqlctl/mysqlshellbackupengine.go +++ b/go/vt/mysqlctl/mysqlshellbackupengine.go @@ -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",