Skip to content
Snippets Groups Projects
Commit b07b8a5f authored by Lin Jen-Shin's avatar Lin Jen-Shin
Browse files

Don't seek at all if the log is small anyway

then it's fine to skip the first line because
it won't be very noticeable
parent ef33b7f3
No related branches found
No related tags found
No related merge requests found
Loading
@@ -25,12 +25,10 @@ module Gitlab
Loading
@@ -25,12 +25,10 @@ module Gitlab
end end
   
def limit(last_bytes = LIMIT_SIZE) def limit(last_bytes = LIMIT_SIZE)
stream_size = size if last_bytes < size
if stream_size < last_bytes stream.seek(-last_bytes, IO::SEEK_END)
last_bytes = stream_size stream.readline
end end
stream.seek(-last_bytes, IO::SEEK_END)
stream.readline
end end
   
def append(data, offset) def append(data, offset)
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment