Fix typo
This commit is contained in:
parent
0f9f1258b6
commit
08e234f61e
|
@ -375,7 +375,7 @@ process_publish(Packet = ?PUBLISH_PACKET(_QoS, Topic, PacketId), Channel) ->
|
|||
fun check_pub_caps/2
|
||||
], Packet, Channel) of
|
||||
{ok, NPacket, NChannel} ->
|
||||
Msg = pub_to_msg(NPacket, NChannel),
|
||||
Msg = packet_to_msg(NPacket, NChannel),
|
||||
do_publish(PacketId, Msg, NChannel);
|
||||
{error, ReasonCode, NChannel} ->
|
||||
?LOG(warning, "Cannot publish message to ~s due to ~s",
|
||||
|
@ -383,7 +383,7 @@ process_publish(Packet = ?PUBLISH_PACKET(_QoS, Topic, PacketId), Channel) ->
|
|||
handle_out(disconnect, ReasonCode, NChannel)
|
||||
end.
|
||||
|
||||
pub_to_msg(Packet, #channel{conninfo = #{proto_ver := ProtoVer},
|
||||
packet_to_msg(Packet, #channel{conninfo = #{proto_ver := ProtoVer},
|
||||
clientinfo = ClientInfo =
|
||||
#{mountpoint := MountPoint}}) ->
|
||||
emqx_mountpoint:mount(
|
||||
|
|
Loading…
Reference in New Issue