diff --git a/docs/sdk-reference/python.md b/docs/sdk-reference/python.md index 4371db0d..4c9ea31a 100644 --- a/docs/sdk-reference/python.md +++ b/docs/sdk-reference/python.md @@ -90,6 +90,12 @@ configcatclient.create_client_with_auto_poll( "#YOUR-API-KEY#", base_url="https://myCDN.configcat.com"); ``` +The following methods support tha `base_url` parameter: + +- `configcatclient.create_client_with_auto_poll()` +- `configcatclient.create_client_with_manual_poll()` +- `configcatclient.create_client_with_lazy_load()` + ## Polling Modes The *ConfigCat SDK* supports 3 different polling mechanisms to acquire the setting values from *ConfigCat*. After latest setting values are downloaded, they are stored in the internal cache then all requests are served from there. With the following polling modes, you can customize the SDK to best fit to your application's lifecycle. diff --git a/docs/sdk-reference/ruby.md b/docs/sdk-reference/ruby.md index 78ef1880..ff544667 100644 --- a/docs/sdk-reference/ruby.md +++ b/docs/sdk-reference/ruby.md @@ -91,6 +91,12 @@ ConfigCat.create_client_with_auto_poll( "#YOUR-API-KEY#", base_url: "https://myCDN.configcat.com"); ``` +The following methods support tha `base_url` parameter: + +- `ConfigCat.create_client_with_auto_poll()` +- `ConfigCat.create_client_with_manual_poll()` +- `ConfigCat.create_client_with_lazy_load()` + ## Polling Modes The *ConfigCat SDK* supports 3 different polling mechanisms to acquire the setting values from *ConfigCat*. After latest setting values are downloaded, they are stored in the internal cache then all requests are served from there. With the following polling modes, you can customize the SDK to best fit to your application's lifecycle.