提交 ceb9d85c 编写于 作者: 如梦技术's avatar 如梦技术 🐛

优化服务端消息处理。

上级 fbccedbe
......@@ -331,7 +331,11 @@ public class DefaultMqttServerProcessor implements MqttServerProcessor {
}
}
// 2. 消息发布
messageListener.onMessage(clientId, topicName, mqttQoS, payload);
try {
messageListener.onMessage(clientId, topicName, mqttQoS, payload);
} catch (Throwable e) {
logger.error(e.getMessage(), e);
}
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册