Change APP_COM_LEAVE request to async 20/288920/1
authorChanggyu Choi <changyu.choi@samsung.com>
Fri, 24 Feb 2023 12:13:41 +0000 (21:13 +0900)
committerChanggyu Choi <changyu.choi@samsung.com>
Fri, 24 Feb 2023 12:13:41 +0000 (21:13 +0900)
Change-Id: Ide3fa434d17c9f24e16c7ad6d7444752857c8ba0
Signed-off-by: Changgyu Choi <changyu.choi@samsung.com>
src/app_com.cc

index 307534b..2ca2f95 100644 (file)
@@ -358,7 +358,7 @@ extern "C" API int aul_app_com_leave(aul_app_com_connection_h connection) {
         tizen_base::Bundle b { { AUL_K_COM_ENDPOINT, endpoint } };
         int ret = AppRequest(APP_COM_LEAVE, getuid())
             .With(std::move(b))
-            .SendSimply();
+            .SendSimply(AUL_SOCK_NOREPLY);
         if (ret != 0)
           _E("Failed to send leave request. error(%d)", ret);