Commit 7b4de75b authored by nmilojevic1's avatar nmilojevic1

Fix Rubocop errors

parent 7120fc47
......@@ -69,7 +69,7 @@ module Gitlab
end
def method_missing(...)
return @instance.send(...) if @instance
return @instance.send(...) if @instance # rubocop:disable GitlabSecurity/PublicSend
log_method_missing(...)
......
......@@ -236,7 +236,7 @@ RSpec.describe Gitlab::Redis::MultiStore do
context 'with both primary and secondary store using same redis instance' do
let(:primary_store) { create_redis_store(redis_store_class.params, db: primary_db, serializer: nil) }
let(:secondary_store) { create_redis_store(redis_store_class.params, db: primary_db , serializer: nil) }
let(:secondary_store) { create_redis_store(redis_store_class.params, db: primary_db, serializer: nil) }
let(:multi_store) { described_class.new(primary_store, secondary_store, instance_name)}
it_behaves_like 'secondary store'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment