You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ConfigCat.logger.warn('create_client_with_auto_poll is deprecated. Create the ConfigCat Client as a Singleton object with `configcatclient.get()` instead')
ConfigCat.logger.warn('create_client_with_lazy_load is deprecated. Create the ConfigCat Client as a Singleton object with `configcatclient.get()` instead')
138
-
client=ConfigCatClient.get(sdk_key,options)
139
-
returnclient
140
-
end
141
-
142
-
# Create an instance of ConfigCatClient and setup Manual Poll mode with custom options
143
-
#
144
-
# :param sdk_key: ConfigCat SDK Key to access your configuration.
145
-
# :param config_cache: If you want to use custom caching instead of the client's default,
146
-
# You can provide an implementation of ConfigCache.
147
-
# :param base_url: You can set a base_url if you want to use a proxy server between your application and ConfigCat
148
-
# :param proxy_address: Proxy address
149
-
# :param proxy_port: Proxy port
150
-
# :param proxy_user: username for proxy authentication
151
-
# :param proxy_pass: password for proxy authentication
152
-
# :param open_timeout_seconds: The number of seconds to wait for the server to make the initial connection. Default: 10 seconds.
153
-
# :param read_timeout_seconds: The number of seconds to wait for the server to respond before giving up. Default: 30 seconds.
154
-
# :param flag_overrides: A FlagOverrides implementation used to override feature flags & settings.
155
-
# :param data_governance:
156
-
# Default: Global. Set this parameter to be in sync with the Data Governance preference on the Dashboard:
ConfigCat.logger.warn('create_client_with_manual_poll is deprecated. Create the ConfigCat Client as a Singleton object with `configcatclient.get()` instead')
ConfigCat.logger.warn("get_variation_id is deprecated and will be removed in a future major version. " \
157
-
"Please use [get_value_details] instead.")
158
-
159
-
settings,fetch_time=_get_settings()
160
-
ifsettings === nil
161
-
message="Config JSON is not present when evaluating setting '#{key}'. Returning the `default_variation_id` parameter that you specified in your application: '#{default_variation_id}'."
0 commit comments