From 4384e78881c82d1766d2fd473e65bb6398626333 Mon Sep 17 00:00:00 2001 From: Ji-hoon Lee Date: Wed, 3 Apr 2019 14:23:07 +0900 Subject: [PATCH] Adjust retry timeout value considering no-panel use case Change-Id: I7b02f2fbf2c88b8db3fba14b703695216941d750 --- src/multi_assistant_service_plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/multi_assistant_service_plugin.c b/src/multi_assistant_service_plugin.c index 0da824a..a78135a 100644 --- a/src/multi_assistant_service_plugin.c +++ b/src/multi_assistant_service_plugin.c @@ -133,7 +133,7 @@ static void __wakeup_event_cb(wakeup_event_info event, void* user_data) while (0 != ret) { ret = masc_ui_dbus_send_hello(); retry_cnt++; - if (30 == retry_cnt) { + if (5 < retry_cnt) { MAS_LOGE("[ERROR] Fail to receive reply for hello, ret(%d)", ret); break; } -- 2.34.1