We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4983983 + 247b903 commit bc0a691Copy full SHA for bc0a691
tasks/blacklight.rake
@@ -20,7 +20,7 @@ def system_with_error_handling(*args)
20
end
21
22
23
-def with_solr(&block) # rubocop:disable Style/ArgumentsForwarding
+def with_solr(&block)
24
# We're being invoked by the app entrypoint script and solr is already up via docker-compose
25
if ENV['SOLR_ENV'] == 'docker-compose'
26
yield
@@ -36,7 +36,7 @@ def with_solr(&block) # rubocop:disable Style/ArgumentsForwarding
36
37
else
38
SolrWrapper.wrap do |solr|
39
- solr.with_collection(&block) # rubocop:disable Style/ArgumentsForwarding
+ solr.with_collection(&block)
40
41
42
0 commit comments