fix: Words spelling fix.
This commit is contained in:
parent
bcebe1de24
commit
4e5d781d21
|
@ -64,7 +64,7 @@ listeners.tcp.default {
|
||||||
proxy_protocol = false
|
proxy_protocol = false
|
||||||
|
|
||||||
## Sets the timeout for proxy protocol. EMQ X will close the TCP connection
|
## Sets the timeout for proxy protocol. EMQ X will close the TCP connection
|
||||||
## if no proxy protocol packet recevied within the timeout.
|
## if no proxy protocol packet received within the timeout.
|
||||||
##
|
##
|
||||||
## @doc listeners.tcp.<name>.proxy_protocol_timeout
|
## @doc listeners.tcp.<name>.proxy_protocol_timeout
|
||||||
## ValueType: Duration
|
## ValueType: Duration
|
||||||
|
@ -163,7 +163,7 @@ listeners.ssl.default {
|
||||||
proxy_protocol = false
|
proxy_protocol = false
|
||||||
|
|
||||||
## Sets the timeout for proxy protocol. EMQ X will close the TCP connection
|
## Sets the timeout for proxy protocol. EMQ X will close the TCP connection
|
||||||
## if no proxy protocol packet recevied within the timeout.
|
## if no proxy protocol packet received within the timeout.
|
||||||
##
|
##
|
||||||
## @doc listeners.ssl.<name>.proxy_protocol_timeout
|
## @doc listeners.ssl.<name>.proxy_protocol_timeout
|
||||||
## ValueType: Duration
|
## ValueType: Duration
|
||||||
|
@ -345,7 +345,7 @@ listeners.ws.default {
|
||||||
proxy_protocol = false
|
proxy_protocol = false
|
||||||
|
|
||||||
## Sets the timeout for proxy protocol. EMQ X will close the TCP connection
|
## Sets the timeout for proxy protocol. EMQ X will close the TCP connection
|
||||||
## if no proxy protocol packet recevied within the timeout.
|
## if no proxy protocol packet received within the timeout.
|
||||||
##
|
##
|
||||||
## @doc listeners.ws.<name>.proxy_protocol_timeout
|
## @doc listeners.ws.<name>.proxy_protocol_timeout
|
||||||
## ValueType: Duration
|
## ValueType: Duration
|
||||||
|
@ -448,7 +448,7 @@ listeners.wss.default {
|
||||||
proxy_protocol = false
|
proxy_protocol = false
|
||||||
|
|
||||||
## Sets the timeout for proxy protocol. EMQ X will close the TCP connection
|
## Sets the timeout for proxy protocol. EMQ X will close the TCP connection
|
||||||
## if no proxy protocol packet recevied within the timeout.
|
## if no proxy protocol packet received within the timeout.
|
||||||
##
|
##
|
||||||
## @doc listeners.wss.<name>.proxy_protocol_timeout
|
## @doc listeners.wss.<name>.proxy_protocol_timeout
|
||||||
## ValueType: Duration
|
## ValueType: Duration
|
||||||
|
|
|
@ -835,7 +835,7 @@ inc_incoming_stats(Ctx, FrameMod, Packet) ->
|
||||||
ok
|
ok
|
||||||
end,
|
end,
|
||||||
Name = list_to_atom(
|
Name = list_to_atom(
|
||||||
lists:concat(["packets.", FrameMod:type(Packet), ".recevied"])),
|
lists:concat(["packets.", FrameMod:type(Packet), ".received"])),
|
||||||
emqx_gateway_ctx:metrics_inc(Ctx, Name).
|
emqx_gateway_ctx:metrics_inc(Ctx, Name).
|
||||||
|
|
||||||
inc_outgoing_stats(Ctx, FrameMod, Packet) ->
|
inc_outgoing_stats(Ctx, FrameMod, Packet) ->
|
||||||
|
|
|
@ -994,7 +994,7 @@ t_will_case06(_) ->
|
||||||
|
|
||||||
receive
|
receive
|
||||||
{deliver, WillTopic, #message{payload = WillMsg}} -> ok;
|
{deliver, WillTopic, #message{payload = WillMsg}} -> ok;
|
||||||
Msg -> ct:print("recevived --- unex: ~p", [Msg])
|
Msg -> ct:print("received --- unex: ~p", [Msg])
|
||||||
after
|
after
|
||||||
1000 -> ct:fail(wait_willmsg_timeout)
|
1000 -> ct:fail(wait_willmsg_timeout)
|
||||||
end,
|
end,
|
||||||
|
|
Loading…
Reference in New Issue