rookout 0.1.46 → 0.1.47

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b59aefa8a8063910a6a7ec3446c7f709a9781468e786993f2b7ae84b47c284cc
4
- data.tar.gz: 91fc89ae75510ab8a81de5da86a3619c2f17d6a2920aa72d9f718436ac1b7056
3
+ metadata.gz: 9d494bb4243258775f4a13936da2eb7da62b67e420480d7f2996adc58f88e4ef
4
+ data.tar.gz: 3952626f68706316502bb672dc194e4b8d2b1c6924a5ce170accfaecb9eb7bdd
5
5
  SHA512:
6
- metadata.gz: 0b9a998c2f766b42e115e103e92883807c813d9bdb583d6f9eaf148ead19de00d8fd71dae6a98a88dcfdbcd028634ff5de865410911b7ffcae92ff84bf224c20
7
- data.tar.gz: b5ee7cf8ff1af74a6718d5abfd5d87e56ca7a521d470449abab7d07c525e32fa5f979e7b97553340dfd5a2b35618573ec10f4c2855cfc7ed24ccf5d2495abd07
6
+ metadata.gz: 7615d7f6acb9d2d10154b5c617d02c87fb3a64a31f0f751c0bd7ccb7abe27466cb2c3ef967daa19aea312f4b15f87054f5132a48028cc5786b88817c8aabe96f
7
+ data.tar.gz: e6b619c886f621ba0b3bf9e4965f61cad35a2111cf2b9946798b83931905c693da9ad9ecfbd20e166d14a145fb9760457dc6a6c0f216c82b6f5ea554152ad8d4
@@ -67,7 +67,7 @@ module Rookout
67
67
  def create_limits_manager configuration
68
68
  limiters = []
69
69
  if global_rate_limiter.nil?
70
- rate_limit = parse_rate_limit configuration["rateLimit"], configuration["rateLimitModifier"], 200, 5000, 1
70
+ rate_limit = parse_rate_limit configuration["rateLimit"], configuration["rateLimitModifier"], 200, 5000
71
71
  unless rate_limit.nil?
72
72
  limiters.append AugRateLimiter.new(*rate_limit)
73
73
  end
@@ -82,7 +82,7 @@ module Rookout
82
82
  if @global_rate_limiter.nil? && Rookout::Config.global_rate_limit != ""
83
83
  begin
84
84
  rate_limit = parse_rate_limit Rookout::Config.global_rate_limit,
85
- "0", 0, 0, Rookout::Config.global_rate_limit_multiplier
85
+ "0", 0, 0
86
86
  if rate_limit.nil?
87
87
  raise Exceptions::RookInvalidRateLimitConfiguration, Rookout::Config.global_rate_limit
88
88
  end
@@ -101,7 +101,7 @@ module Rookout
101
101
  @global_rate_limiter
102
102
  end
103
103
 
104
- def parse_rate_limit config, modifier_config, default_quota, default_window, multiplier
104
+ def parse_rate_limit config, modifier_config, default_quota, default_window
105
105
  window_quota = default_quota
106
106
  window_size = default_window
107
107
 
@@ -129,7 +129,7 @@ module Rookout
129
129
  raise Exceptions::RookInvalidRateLimitConfiguration, config
130
130
  end
131
131
 
132
- [window_quota_ns * multiplier, window_size_ns, rate_limit_modifier]
132
+ [window_quota_ns, window_size_ns, rate_limit_modifier]
133
133
  end
134
134
  end
135
135
  end
@@ -1,3 +1,3 @@
1
1
  module Rookout
2
- COMMIT = "ec556ada7fc1b5196406db4ed39b386974440d91".freeze
2
+ COMMIT = "ffd029791f99225ff5592825141566831f73c4df".freeze
3
3
  end
@@ -81,13 +81,11 @@ module Rookout
81
81
  attr_accessor :global_rate_limit_quota
82
82
  attr_accessor :global_rate_limit_window_size
83
83
  attr_accessor :global_rate_limit
84
- attr_accessor :global_rate_limit_multiplier
85
84
  attr_accessor :using_global_rate_limiter
86
85
 
87
86
  Rookout::Config.global_rate_limit_quota = ""
88
87
  Rookout::Config.global_rate_limit_window_size = ""
89
88
  Rookout::Config.global_rate_limit = ""
90
- Rookout::Config.global_rate_limit_multiplier = 1
91
89
  Rookout::Config.using_global_rate_limiter = false
92
90
 
93
91
  def update_config configuration
@@ -1,3 +1,3 @@
1
1
  module Rookout
2
- VERSION = "0.1.46".freeze
2
+ VERSION = "0.1.47".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rookout
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.46
4
+ version: 0.1.47
5
5
  platform: ruby
6
6
  authors:
7
7
  - Liran Haimovitch
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-10-18 00:00:00.000000000 Z
11
+ date: 2022-10-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: binding_of_caller