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.
1 parent 51a0c6f commit 25690d2Copy full SHA for 25690d2
lib/yabeda/http_requests.rb
@@ -10,6 +10,7 @@ module Yabeda
10
module HttpRequests
11
SNIFFER_STORAGE_SIZE = 0
12
13
+ # rubocop: disable Metrics/BlockLength
14
Yabeda.configure do
15
group :http
16
@@ -37,10 +38,11 @@ module HttpRequests
37
38
c.enabled = true
39
c.store = { capacity: SNIFFER_STORAGE_SIZE }
40
c.middleware do |chain|
- chain.remove(Sniffer::Middleware::Logger)
41
+ chain.remove(::Sniffer::Middleware::Logger)
42
chain.add(Yabeda::HttpRequests::Sniffer)
43
end
44
45
46
+ # rubocop: enable Metrics/BlockLength
47
48
lib/yabeda/http_requests/version.rb
@@ -2,6 +2,6 @@
2
3
module Yabeda
4
5
- VERSION = '0.1.1'
+ VERSION = '0.1.2'
6
7
0 commit comments