* MDF [conf] Fix default max_packet_size

The maximum packet size that MQTT protocol spec allows is 256 MB.
The current default value does not make sense, and breaks compatibility
with various MQTT client libraries, such as Eclipse Paho.
This commit is contained in:
Arnie97 2025-03-21 21:37:58 +08:00 committed by Jaylin
parent 6658785670
commit cea114c0a4

View File

@ -6,7 +6,7 @@
mqtt {
property_size = 32
max_packet_size = 260MB
max_packet_size = 256MB
max_mqueue_len = 2048
retry_interval = 10s
keepalive_multiplier = 1.25