From 87b986a239cc9c903dd8d2154ca6925960004ae8 Mon Sep 17 00:00:00 2001 From: Renaud Hartert Date: Wed, 5 Nov 2025 23:16:55 +0100 Subject: [PATCH 1/3] Update README.md Signed-off-by: Renaud Hartert --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index af8a960cb..c6b180ce8 100644 --- a/README.md +++ b/README.md @@ -239,7 +239,7 @@ For example, to turn on debug HTTP headers: ```python from databricks.sdk import WorkspaceClient -w = WorkspaceClient(debug_headers=True) +w = WorkspaceClient(config=Config(debug_headers=True)) # Now call the Databricks workspace APIs as desired... ``` From 53695bc4ff018474e29438b3e1b815f650f3d924 Mon Sep 17 00:00:00 2001 From: Renaud Hartert Date: Wed, 5 Nov 2025 23:21:04 +0100 Subject: [PATCH 2/3] Update README.md Signed-off-by: Renaud Hartert --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c6b180ce8..93c9fdb36 100644 --- a/README.md +++ b/README.md @@ -239,6 +239,7 @@ For example, to turn on debug HTTP headers: ```python from databricks.sdk import WorkspaceClient +from databricks.sdk.core import Config w = WorkspaceClient(config=Config(debug_headers=True)) # Now call the Databricks workspace APIs as desired... ``` From cdcdcf17c48e18fb00ab1e25ab14ad832bf289c9 Mon Sep 17 00:00:00 2001 From: Renaud Hartert Date: Mon, 10 Nov 2025 19:28:27 +0100 Subject: [PATCH 3/3] Update README.md Signed-off-by: Renaud Hartert --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 93c9fdb36..82cb34e78 100644 --- a/README.md +++ b/README.md @@ -235,12 +235,12 @@ For all authentication methods, you can override the default behavior in client | `debug_headers` | _(Boolean)_ `true` to debug HTTP headers of requests made by the application. Default is `false`, as headers contain sensitive data, such as access tokens. | `DATABRICKS_DEBUG_HEADERS` | | `rate_limit` | _(Integer)_ Maximum number of requests per second made to Databricks REST API. | `DATABRICKS_RATE_LIMIT` | -For example, to turn on debug HTTP headers: +For example, here's how you can update the overall retry timeout: ```python from databricks.sdk import WorkspaceClient from databricks.sdk.core import Config -w = WorkspaceClient(config=Config(debug_headers=True)) +w = WorkspaceClient(config=Config(retry_timeout_seconds=300)) # Now call the Databricks workspace APIs as desired... ```