We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If 2 or more sources use the same repo then there is an error thrown when cloning:
[Mosaic] Source Error: Command 'git clone <repo url> --no-checkout --origin=origin' failed: 128. fatal: destination path '<repo project-name>' already exists and is not an empty directory.
Basically, this is a timing issue at heart.
We have logic that checks for a previous clone but it does not work across sources. A git source is only aware of what it has done.
Schedule the sources to start with different delays. Delayed sources won't attempt a clone and will re-use the earlier cloned repo.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If 2 or more sources use the same repo then there is an error thrown when cloning:
Basically, this is a timing issue at heart.
We have logic that checks for a previous clone but it does not work across sources. A git source is only aware of what it has done.
Workaround
Schedule the sources to start with different delays. Delayed sources won't attempt a clone and will re-use the earlier cloned repo.
The text was updated successfully, but these errors were encountered: