Browse Source
Merge pull request #13599 from jekka001/edge-rule-chain-error
[CP-17334] Edge rule chain error
pull/13606/head
Viacheslav Klimov
12 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
application/src/main/java/org/thingsboard/server/service/edge/rpc/processor/BaseEdgeProcessor.java
|
|
@ -219,7 +219,7 @@ public abstract class BaseEdgeProcessor implements EdgeProcessor { |
|
|
case CREDENTIALS_UPDATED: |
|
|
case CREDENTIALS_UPDATED: |
|
|
case ASSIGNED_TO_CUSTOMER: |
|
|
case ASSIGNED_TO_CUSTOMER: |
|
|
case UNASSIGNED_FROM_CUSTOMER: |
|
|
case UNASSIGNED_FROM_CUSTOMER: |
|
|
if (edgeId != null) { |
|
|
if (edgeId != null && !edgeId.equals(originatorEdgeId)) { |
|
|
return saveEdgeEvent(tenantId, edgeId, type, actionType, entityId, body); |
|
|
return saveEdgeEvent(tenantId, edgeId, type, actionType, entityId, body); |
|
|
} else { |
|
|
} else { |
|
|
return processNotificationToRelatedEdges(tenantId, entityId, type, actionType, originatorEdgeId); |
|
|
return processNotificationToRelatedEdges(tenantId, entityId, type, actionType, originatorEdgeId); |
|
|
|