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

subscribing qos is 0, but receive retained msg qos is 2 #1560

Closed
airfo11 opened this issue Nov 4, 2022 · 1 comment · Fixed by #1564
Closed

subscribing qos is 0, but receive retained msg qos is 2 #1560

airfo11 opened this issue Nov 4, 2022 · 1 comment · Fixed by #1564
Labels
bug Something isn't working

Comments

@airfo11
Copy link

airfo11 commented Nov 4, 2022

Describe the bug

My mqtt Server has some reatined message with qos 2.
The server return retained message with qos 2 after client subscribe with qos 0.

Which component is your bug related to?

  • Server (MQTTnet 4.1.2.350)

To Reproduce

  1. Publish some msg with qos is 2 and retained.
  2. Subscribe with qos is 0

Expected behavior

Receive retained msg with the qos as the same with subscription.

Code example

I use 3.1.2 is fine, but it get fault when i upgrade to 4.x.

I found 3.1.2 code bellow, it will overwrite before publishing retained msg.

//MQTTnet 3.1.2
async Task<MqttPublishPacket> CreatePublishPacket(MqttQueuedApplicationMessage queuedApplicationMessage)
{
    var publishPacket = _channelAdapter.PacketFormatterAdapter.DataConverter.CreatePublishPacket(queuedApplicationMessage.ApplicationMessage);
    //Use the qos of subscription
    publishPacket.QualityOfServiceLevel = queuedApplicationMessage.SubscriptionQualityOfServiceLevel;

    //...(ignored)

    return publishPacket;

Thank you.

@airfo11 airfo11 added the bug Something isn't working label Nov 4, 2022
@chkr1011
Copy link
Collaborator

chkr1011 commented Nov 6, 2022

This will be released in version 4.1.3.x.

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

Successfully merging a pull request may close this issue.

2 participants