Git Product home page Git Product logo

Comments (7)

peterhinch avatar peterhinch commented on August 19, 2024

Thank you. The self._init bound variable is evidently cruft from an earlier iteration where the first received message would otherwise have been lost.

Deleting the variable and all references to it works, and should fix the problem.

from micropython-iot.

kevinkk525 avatar kevinkk525 commented on August 19, 2024

Think so too.

from micropython-iot.

kevinkk525 avatar kevinkk525 commented on August 19, 2024

I was wrong closing this so early. It does not fix the whole problem.

                if not mid:
                    isnew(-1)  # Clear down rx message record
                # _init : client has restarted. mid == 0 server power up
                if not mid or isnew(mid):

This means, that if the client receives a message with mid==0, the bytearray will get reset, so the duplicate message with mid==0 will reset it again and the library will never recognize a duplicate message with id==0.
So the fix could be to initialize isnew(-1) at the start of the _reader and make the server reset it too on reconnect.

from micropython-iot.

kevinkk525 avatar kevinkk525 commented on August 19, 2024

Also the line
if not mid or isnew(mid):
would need to be changed to
if isnew(mid):
so that the mid 0 will get added to the bytearray.

from micropython-iot.

peterhinch avatar peterhinch commented on August 19, 2024

I'm not sure that will fix it. The first message would have been sent before the outage. .reader() would then be canceled and restarted. It would fail to recognise the dupe.

I think after an outage we need to do the following, in ._run(). If the last received mid was zero we don't need to clear the generator as that must be its only contents. Otherwise we clear it down.

My brain hurts. I'll look at this in the morning :) What do you think?

from micropython-iot.

kevinkk525 avatar kevinkk525 commented on August 19, 2024

Mine hurts now too. Will think about it again tomorrow. Forgot that the first message after an outage is already a dupe and possibly more than one message after an outage so only storing the last mid wouldn't solve it.

from micropython-iot.

peterhinch avatar peterhinch commented on August 19, 2024

I think I've figured it out. Will post a fix for your review.

from micropython-iot.

Related Issues (13)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.