Skip to content

Commit

Permalink
Fix typo, bump 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dsalahutdinov committed Mar 26, 2020
1 parent 51a0c6f commit 25690d2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion lib/yabeda/http_requests.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ module Yabeda
module HttpRequests
SNIFFER_STORAGE_SIZE = 0

# rubocop: disable Metrics/BlockLength
Yabeda.configure do
group :http

Expand Down Expand Up @@ -37,10 +38,11 @@ module HttpRequests
c.enabled = true
c.store = { capacity: SNIFFER_STORAGE_SIZE }
c.middleware do |chain|
chain.remove(Sniffer::Middleware::Logger)
chain.remove(::Sniffer::Middleware::Logger)
chain.add(Yabeda::HttpRequests::Sniffer)
end
end
end
# rubocop: enable Metrics/BlockLength
end
end
2 changes: 1 addition & 1 deletion lib/yabeda/http_requests/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module Yabeda
module HttpRequests
VERSION = '0.1.1'
VERSION = '0.1.2'
end
end

0 comments on commit 25690d2

Please sign in to comment.