From e58abd916c714bb27db256f6676aaa6227652101 Mon Sep 17 00:00:00 2001 From: Zaiming Shi Date: Mon, 9 Nov 2020 23:27:50 +0100 Subject: [PATCH] fix(rule_engine.hrl): Type spec, args map is keyed by binary --- apps/emqx_rule_engine/include/rule_engine.hrl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/emqx_rule_engine/include/rule_engine.hrl b/apps/emqx_rule_engine/include/rule_engine.hrl index 9d01fefad..39c4daf69 100644 --- a/apps/emqx_rule_engine/include/rule_engine.hrl +++ b/apps/emqx_rule_engine/include/rule_engine.hrl @@ -60,7 +60,7 @@ { id :: action_instance_id() , name :: action_name() , fallbacks :: list(#action_instance{}) - , args :: #{atom() => term()} %% the args got from API for initializing action_instance + , args :: #{binary() => term()} %% the args got from API for initializing action_instance }). -record(rule,