fix: update error msg

This commit is contained in:
zhongwencool 2023-08-14 15:45:57 +08:00
parent 4ee4f59b41
commit 41180170f4
1 changed files with 2 additions and 2 deletions

View File

@ -2617,10 +2617,10 @@ validate_heap_size(_SizStr) ->
{error, invalid_heap_size}. {error, invalid_heap_size}.
validate_packet_size(Siz) when is_integer(Siz) andalso Siz < 1 -> validate_packet_size(Siz) when is_integer(Siz) andalso Siz < 1 ->
{error, #{reason => max_heap_size_too_small, minimum => 1}}; {error, #{reason => max_mqtt_packet_size_too_small, minimum => 1}};
validate_packet_size(Siz) when is_integer(Siz) andalso Siz > ?MAX_INT_MQTT_PACKET_SIZE -> validate_packet_size(Siz) when is_integer(Siz) andalso Siz > ?MAX_INT_MQTT_PACKET_SIZE ->
Max = integer_to_list(round(?MAX_INT_MQTT_PACKET_SIZE / 1024 / 1024)) ++ "M", Max = integer_to_list(round(?MAX_INT_MQTT_PACKET_SIZE / 1024 / 1024)) ++ "M",
{error, #{reason => max_heap_size_too_large, maximum => Max}}; {error, #{reason => max_mqtt_packet_size_too_large, maximum => Max}};
validate_packet_size(Siz) when is_integer(Siz) -> validate_packet_size(Siz) when is_integer(Siz) ->
ok; ok;
validate_packet_size(_SizStr) -> validate_packet_size(_SizStr) ->