We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdf5897 commit 9b30358Copy full SHA for 9b30358
โgit_repo/services/ext/gitlab.pyโ
@@ -19,10 +19,11 @@ class GitlabService(RepositoryService):
19
fqdn = 'gitlab.com'
20
21
def __init__(self, *args, **kwarg):
22
+ self.gl = gitlab.Gitlab(self.url_ro)
23
super().__init__(*args, **kwarg)
- self.gl = gitlab.Gitlab(self.url_ro, ssl_verify=not self.insecure)
24
25
def connect(self):
26
+ self.gl.ssl_verify = not self.insecure
27
self.gl.set_url(self.url_ro)
28
self.gl.set_token(self._privatekey)
29
self.gl.token_auth()
0 commit comments