Browse Source
Merge pull request #14823 from thingsboard/cfs/relation-events-fix
Fixed typo in relation action events handling for CFs
pull/14835/head
Viacheslav Klimov
6 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/actors/calculatedField/CalculatedFieldManagerMessageProcessor.java
|
|
|
@ -384,7 +384,7 @@ public class CalculatedFieldManagerMessageProcessor extends AbstractContextAware |
|
|
|
EntityId mainId, |
|
|
|
MultipleTbCallback parentCallback, |
|
|
|
TriConsumer<EntityId, CalculatedFieldCtx, TbCallback> relationAction) { |
|
|
|
if (isMyPartition(mainId, parentCallback)) { |
|
|
|
if (!isMyPartition(mainId, parentCallback)) { |
|
|
|
return; |
|
|
|
} |
|
|
|
List<CalculatedFieldCtx> cfsByEntityIdAndProfile = getCalculatedFieldsByEntityIdAndProfile(mainId); |
|
|
|
|