Skip to content

Commit 071b0a7

Browse files
fix: fix replication template (#973)
1 parent 7d85393 commit 071b0a7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/containers/Tenant/utils/queryTemplates.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ export const createAsyncReplicationTemplate = () => {
4646
return `CREATE OBJECT secret_name (TYPE SECRET) WITH value="secret_value";
4747
4848
CREATE ASYNC REPLICATION my_replication
49-
FOR \`/remote_database/table_name\` AS "local_table_name" --[, \`/remote_database/another_table_name\` AS "another_local_table_name" ...]
49+
FOR \`/remote_database/table_name\` AS \`local_table_name\` --[, \`/remote_database/another_table_name\` AS \`another_local_table_name\` ...]
5050
WITH (
51-
CONNECTION_STRING=\`grpcs://mydb.ydb.tech:2135/?database=/remote_database\`,
52-
TOKEN_SECRET_NAME = "secret_name",
51+
CONNECTION_STRING="grpcs://mydb.ydb.tech:2135/?database=/remote_database",
52+
TOKEN_SECRET_NAME = "secret_name"
5353
-- ENDPOINT="mydb.ydb.tech:2135",
5454
-- DATABASE=\`/remote_database\`,
5555
-- USER="user",

0 commit comments

Comments
 (0)