Browse Source
Merge pull request #13204 from volodymyr-babak/edge-slow-down-sys-tenant-notification-processing
BaseEdgeProcessor - Fixed incorrect return
pull/13205/head
Andrew Shvayka
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
0 additions and
1 deletions
-
application/src/main/java/org/thingsboard/server/service/edge/rpc/processor/BaseEdgeProcessor.java
|
|
|
@ -163,7 +163,6 @@ public abstract class BaseEdgeProcessor implements EdgeProcessor { |
|
|
|
for (Edge edge : edges) { |
|
|
|
futures.add(saveEdgeEvent(edge.getTenantId(), edge.getId(), type, actionType, entityId, body, false)); |
|
|
|
} |
|
|
|
return Futures.immediateFuture(null); |
|
|
|
} else { |
|
|
|
futures = processActionForAllEdgesByTenantId(tenantId, type, actionType, entityId, null, sourceEdgeId); |
|
|
|
} |
|
|
|
|