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

Fix race in creating calls #2662

Merged
merged 3 commits into from
Sep 13, 2022
Merged

Fix race in creating calls #2662

merged 3 commits into from
Sep 13, 2022

Commits on Sep 12, 2022

  1. Fix race in creating calls

    We ran an async function between checking for an existing call and
    adding the new one to the map, so it would have been possible to
    start creating another call while we were placing the first call.
    This changes the code to add the call to the map as soon as we've
    created it.
    
    Also adds more logging.
    dbkr committed Sep 12, 2022
    Configuration menu
    Copy the full SHA
    390b495 View commit details
    Browse the repository at this point in the history
  2. Switch to logger.debug

    dbkr committed Sep 12, 2022
    Configuration menu
    Copy the full SHA
    96800bd View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2022

  1. Fix unit tests

    dbkr committed Sep 13, 2022
    Configuration menu
    Copy the full SHA
    ad09149 View commit details
    Browse the repository at this point in the history