From 78cdfdf0df3012d30b26ac05f2a68f1fcd848f55 Mon Sep 17 00:00:00 2001 From: JianBo He Date: Fri, 28 May 2021 14:22:00 +0800 Subject: [PATCH] fix(exhook): change default value to CONTINUE --- apps/emqx_exhook/priv/protos/exhook.proto | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/emqx_exhook/priv/protos/exhook.proto b/apps/emqx_exhook/priv/protos/exhook.proto index 612b5151f..72ba26581 100644 --- a/apps/emqx_exhook/priv/protos/exhook.proto +++ b/apps/emqx_exhook/priv/protos/exhook.proto @@ -237,14 +237,14 @@ message EmptySuccess { } message ValuedResponse { // The responsed value type - // - ignore: Ignore the responsed value // - contiune: Use the responsed value and execute the next hook + // - ignore: Ignore the responsed value // - stop_and_return: Use the responsed value and stop the chain executing enum ResponsedType { - IGNORE = 0; + CONTINUE = 0; - CONTINUE = 1; + IGNORE = 1; STOP_AND_RETURN = 2; }