dryruby / rack-throttle

Rack middleware for rate-limiting incoming HTTP requests.

Home Page:http://rubygems.org/gems/rack-throttle

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Missing minute directive in second.rb cache_key

ganeshk-ai opened this issue · comments

In Second#cache_key method, minute directive is missing. This caused some incorrect cache hits when run in same second of same hour.

Current: [super, Time.now.strftime('%Y-%m-%dT%H:%S')].join(':')

Correct: [super, Time.now.strftime('%Y-%m-%dT%H:%M:%S')].join(':')

Just as a heads up, I am working on this!