Skip to content

Commit ecb0771

Browse files
committed
configureAwait false
1 parent b746339 commit ecb0771

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

csharp/src/Drivers/Databricks/DatabricksOperationStatusPoller.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public void Dispose()
101101
try
102102
{
103103
if (_operationStatusPollingTask != null)
104-
_operationStatusPollingTask?.GetAwaiter().GetResult();
104+
_operationStatusPollingTask?.ConfigureAwait(false).GetAwaiter().GetResult();
105105
}
106106
catch (OperationCanceledException)
107107
{

0 commit comments

Comments
 (0)