Fix missing operation id in mqtt operation topic

This commit is contained in:
charitha 2019-08-30 10:57:37 +05:30
parent b61f763f82
commit 5c9c0d3ddf

View File

@ -237,6 +237,7 @@ public class OperationManagerImpl implements OperationManager {
}
int operationId = this.lookupOperationDAO(operation).addOperation(operationDto);
operation.setId(operationId);
boolean isScheduled = false;
NotificationStrategy notificationStrategy = getNotificationStrategy();