We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de856e4 commit 94f4927Copy full SHA for 94f4927
lib/devcycle-ruby-server-sdk/api/client.rb
@@ -353,7 +353,12 @@ def all_variables(user, opts = {})
353
354
if local_bucketing_initialized? && @local_bucketing.has_config
355
bucketed_config = @local_bucketing.generate_bucketed_config(user)
356
- bucketed_config.variables.reject { |key, _| key.start_with?('_feature') }
+ bucketed_config.variables.transform_values do |variable|
357
+ variable.delete(:_feature)
358
+ variable
359
+ end
360
+ bucketed_config.variables
361
+
362
else
363
{}
364
end
0 commit comments