Commit d02e129a authored by Nick Huanca's avatar Nick Huanca Committed by Dmitriy Zaporozhets

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.
parent f1d8efb7
...@@ -37,7 +37,7 @@ class GitlabCiService < Service ...@@ -37,7 +37,7 @@ class GitlabCiService < Service
end end
def commit_status sha 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"] if response.code == 200 and response["status"]
response["status"] response["status"]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment