Set default messageType to NORMAL

This commit is contained in:
Abhijeet Mishra
2023-05-04 12:20:30 +05:30
parent 602d97b28a
commit e3f0ec86a5
2 changed files with 2 additions and 2 deletions

View File

@@ -99,7 +99,7 @@ public class TopicConfigInfo {
}
public void setMessageType(TopicConfig topicConfig) {
this.messageType = topicConfig.getAttributes().getOrDefault("message.type", "");
this.messageType = topicConfig.getAttributes().getOrDefault("message.type", "NORMAL");
}
@Override

View File

@@ -333,7 +333,7 @@ module.controller('topicController', ['$scope', 'ngDialog', '$http', 'Notificati
perm: 6,
order: false,
topicName: "",
messageType: "",
messageType: "NORMAL",
brokerNameList: []
}];
bIsUpdate = false;