Description
The ExecuteAndWait function uses a hard-coded 20 minute timeout:
|
// TODO: parse request.WaitTimeout and use it here |
|
return retries.Poll[StatementResponse](ctx, 20*time.Minute, |
This causes any ExecuteAndWait call to take up to 20 minutes to execute. No examples or documentation indicates that this is the case.
Description
The
ExecuteAndWaitfunction uses a hard-coded 20 minute timeout:databricks-sdk-go/service/sql/ext_utilities.go
Lines 32 to 33 in b3e8369
This causes any
ExecuteAndWaitcall to take up to 20 minutes to execute. No examples or documentation indicates that this is the case.