Skip to content

Commit

Permalink
0005654: sym_node_host trigger should capture changes even if
Browse files Browse the repository at this point in the history
auto.sync.configuration is set to false
  • Loading branch information
Philip Marzullo committed Jan 11, 2023
1 parent 97af317 commit e1b446d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,8 @@ protected List<Trigger> buildTriggersForSymmetricTables(String version,
protected Trigger buildTriggerForSymmetricTable(String tableName) {
boolean syncChanges = !TableConstants.getTablesThatDoNotSync(tablePrefix).contains(
tableName)
&& parameterService.is(ParameterConstants.AUTO_SYNC_CONFIGURATION);
&& (parameterService.is(ParameterConstants.AUTO_SYNC_CONFIGURATION)
|| TableConstants.getTableName(tablePrefix, TableConstants.SYM_NODE_HOST).equals(tableName));
// boolean syncOnIncoming = !configurationService.isMasterToMaster() && (parameterService.is(
// ParameterConstants.AUTO_SYNC_CONFIGURATION_ON_INCOMING, true)
// || tableName.equals(TableConstants.getTableName(tablePrefix,
Expand Down

0 comments on commit e1b446d

Please sign in to comment.