Commit 3bab3b79 by huangfu

以修改的为主

parent 9c50baf6
...@@ -81,12 +81,11 @@ public class WorkflowCommonParameterAggregation implements InstanceRunTheLifeCyc ...@@ -81,12 +81,11 @@ public class WorkflowCommonParameterAggregation implements InstanceRunTheLifeCyc
Map<String, String> thisRedisKeyMap = JSON.parseObject(flowExtendedConfiguration.getPublicParam(), Map.class); Map<String, String> thisRedisKeyMap = JSON.parseObject(flowExtendedConfiguration.getPublicParam(), Map.class);
if (CollectionUtil.isNotEmpty(thisRedisKeyMap)) { if (CollectionUtil.isNotEmpty(thisRedisKeyMap)) {
thisRedisKeyMap.forEach((key, value) -> { thisRedisKeyMap.forEach((key, value) -> {
if (key.endsWith("*")) {
publicParam.put(key.replace("*", ""),value);
}
if (!publicParam.containsKey(key)) { if (!publicParam.containsKey(key)) {
publicParam.put(key, value); publicParam.put(key, value);
}else{
if (key.endsWith("*")) {
publicParam.put(key.replace("*", ""),value);
}
} }
}); });
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment