Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
fa04782a
Commit
fa04782a
authored
Aug 13, 2014
by
Jacob Vosmaer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve logging for the JIRA issue closing service
parent
7de26f19
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
CHANGELOG-EE
CHANGELOG-EE
+3
-0
app/models/project_services/jira_service.rb
app/models/project_services/jira_service.rb
+4
-1
No files found.
CHANGELOG-EE
View file @
fa04782a
v 7.2.0
- Better logging for the JIRA issue closing service
v 7.1.0
- 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))
...
...
app/models/project_services/jira_service.rb
View file @
fa04782a
...
...
@@ -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
(
url
,
body:
message
.
to_json
,
body:
json_body
,
headers:
{
'Content-Type'
=>
'application/json'
,
'Authorization'
=>
"Basic
#{
auth
}
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment