Commit 468c21e
committed
fix(gitlab): add missing ssl_verify parameter for private_token auth
When using private_token authentication (GITLAB.AUTH_TYPE = 'private_token'),
the ssl_verify setting was not being passed to the GitLab client constructor.
This caused SSL certificate verification to remain enabled even when
ssl_verify was explicitly set to false in the configuration, breaking
connections to self-hosted GitLab instances with self-signed certificates.
The oauth_token authentication path correctly includes ssl_verify, but the
private_token path was missing it. This commit adds the missing parameter
to ensure consistent behavior for both authentication methods.1 parent e9e7b22 commit 468c21e
1 file changed
+2
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
57 | 57 | | |
58 | 58 | | |
59 | 59 | | |
60 | | - | |
| 60 | + | |
| 61 | + | |
61 | 62 | | |
62 | 63 | | |
63 | 64 | | |
| |||
0 commit comments