added verify false on gitlab_ci integrations
For those of us running self-signed in gitlab-ci it generates 500s SSL_verify errors if you don't have this.
This commit is contained in:
parent
f1d8efb770
commit
d02e129a54
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ class GitlabCiService < Service
|
|||
end
|
||||
|
||||
def commit_status sha
|
||||
response = HTTParty.get(commit_status_path(sha))
|
||||
response = HTTParty.get(commit_status_path(sha), verify: false)
|
||||
|
||||
if response.code == 200 and response["status"]
|
||||
response["status"]
|
||||
|
|
Loading…
Reference in a new issue