From: Jin Yoon Date: Mon, 28 Aug 2017 23:45:56 +0000 (+0900) Subject: QoS : High -> Low X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e00090ffb54002804f9babb9e92277eeacd50d64;p=apps%2Fnative%2Fposition-finder-server.git QoS : High -> Low Change-Id: I32369f8c7f364d681b622c66e4924f5fadca9542 --- diff --git a/src/connectivity.c b/src/connectivity.c index 2485850..f5d9fe3 100644 --- a/src/connectivity.c +++ b/src/connectivity.c @@ -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);