Commit 97b410c4ac921b4abd2d06367810c546ee45573d
1 parent
0e7af5a6
Fixed assign edge to customer test
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: | ... | ... |