fix: mqtt bridge payload default value

This commit is contained in:
JimMoen 2022-09-13 18:29:32 +08:00
parent 2c7d518c19
commit b5bf5d3adb
2 changed files with 3 additions and 2 deletions

View File

@ -13,6 +13,7 @@
* Fix that redis authn will deny the unknown users [#8934](https://github.com/emqx/emqx/pull/8934) * Fix that redis authn will deny the unknown users [#8934](https://github.com/emqx/emqx/pull/8934)
* Fix ExProto UDP client keepalive checking error. * Fix ExProto UDP client keepalive checking error.
This causes the clients to not expire as long as a new UDP packet arrives [#8866](https://github.com/emqx/emqx/pull/8866) This causes the clients to not expire as long as a new UDP packet arrives [#8866](https://github.com/emqx/emqx/pull/8866)
* Fix that MQTT Bridge message payload could be empty string. [#8949](https://github.com/emqx/emqx/pull/8949)
## Enhancements ## Enhancements

View File

@ -177,7 +177,7 @@ fields("ingress") ->
sc( sc(
binary(), binary(),
#{ #{
default => <<"${payload}">>, default => undefined,
desc => ?DESC("payload") desc => ?DESC("payload")
} }
)} )}
@ -224,7 +224,7 @@ fields("egress") ->
sc( sc(
binary(), binary(),
#{ #{
default => <<"${payload}">>, default => undefined,
desc => ?DESC("payload") desc => ?DESC("payload")
} }
)} )}