Skip to content

Commit 053de71

Browse files
committed
add condition group id
1 parent 2dc1ecb commit 053de71

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

starters/async-commons-starter/src/main/java/org/reactivecommons/async/starter/props/GenericAsyncPropsDomain.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,10 @@ public GenericAsyncPropsDomain(String defaultAppName,
4848
if(value.getGroupId() != null){
4949
value.setAppName(groupId);
5050
}
51-
value.setAppName(defaultAppName + "-events");
51+
else {
52+
value.setAppName(defaultAppName + "-events");
53+
}
54+
5255
}
5356
if (value.getConnectionProperties() == null) {
5457
if (defaultProperties == null) {

0 commit comments

Comments
 (0)