Merge pull request #7096 from JimMoen/fix-stomp-conn_props

Fix stomp conn props
This commit is contained in:
JianBo He 2022-02-22 13:33:35 +08:00 committed by GitHub
commit 3be4f30f8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -21,6 +21,8 @@ File format:
* Fix case where publishing to a non-existent topic alias would crash the connection [#6979]
* Fix HTTP-API 500 error on querying the lwm2m client list on the another node [#7009]
* Fix Server-KeepAlive wrongly applied on MQTT v3.0/v3.1 [#7085]
* Fix Stomp client can not trigger `$event/client_connection` message [#7096]
## v4.3.12
### Important changes

View File

@ -152,7 +152,7 @@ default_conninfo(ConnInfo) ->
clean_start => true,
clientid => undefined,
username => undefined,
conn_props => [],
conn_props => #{},
connected => false,
connected_at => undefined,
keepalive => undefined,
@ -814,4 +814,3 @@ interval(outgoing_timer, #pstate{heart_beats = HrtBt}) ->
emqx_stomp_heartbeat:interval(outgoing, HrtBt);
interval(clean_trans_timer, _) ->
?TRANS_TIMEOUT.