changed notifyDevice default value to false

This commit is contained in:
YevhenBondarenko 2020-09-30 12:17:51 +03:00 committed by Andrew Shvayka
parent b925149e7a
commit 86db82170e
3 changed files with 3 additions and 3 deletions

View File

@ -44,7 +44,7 @@
"debugMode": false, "debugMode": false,
"configuration": { "configuration": {
"scope": "CLIENT_SCOPE", "scope": "CLIENT_SCOPE",
"notifyDevice": "true" "notifyDevice": "false"
} }
}, },
{ {

View File

@ -32,7 +32,7 @@
"debugMode": false, "debugMode": false,
"configuration": { "configuration": {
"scope": "CLIENT_SCOPE", "scope": "CLIENT_SCOPE",
"notifyDevice": "true" "notifyDevice": "false"
} }
}, },
{ {

View File

@ -30,7 +30,7 @@ public class TbMsgAttributesNodeConfiguration implements NodeConfiguration<TbMsg
public TbMsgAttributesNodeConfiguration defaultConfiguration() { public TbMsgAttributesNodeConfiguration defaultConfiguration() {
TbMsgAttributesNodeConfiguration configuration = new TbMsgAttributesNodeConfiguration(); TbMsgAttributesNodeConfiguration configuration = new TbMsgAttributesNodeConfiguration();
configuration.setScope(DataConstants.SERVER_SCOPE); configuration.setScope(DataConstants.SERVER_SCOPE);
configuration.setNotifyDevice(true); configuration.setNotifyDevice(false);
return configuration; return configuration;
} }
} }