From 0847a87636d877ff3f3d8b58284d4b89273a70c1 Mon Sep 17 00:00:00 2001 From: Jin Yoon Date: Tue, 29 Aug 2017 08:45:56 +0900 Subject: [PATCH] QoS : High -> Low Change-Id: I32369f8c7f364d681b622c66e4924f5fadca9542 --- src/connectivity.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/connectivity.c b/src/connectivity.c index ce5d2da..a017aa1 100644 --- a/src/connectivity.c +++ b/src/connectivity.c @@ -216,7 +216,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); @@ -241,7 +241,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); @@ -266,7 +266,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); -- 2.7.4