diff options
author | Phil Hughes <me@iamphill.com> | 2017-04-18 12:27:10 +0000 |
---|---|---|
committer | Lin Jen-Shin <godfat@godfat.org> | 2017-04-19 14:12:23 +0800 |
commit | 435e4090c9f338e9e2ebe6b0ef80a8f34b326f62 (patch) | |
tree | 034315feceff64413459bae4032e097125c5c7e9 /lib | |
parent | 9382980293014bf2e50f86668046d3d741870a7c (diff) | |
download | gitlab-ce-435e4090c9f338e9e2ebe6b0ef80a8f34b326f62.tar.gz |
Merge branch '30696-long-build-log-improvement' into 'master'
Improves support for long build traces:
Closes #30696
See merge request !10660
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/ci/trace/stream.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/ci/trace/stream.rb b/lib/gitlab/ci/trace/stream.rb index 68b14c7c04c..fa462cbe095 100644 --- a/lib/gitlab/ci/trace/stream.rb +++ b/lib/gitlab/ci/trace/stream.rb @@ -4,7 +4,7 @@ module Gitlab # This was inspired from: http://stackoverflow.com/a/10219411/1520132 class Stream BUFFER_SIZE = 4096 - LIMIT_SIZE = 50.kilobytes + LIMIT_SIZE = 500.kilobytes attr_reader :stream |