amplitude-experiment 1.0.0.beta.10 → 1.0.0.beta.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/experiment/local/client.rb +1 -1
- data/lib/experiment/local/config.rb +2 -2
- data/lib/experiment/local/poller.rb +2 -2
- data/lib/experiment/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c4ba4f5f08e2f00936b54e27ea8c3fdcc5b751b2d0f6bd7f91c8597fecdad0e1
|
4
|
+
data.tar.gz: 53c70aac85b3931c148ef89765f02fbfbd9b54b43556772e1d01e6ea825efd7c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7d2c1a19145295220f8c1f13052a4e2895599bea8041677928456da280f10159bd821181bced3a8c9ccd5f8196b915a1e878d1fb1dacaf4f64374cb292140a17
|
7
|
+
data.tar.gz: a738154c1d73845df4c1addc15442458dce828b4e8cc39e4356ebbd62a4f3726b3753f3a0a155f3fb0829dc8e5674c88e275dc8576759b568a3116e31d00a368
|
@@ -20,7 +20,7 @@ module AmplitudeExperiment
|
|
20
20
|
Logger::INFO
|
21
21
|
end
|
22
22
|
@fetcher = LocalEvaluationFetcher.new(api_key, @config.debug, @config.server_url)
|
23
|
-
@poller = FlagConfigPoller.new(@fetcher, @cache, @config.debug)
|
23
|
+
@poller = FlagConfigPoller.new(@fetcher, @cache, @config.debug, @config.flag_config_polling_interval_millis)
|
24
24
|
|
25
25
|
raise ArgumentError, 'Experiment API key is empty' if @api_key.nil? || @api_key.empty?
|
26
26
|
end
|
@@ -24,8 +24,8 @@ module AmplitudeExperiment
|
|
24
24
|
# @param [String] server_url The server endpoint from which to request variants.
|
25
25
|
# @param [Hash] bootstrap The value of bootstrap.
|
26
26
|
# @param [long] flag_config_polling_interval_millis The value of flag config polling interval in million seconds.
|
27
|
-
def initialize(server_url
|
28
|
-
flag_config_polling_interval_millis
|
27
|
+
def initialize(server_url: DEFAULT_SERVER_URL, bootstrap: {},
|
28
|
+
flag_config_polling_interval_millis: 30_000, debug: false)
|
29
29
|
@debug = debug || false
|
30
30
|
@server_url = server_url
|
31
31
|
@bootstrap = bootstrap
|
@@ -4,7 +4,7 @@ module AmplitudeExperiment
|
|
4
4
|
class FlagConfigPoller
|
5
5
|
FLAG_CONFIG_POLLING_INTERVAL_MILLIS = 30_000
|
6
6
|
|
7
|
-
def initialize(fetcher, cache, debug, poll_interval_millis
|
7
|
+
def initialize(fetcher, cache, debug, poll_interval_millis = FLAG_CONFIG_POLLING_INTERVAL_MILLIS)
|
8
8
|
@fetcher = fetcher
|
9
9
|
@cache = cache
|
10
10
|
@poll_interval_millis = poll_interval_millis
|
@@ -40,7 +40,7 @@ module AmplitudeExperiment
|
|
40
40
|
@cache.clear
|
41
41
|
@cache.put_all(flag_configs)
|
42
42
|
@poller_thread = Thread.new do
|
43
|
-
sleep
|
43
|
+
sleep(@poll_interval_millis / 1000.to_f)
|
44
44
|
run
|
45
45
|
end
|
46
46
|
end
|
data/lib/experiment/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: amplitude-experiment
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.beta.
|
4
|
+
version: 1.0.0.beta.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amplitude
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-09-
|
11
|
+
date: 2022-09-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|