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
9240d355
Commit
9240d355
authored
Aug 23, 2017
by
Ahmad Sherif
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Properly encode Gitaly RawBlame request params
parent
d546f7d3
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lib/gitlab/gitaly_client/commit_service.rb
lib/gitlab/gitaly_client/commit_service.rb
+2
-2
No files found.
lib/gitlab/gitaly_client/commit_service.rb
View file @
9240d355
...
@@ -175,8 +175,8 @@ module Gitlab
...
@@ -175,8 +175,8 @@ module Gitlab
def
raw_blame
(
revision
,
path
)
def
raw_blame
(
revision
,
path
)
request
=
Gitaly
::
RawBlameRequest
.
new
(
request
=
Gitaly
::
RawBlameRequest
.
new
(
repository:
@gitaly_repo
,
repository:
@gitaly_repo
,
revision:
revision
,
revision:
GitalyClient
.
encode
(
revision
)
,
path:
path
path:
GitalyClient
.
encode
(
path
)
)
)
response
=
GitalyClient
.
call
(
@repository
.
storage
,
:commit_service
,
:raw_blame
,
request
)
response
=
GitalyClient
.
call
(
@repository
.
storage
,
:commit_service
,
:raw_blame
,
request
)
...
...
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