Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing ruby process hanging at destroy due to long post time #506

Merged
merged 3 commits into from
Dec 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
CHANGES

Next release (TBD)
- Fixed ruby process hanging due to failed thread.join command, when calling destroy and a http request still active.

8.3.0 (Dec 11, 2023)
- Added support for Flag Sets on the SDK, which enables grouping feature flags and interacting with the group rather than individually (more details in our documentation):
- Added new variations of the get treatment methods to support evaluating flags in given flag set/s.
Expand Down
2 changes: 1 addition & 1 deletion lib/splitclient-rb/exceptions.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module SplitIoClient
class SplitIoError < StandardError; end

class SDKShutdownException < SplitIoError; end
class SDKShutdownException < Exception; end

class SDKBlockerTimeoutExpiredException < SplitIoError; end

Expand Down