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

Use ordered data structure to keep track of queue processes #7

Commits on Jan 3, 2022

  1. Fix potential sync bugs with processes being joined out of order

    * A dictionary is unordered, this could cause issues when joining processes since this operation needs to be done in order
    
    * Using a tuple is the best option here, since it is immutable and the structure is simple enough
    Wason1797 committed Jan 3, 2022
    Configuration menu
    Copy the full SHA
    2c01c6a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a4ea774 View commit details
    Browse the repository at this point in the history