Skip to content

Commit

Permalink
0004749: Value too long for column node_password
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Jan 8, 2021
1 parent f169b97 commit 32476be
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Expand Up @@ -352,7 +352,7 @@ private boolean isFileSyncEnabled(Table table, CsvData data) {

private boolean isTransformFlushNeeded(Table table) {
return matchesTable(table, TableConstants.SYM_TRANSFORM_COLUMN)
|| matchesTable(table, TableConstants.SYM_TRANSFORM_TABLE);
|| matchesTable(table, TableConstants.SYM_TRANSFORM_TABLE) || matchesTable(table, TableConstants.SYM_NODE_GROUP_LINK);
}

private boolean isExtensionFlushNeeded(Table table) {
Expand Down
Expand Up @@ -710,6 +710,8 @@ public void contextCommitted(SimpleRouterContext routingContext) {
log.info("About to refresh the cache of node group link because new configuration came through the data router");
engine.getConfigurationService().clearCache();
engine.getNodeService().flushNodeGroupCache();
log.info("About to refresh the cache of transformation because new configuration came through the data router");
engine.getTransformService().clearCache();
}

if (routingContext.get(CTX_KEY_FILE_SYNC_TRIGGERS_NEEDED) != null
Expand Down

0 comments on commit 32476be

Please sign in to comment.