Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Publish retained message will be marked as faild when QualityOfServiceLevel greater than AtMostOnce #1428

Closed
cqgis opened this issue Jun 14, 2022 · 1 comment
Labels
bug Something isn't working

Comments

@cqgis
Copy link

cqgis commented Jun 14, 2022

When retained message QualityOfServiceLevel is greater than AtMostOnce , when client connected , send retained message will be mark as faild becusce "Publish packet has no packet identifier"

I think it should set packetIdentifier when retained message published

MqttClient.cs +390

 if (subscribeResult.RetainedMessages != null)
            {
                foreach (var retainedApplicationMessage in subscribeResult.RetainedMessages)
                {
                    var publishPacket = _packetFactories.Publish.Create(retainedApplicationMessage.ApplicationMessage);
                    if (publishPacket.QualityOfServiceLevel > MqttQualityOfServiceLevel.AtMostOnce)
                    {
                        publishPacket.PacketIdentifier = Session.PacketIdentifierProvider.GetNextPacketIdentifier();
                    }
                    Session.EnqueueControlPacket(new MqttPacketBusItem(publishPacket));
                }
            }
@cqgis cqgis added the bug Something isn't working label Jun 14, 2022
@chkr1011
Copy link
Collaborator

Thanks for reporting the issue. Duplicate of #1434.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants