Commit 86db82170ee24ad2f7b750b2dde8aa5da6a857f8

Authored by YevhenBondarenko
Committed by Andrew Shvayka
1 parent b925149e

changed notifyDevice default value to false

... ... @@ -44,7 +44,7 @@
44 44 "debugMode": false,
45 45 "configuration": {
46 46 "scope": "CLIENT_SCOPE",
47   - "notifyDevice": "true"
  47 + "notifyDevice": "false"
48 48 }
49 49 },
50 50 {
... ...
... ... @@ -32,7 +32,7 @@
32 32 "debugMode": false,
33 33 "configuration": {
34 34 "scope": "CLIENT_SCOPE",
35   - "notifyDevice": "true"
  35 + "notifyDevice": "false"
36 36 }
37 37 },
38 38 {
... ...
... ... @@ -30,7 +30,7 @@ public class TbMsgAttributesNodeConfiguration implements NodeConfiguration<TbMsg
30 30 public TbMsgAttributesNodeConfiguration defaultConfiguration() {
31 31 TbMsgAttributesNodeConfiguration configuration = new TbMsgAttributesNodeConfiguration();
32 32 configuration.setScope(DataConstants.SERVER_SCOPE);
33   - configuration.setNotifyDevice(true);
  33 + configuration.setNotifyDevice(false);
34 34 return configuration;
35 35 }
36 36 }
... ...