diff options
Diffstat (limited to '4a-hal/4a-hal-controllers')
-rw-r--r-- | 4a-hal/4a-hal-controllers/4a-hal-controllers-cb.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/4a-hal/4a-hal-controllers/4a-hal-controllers-cb.c b/4a-hal/4a-hal-controllers/4a-hal-controllers-cb.c index 2d0f400..3586eca 100644 --- a/4a-hal/4a-hal-controllers/4a-hal-controllers-cb.c +++ b/4a-hal/4a-hal-controllers/4a-hal-controllers-cb.c @@ -274,11 +274,11 @@ void HalCtlsInitMixer(afb_request *request) else if(json_object_object_get_ex(returnJ, "response", &toReturnJ)) { err = HalCtlsHandleMixerAttachResponse(request, ¤tCtlHalData->ctlHalSpecificData->ctlHalStreamsData, toReturnJ); if(err != (int) MIXER_NO_ERROR) { - afb_request_fail_f(request, - "handler_mixer_response", - "Seems that create call to api %s succeed but this warning was rised by response decoder : %i", - apiToCall, - err); + afb_request_success_f(request, + toReturnJ, + "Seems that create call to api %s succeed but this warning was risen by response decoder : %i", + apiToCall, + err); return; } |