ff-ruby-server-sdk 1.0.4 → 1.0.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b96f2c46067899e6d26411471722640dab5b9fc27d3325c938bd06ae81e12972
4
- data.tar.gz: 8323abe069396213c89144542e301c7865422dec5298be018e80e39a02d0a907
3
+ metadata.gz: fcebe5eaa757a9376616a1a1db63c1a829f435b113ad140d228cb5ee18b54ffe
4
+ data.tar.gz: 17698d0edbc9c2a4d6bfd93f599d1f3acb844b45c88083c272d6f9d2542e00b9
5
5
  SHA512:
6
- metadata.gz: d3395923af630e74a29f094e5d61275dd43bf7885a76f1c952d15b9671c2e279609a982969b443b921c0dd2e8bb5eaaae428277f96713e1e7a4dd20cdf1d6fc2
7
- data.tar.gz: 2c6ce8e325afe95845a8f978b3c39f6c8dc82c49f23d0c1941fbac0653620e20e6e5001db280b36eb2ad0ca94fadd477573b004a554bd22795a07bdf11cf000f
6
+ metadata.gz: 84e5149958d5d0c15ae08644eb8803b49b4d31299abdd8c054e804e830e2c6b93c18f9701403017b87a7bbf2e2582c49777ba71edc01de2d6a7bdac9abf959ed
7
+ data.tar.gz: e8d093a568bee30b277774d6b3173ba30bd757033b265686356ee6490c0e57f8046826e3fe9e56f8673439e1eb2e4ce979197384976e0a45c1866aebf7c39d7b
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # [1.0.5]
2
+
3
+ - [FFM-6362] - Ruby FF SDK is not waiting initialization when using "wait_for_initialization" method
4
+
1
5
  # [1.0.4]
2
6
 
3
7
  - [FFM-5478] Fixes bug caching some flags due to encoding
@@ -21,7 +21,10 @@ logger.info "Harness Ruby SDK Getting Started"
21
21
  client = CfClient.instance
22
22
 
23
23
  client.init(apiKey, ConfigBuilder.new.logger(logger).build)
24
+
25
+ logger.info "----- initialization started ----- "
24
26
  client.wait_for_initialization
27
+ logger.info "----- initialization done ----- "
25
28
 
26
29
  # Create a target (different targets can get different results based on rules. This include a custom attribute 'location')
27
30
  target = Target.new("RubySDK", identifier="rubysdk", attributes={"location": "emea"})
@@ -223,6 +223,8 @@ class InnerClient < ClientCallback
223
223
  return
224
224
  end
225
225
 
226
+ @config.logger.info "All processors now ready"
227
+
226
228
  @initialized = true
227
229
 
228
230
  # TODO: notify - Reactivity support
@@ -262,7 +264,8 @@ class InnerClient < ClientCallback
262
264
  @repository = StorageRepository.new(@config.cache, @repository_callback, @config.store, @config.logger)
263
265
 
264
266
  @metrics_callback = InnerClientMetricsCallback.new(self, @config.logger)
265
- @metrics_processor = MetricsProcessor.new(@connector, @config, @metrics_callback)
267
+ @metrics_processor = MetricsProcessor.new
268
+ @metrics_processor.init(@connector, @config, @metrics_callback)
266
269
 
267
270
  @evaluator = Evaluator.new(@repository, logger = @config.logger)
268
271
  @evaluator_callback = InnerClientFlagEvaluateCallback.new(@metrics_processor, logger = @config.logger)
@@ -275,8 +278,8 @@ class InnerClient < ClientCallback
275
278
  logger = @config.logger
276
279
  )
277
280
 
278
- @poll_processor = PollingProcessor.new(
279
-
281
+ @poll_processor = PollingProcessor.new
282
+ @poll_processor.init(
280
283
  connector = @connector,
281
284
  repository = @repository,
282
285
  poll_interval_in_sec = @config.poll_interval_in_seconds,
@@ -291,7 +294,8 @@ class InnerClient < ClientCallback
291
294
  logger = @config.logger
292
295
  )
293
296
 
294
- @update_processor = UpdateProcessor.new(
297
+ @update_processor = UpdateProcessor.new
298
+ @update_processor.init(
295
299
 
296
300
  connector = @connector,
297
301
  repository = @repository,
@@ -9,7 +9,7 @@ require_relative "../api/summary_metrics"
9
9
 
10
10
  class MetricsProcessor < Closeable
11
11
 
12
- def initialize(
12
+ def init(
13
13
 
14
14
  connector,
15
15
  config,
@@ -2,7 +2,7 @@ require_relative "../common/closeable"
2
2
 
3
3
  class PollingProcessor < Closeable
4
4
 
5
- def initialize(
5
+ def init(
6
6
 
7
7
  connector,
8
8
  repository,
@@ -4,7 +4,7 @@ require_relative "../common/closeable"
4
4
 
5
5
  class UpdateProcessor < Closeable
6
6
 
7
- def initialize(
7
+ def init(
8
8
 
9
9
  connector,
10
10
  repository,
@@ -5,7 +5,7 @@ module Ff
5
5
  module Server
6
6
  module Sdk
7
7
 
8
- VERSION = "1.0.4"
8
+ VERSION = "1.0.5"
9
9
  end
10
10
  end
11
11
  end
data/scripts/sdk_specs.sh CHANGED
@@ -1,4 +1,4 @@
1
1
  #!/bin/bash
2
2
 
3
3
  export ff_ruby_sdk="ff-ruby-server-sdk"
4
- export ff_ruby_sdk_version="1.0.4"
4
+ export ff_ruby_sdk_version="1.0.5"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ff-ruby-server-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - 'Miloš Vasić, cyr.: Милош Васић'
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-11-28 00:00:00.000000000 Z
11
+ date: 2023-01-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake