This is an automated email from the ASF dual-hosted git repository.

curth pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git


The following commit(s) were added to refs/heads/main by this push:
     new d5d758314 fix(csharp/src/Drivers/Databricks): increase default retry 
timeout (#2925)
d5d758314 is described below

commit d5d758314220c7c49a64473b0451ddf5aa217ff2
Author: eric-wang-1990 <[email protected]>
AuthorDate: Thu Jun 5 16:22:24 2025 -0700

    fix(csharp/src/Drivers/Databricks): increase default retry timeout (#2925)
    
    Increases the DefaultTemporarilyUnavailableRetryTimeout from 500s to
    900s to match ODBC/JDBC driver behavior
---
 csharp/src/Drivers/Databricks/DatabricksConnection.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/csharp/src/Drivers/Databricks/DatabricksConnection.cs 
b/csharp/src/Drivers/Databricks/DatabricksConnection.cs
index adfc84fbc..2b5a98f74 100644
--- a/csharp/src/Drivers/Databricks/DatabricksConnection.cs
+++ b/csharp/src/Drivers/Databricks/DatabricksConnection.cs
@@ -55,7 +55,7 @@ namespace Apache.Arrow.Adbc.Drivers.Databricks
         private bool _canDecompressLz4 = true;
         private long _maxBytesPerFile = DefaultMaxBytesPerFile;
         private const bool DefaultRetryOnUnavailable= true;
-        private const int DefaultTemporarilyUnavailableRetryTimeout = 500;
+        private const int DefaultTemporarilyUnavailableRetryTimeout = 900;
 
         // Default namespace
         private TNamespace? _defaultNamespace;

Reply via email to