Fix wrong modification
authorChanggyu Choi <changyu.choi@samsung.com>
Mon, 10 Mar 2025 11:04:05 +0000 (20:04 +0900)
committerChanggyu Choi <changyu.choi@samsung.com>
Mon, 10 Mar 2025 11:04:05 +0000 (20:04 +0900)
Signed-off-by: Changgyu Choi <changyu.choi@samsung.com>
src/action/action_request_handler.cc

index 39beb87d200ee2fcc06a3efac81fb3e446e9fca3..09296bd133b5d7f3e97a4698737c7f307d0dba9b 100644 (file)
@@ -54,7 +54,8 @@ void ActionRequestHandler::OnGetActionId(const std::string& user_description,
                                          int top_k,
                                          float search_threshold) {}
 
-void ActionRequestHandler::OnExecute(common::ActionModel& model) {
+void ActionRequestHandler::OnExecute(const std::string& requester,
+                                     common::ActionModel& model) {
   LOG(DEBUG) << "OnExecute action : " << model.GetActionId()
              << ", appid : " << model.GetAppId();
 
@@ -75,7 +76,7 @@ void ActionRequestHandler::OnExecute(common::ActionModel& model) {
 }
 
 void ActionRequestHandler::OnResult(const std::string& requester,
-    const std::string& result) {
+                                    const std::string& result) {
   LOG(DEBUG) << "OnResult : " << result << ", from : " << requester;
 }