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
fce80abf
Commit
fce80abf
authored
Feb 02, 2018
by
Shinya Maeda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Optimize http io with << method
parent
816cd996
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
ee/lib/gitlab/ci/trace/http_io.rb
ee/lib/gitlab/ci/trace/http_io.rb
+3
-3
No files found.
ee/lib/gitlab/ci/trace/http_io.rb
View file @
fce80abf
...
...
@@ -78,7 +78,7 @@ module Gitlab
data
=
get_chunk
break
if
data
.
empty?
out
+=
data
out
<<
data
@tell
+=
data
.
bytesize
end
...
...
@@ -95,11 +95,11 @@ module Gitlab
new_line
=
data
.
index
(
"
\n
"
)
if
!
new_line
.
nil?
out
+=
data
[
0
..
new_line
]
out
<<
data
[
0
..
new_line
]
@tell
+=
new_line
+
1
break
else
out
+=
data
out
<<
data
@tell
+=
data
.
bytesize
end
end
...
...
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