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
http://gitlab.example.com/org_name/any-project/any-subproject/merge_requests/1234 This does not work gitlab.exceptions.GitlabGetError: 404: 404 Project Not Found
pr-agent/pr_agent/git_providers/gitlab_provider.py
Line 496 in 7186bf4
It seems that org_name/any-project/any-subproject is being assigned to project_path, but it should actually be any-project/any-subproject.
org_name/any-project/any-subproject
any-project/any-subproject
I believe it would be correct to use:
project_path = "/".join(path_parts[mr_index - 2:mr_index])
What do you think?
Related issue: #135
The text was updated successfully, but these errors were encountered:
No branches or pull requests
http://gitlab.example.com/org_name/any-project/any-subproject/merge_requests/1234
This does not work
gitlab.exceptions.GitlabGetError: 404: 404 Project Not Found
pr-agent/pr_agent/git_providers/gitlab_provider.py
Line 496 in 7186bf4
It seems that
org_name/any-project/any-subproject
is being assigned to project_path, but it should actually beany-project/any-subproject
.I believe it would be correct to use:
What do you think?
Related issue:
#135
The text was updated successfully, but these errors were encountered: