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
9dfb809c
Commit
9dfb809c
authored
Jun 08, 2016
by
Tomasz Maczukin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix UTF-8 handling in incremental trace update API
parent
cfc99bbd
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
app/models/ci/build.rb
app/models/ci/build.rb
+2
-2
No files found.
app/models/ci/build.rb
View file @
9dfb809c
...
...
@@ -194,7 +194,7 @@ module Ci
def
trace_length
if
raw_trace
raw_trace
.
length
raw_trace
.
bytesize
else
0
end
...
...
@@ -216,7 +216,7 @@ module Ci
recreate_trace_dir
File
.
truncate
(
path_to_trace
,
offset
)
if
File
.
exist?
(
path_to_trace
)
File
.
open
(
path_to_trace
,
'a'
)
do
|
f
|
File
.
open
(
path_to_trace
,
'a
b
'
)
do
|
f
|
f
.
write
(
trace_part
)
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