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

Avoid race conditions when installing multiple dependencies from the same git repository. #9658

Open
wants to merge 4 commits into
base: main
Choose a base branch
from

Commits on Aug 30, 2024

  1. executor: avoid race condition for git dependency

    Multiple installs from the same git repository causes arace condition
    when the repository is cloned.
    This commit only allows one operation per repository to be executed by
    the parallel workers.
    Any extra operation will be performed serially.
    Since the git repository is cached after the first operation, this is
    blazingly fast.
    
    Resolves: python-poetry#6958
    gustavgransbo committed Aug 30, 2024
    Configuration menu
    Copy the full SHA
    6edb42f View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2024

  1. Configuration menu
    Copy the full SHA
    74e0b60 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cc08bee View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2024

  1. Execute git operations serially per repository

    Operations for a single repository are grouped and executed serially by
    a single worker.
    gustavgransbo committed Sep 10, 2024
    Configuration menu
    Copy the full SHA
    258ac69 View commit details
    Browse the repository at this point in the history