Skip to content

Commit

Permalink
some enhance.
Browse files Browse the repository at this point in the history
  • Loading branch information
karsonto committed Mar 21, 2024
1 parent d0b3678 commit 1f8cf13
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class EventMeshMQTTServer extends AbstractRemotingServer {
private final Acl acl;


protected final transient Map<MqttMessageType, MqttProcessor> processorTable =
protected final Map<MqttMessageType, MqttProcessor> processorTable =
new ConcurrentHashMap<>(64);

private final transient AtomicBoolean started = new AtomicBoolean(false);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ public PublishProcessor(EventMeshMQTTServer eventMeshMQTTServer, Executor execut

@Override
public void process(ChannelHandlerContext ctx, MqttMessage mqttMessage) throws MqttException {
//
clientManager.getOrRegisterClient(ctx, mqttMessage);
MqttPublishMessage mqttPublishMessage = (MqttPublishMessage) mqttMessage;
MqttFixedHeader mqttFixedHeaderInfo = mqttPublishMessage.fixedHeader();
Expand Down

0 comments on commit 1f8cf13

Please sign in to comment.