Added missing break. Reduced log level
This commit is contained in:
parent
97b410c4ac
commit
f9347cda17
@ -288,6 +288,7 @@ public class DefaultEdgeNotificationService implements EdgeNotificationService {
|
||||
}
|
||||
}
|
||||
} while (pageData != null && pageData.hasNext());
|
||||
break;
|
||||
case DELETED:
|
||||
EdgeId edgeId = new EdgeId(new UUID(edgeNotificationMsg.getEdgeIdMSB(), edgeNotificationMsg.getEdgeIdLSB()));
|
||||
saveEdgeEvent(tenantId, edgeId, type, actionType, customerId, null);
|
||||
|
||||
@ -153,7 +153,7 @@ public class EdgeGrpcService extends EdgeRpcServiceGrpc.EdgeRpcServiceImplBase i
|
||||
log.debug("[{}] Updating configuration for edge [{}] [{}]", edge.getTenantId(), edge.getName(), edge.getId());
|
||||
session.onConfigurationUpdate(edge);
|
||||
} else {
|
||||
log.warn("[{}] Session doesn't exist for edge [{}] [{}]", edge.getTenantId(), edge.getName(), edge.getId());
|
||||
log.debug("[{}] Session doesn't exist for edge [{}] [{}]", edge.getTenantId(), edge.getName(), edge.getId());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user