-
Notifications
You must be signed in to change notification settings - Fork 105
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
Infinite Loop when Git Permission Denied #38
Comments
|
We are also seeing this same issue, but we get no error message.
I think I've found the issue in the git driver. This code assumes that an error will be returned OR a write will occurr. If neither of those two things happens, the loop is never broken. Lines 93 to 107 in 0cb9fc0
When calling Lines 339 to 349 in 0cb9fc0
I think this is incorrect, we should probably return an error for each of the three cases above. |
This is what our plan looks like;
In our case the failure is occurring in the |
We are seeing the same behavior as well: Concourse Version: 4.2.1 Config: - name: version
type: semver
source:
driver: git
uri: ((versions_repo))
branch: master
file: ((version_path))
private_key: ((private_key))
- name: release-patch
plan:
- aggregate:
- get: snapshot
passed: [deploy]
- get: version
params:
bump: patch
- get: pipeline-repo
- get: release-repo
- put: release
params:
file: updated-snapshot/*
version_file: version/version
- put: version
params: { file: version/version } Log:
|
gonna close this in favor of #89 which is admittedly a dupe of this report, but has a PR associated to it |
https://media.giphy.com/media/fExunDejohBMQ/giphy.gif
The text was updated successfully, but these errors were encountered: