Commit 3d469188 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge branch 'jira_service_logging' into 'master'

Improve logging for the JIRA issue closing service

See merge request !144
parents 7de26f19 fa04782a
v 7.2.0
- Better logging for the JIRA issue closing service
v 7.1.0 v 7.1.0
- Synchronize LDAP-enabled GitLab administrators with an LDAP group (Marvin Frick, sponsored by SinnerSchrader) - Synchronize LDAP-enabled GitLab administrators with an LDAP group (Marvin Frick, sponsored by SinnerSchrader)
- Synchronize SSH keys with LDAP (Oleg Girko (Jolla) and Marvin Frick (SinnerSchrader)) - Synchronize SSH keys with LDAP (Oleg Girko (Jolla) and Marvin Frick (SinnerSchrader))
......
...@@ -74,9 +74,12 @@ class JiraService < Service ...@@ -74,9 +74,12 @@ class JiraService < Service
} }
} }
json_body = message.to_json
Rails.logger.info("#{self.class.name}: sending POST with body #{json_body} to #{url}")
JiraService.post( JiraService.post(
url, url,
body: message.to_json, body: json_body,
headers: { headers: {
'Content-Type' => 'application/json', 'Content-Type' => 'application/json',
'Authorization' => "Basic #{auth}" 'Authorization' => "Basic #{auth}"
......
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