From 471a694d232b65faa4a757885c4ad55e5f000486 Mon Sep 17 00:00:00 2001 From: Loïc Collignon Date: Fri, 29 Jun 2018 12:03:00 +0200 Subject: Update version of app-controller submodule. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changes of app-controller: (0f3063b - Romain Forlot) Be able to dispatch required api at the wanted time (1ff524b - Romain Forlot) Change LUA package path at LUA interpreter load (738ae54 - Romain Forlot) Don't load two times a plugin even for LUA (c04f029 - Sebastien Douheret) Fixed hidden bound variable (apiHandle) (cfe3919 - Sebastien Douheret) Fixed null value when push Lua arguments (69c0585 - José Bollo) Adjust to compile with incoming bindings v3 (d7e260c - José Bollo) Remove declaration to not existing functions (8ac6625 - Romain Forlot) Add 2 lua utilities function (d3504bb - Jonathan Aillet) Update README.md for new metadata keys. Change-Id: Iee42482b7a6834977497c27fe634cee9a5f96e0c Signed-off-by: Loïc Collignon --- 4a-hal/4a-hal-manager/4a-hal-manager-cb.c | 8 ++------ app-controller | 2 +- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/4a-hal/4a-hal-manager/4a-hal-manager-cb.c b/4a-hal/4a-hal-manager/4a-hal-manager-cb.c index d4d1495..2b4fd67 100644 --- a/4a-hal/4a-hal-manager/4a-hal-manager-cb.c +++ b/4a-hal/4a-hal-manager/4a-hal-manager-cb.c @@ -48,11 +48,7 @@ void HalMgrPing(AFB_ReqT request) count++; - if(request->dynapi) - AFB_ReqNotice(request, "%s (%s): ping count = %d", request->api, request->dynapi->apiname, count); - else - AFB_ReqNotice(request, "%s: ping count = %d", request->api, count); - + AFB_ReqNotice(request, "%s: ping count = %d", request->api, count); AFB_ReqSuccess(request, json_object_new_int(count), NULL); return; @@ -279,4 +275,4 @@ void HalMgrUnsubscribeEvent(AFB_ReqT request) AFB_ReqWarning(request, "%s not implemented yet", __func__); AFB_ReqSuccess(request, json_object_new_boolean(0), NULL); -} \ No newline at end of file +} diff --git a/app-controller b/app-controller index 690bdee..0f3063b 160000 --- a/app-controller +++ b/app-controller @@ -1 +1 @@ -Subproject commit 690bdeee06f414fa149f5a9b62de7b215c3a80cd +Subproject commit 0f3063b70fc10311323fec6d4493a5316e51d439 -- cgit 1.2.3-korg