Fix endpoint setting 93/240093/1
authorChanggyu Choi <changyu.choi@samsung.com>
Mon, 3 Aug 2020 07:55:15 +0000 (16:55 +0900)
committerChanggyu Choi <changyu.choi@samsung.com>
Mon, 3 Aug 2020 07:55:18 +0000 (16:55 +0900)
Change-Id: Ic2916f073867f146a499d98fa15c6e773c99cf82
Signed-off-by: Changgyu Choi <changyu.choi@samsung.com>
aul/app_manager/app_event.cc

index 7738606..b4d99f8 100644 (file)
@@ -28,7 +28,7 @@ namespace aul {
 
 AppEvent::AppEvent(std::string app_id, AppEvent::IEvent* ev)
   : app_id_(std::move(app_id)), ev_(ev) {
-  std::string endpoint = "app_status_event:" + app_id;
+  std::string endpoint = "app_status_event:" + app_id_;
   if (getuid() >= REGULAR_UID_MIN)
     endpoint += ":" + std::to_string(getuid());