Skip to content

Commit 5d559dd

Browse files
committed
polishing
1 parent 795329c commit 5d559dd

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

CHANGES.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
CHANGES
22

3+
7.3.1 (Jul 26, 2021)
4+
- Updated the synchronization flow to be more reliable in the event of an edge case generating delay in cache purge propagation, keeping the SDK cache properly synced.
5+
36
7.3.0 (Jul 12, 2021)
47
- Updated SDK telemetry storage, metrics and updater to be more effective and send less often.
58
- Fixed high cpu usage when api key is wrong.

lib/splitclient-rb/engine/synchronizer.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def fetch_splits(target_change_number)
8282
nil,
8383
true)
8484

85-
attempts = @config.on_demand_fetch_max_retries - result[:remaining_attempts]
85+
attempts = ON_DEMAND_FETCH_BACKOFF_MAX_RETRIES - result[:remaining_attempts]
8686

8787
if result[:success]
8888
@segment_fetcher.fetch_segments_if_not_exists(result[:segment_names], true) unless result[:segment_names].empty?

lib/splitclient-rb/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module SplitIoClient
2-
VERSION = '7.3.0'
2+
VERSION = '7.3.1'
33
end

0 commit comments

Comments
 (0)