From 1305ce6b5d1db6f2f0e34cd5a81ec5e38ff1a0f1 Mon Sep 17 00:00:00 2001 From: Zoltan David Date: Tue, 15 Oct 2019 15:15:30 +0200 Subject: [PATCH] adds list of supported methods to the base_url section --- docs/sdk-reference/python.md | 6 ++++++ docs/sdk-reference/ruby.md | 6 ++++++ 2 files changed, 12 insertions(+) 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.