Skip to content

Commit 9a4bcd1

Browse files
update instance status data_queries to used_for_replication
1 parent 1c140ba commit 9a4bcd1

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

cli/src/api/display-status.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,7 @@ function formatSyncRulesSection(section: SyncRulesSection, indentLevel: number):
7373
const repl = table.replication_id?.length ? table.replication_id.join(', ') : '—';
7474
lines.push(
7575
`${p} - ${name} (replication_id: ${repl})`,
76-
`${p} data_queries: ${table.data_queries}`,
77-
`${p} parameter_queries: ${table.parameter_queries}`,
76+
`${p} used_for_replication: ${table.data_queries || table.parameter_queries ? 'yes' : 'no'}`,
7877
formatErrors(table.errors, indentLevel + 3)
7978
);
8079
}

0 commit comments

Comments
 (0)