X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=src%2Fapp-framework-binder.git;a=blobdiff_plain;f=src%2Fafb-supervision.c;h=0515234fa80572bbb301829010a69739eaf6c132;hp=df045806bc91f633affd0dcd291f8c5ee24dc9b6;hb=74a7ebbea3d36158aabbda85d2aeb5a1b3a9daa9;hpb=7386e1c5090b4e76036bc212f2a2cf32920bb160 diff --git a/src/afb-supervision.c b/src/afb-supervision.c index df045806..0515234f 100644 --- a/src/afb-supervision.c +++ b/src/afb-supervision.c @@ -47,6 +47,7 @@ #include "afb-stub-ws.h" #include "afb-debug.h" #include "afb-fdev.h" +#include "afb-error-text.h" #include "verbose.h" #include "wrap-json.h" #include "jobs.h" @@ -340,11 +341,11 @@ static void on_supervision_call(void *closure, struct afb_xreq *xreq) if (wrap_json_unpack(args, "s", &uuid)) wrap_json_unpack(args, "{ss}", "uuid", &uuid); if (!uuid) - afb_xreq_reply(xreq, NULL, "invalid", NULL); + afb_xreq_reply(xreq, NULL, afb_error_text_invalid_request, NULL); else { session = afb_session_search(uuid); if (!session) - afb_xreq_reply(xreq, NULL, "not-found", NULL); + afb_xreq_reply(xreq, NULL, afb_error_text_unknown_session, NULL); else { afb_session_close(session); afb_session_unref(session); @@ -381,13 +382,13 @@ static void on_supervision_call(void *closure, struct afb_xreq *xreq) } afb_req_success(req, NULL, NULL); #else - afb_req_reply(req, NULL, "not-available", NULL); + afb_req_reply(req, NULL, afb_error_text_not_available, NULL); #endif break; case Do: sub = NULL; if (wrap_json_unpack(args, "{ss ss s?o*}", "api", &api, "verb", &verb, "args", &sub)) - afb_xreq_reply(xreq, NULL, "error", "bad request"); + afb_xreq_reply(xreq, NULL, afb_error_text_invalid_request, NULL); else { xapi = afb_apiset_lookup_started(global.apiset, api, 1); if (!xapi)