QoS : High -> Low
authorJin Yoon <jinny.yoon@samsung.com>
Mon, 28 Aug 2017 23:45:56 +0000 (08:45 +0900)
committerJin Yoon <jinny.yoon@samsung.com>
Mon, 28 Aug 2017 23:46:24 +0000 (08:46 +0900)
Change-Id: I32369f8c7f364d681b622c66e4924f5fadca9542

src/connectivity.c

index 2485850..f5d9fe3 100644 (file)
@@ -217,7 +217,7 @@ int connectivity_notify_bool(connectivity_resource_s *resource_info, const char
        representation = _create_representation_with_bool(resource_info, key, value);
        retv_if(!representation, -1);
 
-       ret = iotcon_resource_notify(resource_info->res, representation, resource_info->observers, IOTCON_QOS_HIGH);
+       ret = iotcon_resource_notify(resource_info->res, representation, resource_info->observers, IOTCON_QOS_LOW);
        if (IOTCON_ERROR_NONE != ret) {
                _I("There are some troubles for notifying value[%d]", ret);
                _print_iotcon_error(ret);
@@ -242,7 +242,7 @@ int connectivity_notify_int(connectivity_resource_s *resource_info, const char *
        representation = _create_representation_with_int(resource_info, key, value);
        retv_if(!representation, -1);
 
-       ret = iotcon_resource_notify(resource_info->res, representation, resource_info->observers, IOTCON_QOS_HIGH);
+       ret = iotcon_resource_notify(resource_info->res, representation, resource_info->observers, IOTCON_QOS_LOW);
        if (IOTCON_ERROR_NONE != ret) {
                _I("There are some troubles for notifying value[%d]", ret);
                _print_iotcon_error(ret);
@@ -267,7 +267,7 @@ int connectivity_notify_double(connectivity_resource_s *resource_info, const cha
        representation = _create_representation_with_double(resource_info, key, value);
        retv_if(!representation, -1);
 
-       ret = iotcon_resource_notify(resource_info->res, representation, resource_info->observers, IOTCON_QOS_HIGH);
+       ret = iotcon_resource_notify(resource_info->res, representation, resource_info->observers, IOTCON_QOS_LOW);
        if (IOTCON_ERROR_NONE != ret) {
                _I("There are some troubles for notifying value[%d]", ret);
                _print_iotcon_error(ret);