mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-12-12 10:55:17 +00:00
Merge pull request #1979 from emmanuel-ferdman/main
Fix issue in the GitLab provider
This commit is contained in:
commit
96435a34f8
1 changed files with 1 additions and 1 deletions
|
|
@ -49,7 +49,7 @@ class GitLabProvider(GitProvider):
|
||||||
if auth_method == "oauth_token":
|
if auth_method == "oauth_token":
|
||||||
self.gl = gitlab.Gitlab(
|
self.gl = gitlab.Gitlab(
|
||||||
url=gitlab_url,
|
url=gitlab_url,
|
||||||
oauth_token=gitlab_access_token
|
oauth_token=gitlab_access_token,
|
||||||
ssl_verify=ssl_verify
|
ssl_verify=ssl_verify
|
||||||
)
|
)
|
||||||
else: # private_token
|
else: # private_token
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue