324b3bbaca
We see that in gitlab-org/gitlab-ee#3664 that if we log a lot of data in Sidekiq workers, the number of open file descriptors reaches over 1000. To avoid this, we can memoize the logger per thread via RequestStore. Closes gitlab-org/gitlab-ee#3664
12 lines
263 B
Ruby
12 lines
263 B
Ruby
require 'spec_helper'
|
|
|
|
describe Gitlab::AppLogger, :request_store do
|
|
subject { described_class }
|
|
|
|
it 'builds a logger once' do
|
|
expect(::Logger).to receive(:new).and_call_original
|
|
|
|
subject.info('hello world')
|
|
subject.error('hello again')
|
|
end
|
|
end
|