Commit 8f429bee0d7d9956b33bd0724840955e6ff367bd
Merge remote-tracking branch 'origin/develop/2.6-edge' into develop/3.3-edge
Showing
1 changed file
with
1 additions
and
1 deletions
... | ... | @@ -198,7 +198,7 @@ public class DefaultEdgeNotificationService implements EdgeNotificationService { |
198 | 198 | private void processEdge(TenantId tenantId, TransportProtos.EdgeNotificationMsgProto edgeNotificationMsg) { |
199 | 199 | try { |
200 | 200 | EdgeEventActionType actionType = EdgeEventActionType.valueOf(edgeNotificationMsg.getAction()); |
201 | - EdgeId edgeId = new EdgeId(new UUID(edgeNotificationMsg.getEdgeIdMSB(), edgeNotificationMsg.getEdgeIdLSB())); | |
201 | + EdgeId edgeId = new EdgeId(new UUID(edgeNotificationMsg.getEntityIdMSB(), edgeNotificationMsg.getEntityIdLSB())); | |
202 | 202 | ListenableFuture<Edge> edgeFuture; |
203 | 203 | switch (actionType) { |
204 | 204 | case ASSIGNED_TO_CUSTOMER: | ... | ... |