Skip to content

Commit 18f462e

Browse files
authored
prepare 5.5.1 release (#121)
1 parent d4a63bd commit 18f462e

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

lib/ldclient-rb/integrations/consul.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def self.default_prefix
2525
# @option opts [String] :url shortcut for setting the `url` property of the Consul client configuration
2626
# @option opts [String] :prefix namespace prefix to add to all keys used by LaunchDarkly
2727
# @option opts [Logger] :logger a `Logger` instance; defaults to `Config.default_logger`
28-
# @option opts [Integer] :expiration_seconds (15) expiration time for the in-memory cache, in seconds; 0 for no local caching
28+
# @option opts [Integer] :expiration (15) expiration time for the in-memory cache, in seconds; 0 for no local caching
2929
# @option opts [Integer] :capacity (1000) maximum number of items in the cache
3030
# @return [LaunchDarkly::Interfaces::FeatureStore] a feature store object
3131
#

lib/ldclient-rb/integrations/dynamodb.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ module DynamoDB
3434
# @option opts [Object] :existing_client an already-constructed DynamoDB client for the feature store to use
3535
# @option opts [String] :prefix namespace prefix to add to all keys used by LaunchDarkly
3636
# @option opts [Logger] :logger a `Logger` instance; defaults to `Config.default_logger`
37-
# @option opts [Integer] :expiration_seconds (15) expiration time for the in-memory cache, in seconds; 0 for no local caching
37+
# @option opts [Integer] :expiration (15) expiration time for the in-memory cache, in seconds; 0 for no local caching
3838
# @option opts [Integer] :capacity (1000) maximum number of items in the cache
3939
# @return [LaunchDarkly::Interfaces::FeatureStore] a feature store object
4040
#

lib/ldclient-rb/integrations/redis.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def self.default_prefix
4242
# @option opts [String] :prefix (default_prefix) namespace prefix to add to all hash keys used by LaunchDarkly
4343
# @option opts [Logger] :logger a `Logger` instance; defaults to `Config.default_logger`
4444
# @option opts [Integer] :max_connections size of the Redis connection pool
45-
# @option opts [Integer] :expiration_seconds (15) expiration time for the in-memory cache, in seconds; 0 for no local caching
45+
# @option opts [Integer] :expiration (15) expiration time for the in-memory cache, in seconds; 0 for no local caching
4646
# @option opts [Integer] :capacity (1000) maximum number of items in the cache
4747
# @option opts [Object] :pool custom connection pool, if desired
4848
# @return [LaunchDarkly::Interfaces::FeatureStore] a feature store object

lib/ldclient-rb/integrations/util/store_wrapper.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class CachingStoreWrapper
2323
#
2424
# @param core [Object] an object that implements the {FeatureStoreCore} methods
2525
# @param opts [Hash] a hash that may include cache-related options; all others will be ignored
26-
# @option opts [Float] :expiration_seconds (15) cache TTL; zero means no caching
26+
# @option opts [Float] :expiration (15) cache TTL; zero means no caching
2727
# @option opts [Integer] :capacity (1000) maximum number of items in the cache
2828
#
2929
def initialize(core, opts)

lib/ldclient-rb/redis_store.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class RedisFeatureStore
3232
# @option opts [String] :prefix namespace prefix to add to all hash keys used by LaunchDarkly
3333
# @option opts [Logger] :logger a `Logger` instance; defaults to `Config.default_logger`
3434
# @option opts [Integer] :max_connections size of the Redis connection pool
35-
# @option opts [Integer] :expiration_seconds expiration time for the in-memory cache, in seconds; 0 for no local caching
35+
# @option opts [Integer] :expiration expiration time for the in-memory cache, in seconds; 0 for no local caching
3636
# @option opts [Integer] :capacity maximum number of feature flags (or related objects) to cache locally
3737
# @option opts [Object] :pool custom connection pool, if desired
3838
#

0 commit comments

Comments
 (0)