diff options
| author | Shinya Maeda <shinya@gitlab.com> | 2018-03-05 22:30:17 +0900 | 
|---|---|---|
| committer | Micaƫl Bergeron <mbergeron@gitlab.com> | 2018-03-22 08:58:29 -0400 | 
| commit | 462b04f5b483c5bfa5518d6e3eff439c7200454f (patch) | |
| tree | 8eb6560e3ec15c49cf5bbd86637c1b89abea3cf2 /lib | |
| parent | 44f37504fb229ab78606a5fd11f75316ebc2667b (diff) | |
| download | gitlab-ce-462b04f5b483c5bfa5518d6e3eff439c7200454f.tar.gz | |
Fix http_io to make it return path is nil
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 d52194f688b..b3fe3ef1c4d 100644 --- a/lib/gitlab/ci/trace/stream.rb +++ b/lib/gitlab/ci/trace/stream.rb @@ -8,7 +8,7 @@ module Gitlab          attr_reader :stream -        delegate :close, :tell, :seek, :size, :path, :truncate, to: :stream, allow_nil: true +        delegate :close, :tell, :seek, :size, :path, :url, :truncate, to: :stream, allow_nil: true          delegate :valid?, to: :stream, as: :present?, allow_nil: true  | 
