diff --git a/application/src/main/java/org/thingsboard/server/controller/EntityViewController.java b/application/src/main/java/org/thingsboard/server/controller/EntityViewController.java
index 69e28db..9b7ffd2 100644
--- a/application/src/main/java/org/thingsboard/server/controller/EntityViewController.java
+++ b/application/src/main/java/org/thingsboard/server/controller/EntityViewController.java
@@ -140,12 +140,6 @@ public class EntityViewController extends BaseController {
} catch (ThingsboardException e) {
log.error("Failed to log attribute updates", e);
}
- if (entityId.getEntityType() == EntityType.ENTITY_VIEW) {
- DeviceId deviceId = new DeviceId(entityId.getId());
- DeviceAttributesEventNotificationMsg notificationMsg = DeviceAttributesEventNotificationMsg.onUpdate(
- user.getTenantId(), deviceId, scope, attributes);
- actorService.onMsg(new SendToClusterMsg(deviceId, notificationMsg));
- }
}
@Override