Skip to content

Commit

Permalink
SNOW-902611 bugfixes for open failures
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-mhofman committed Oct 10, 2023
1 parent ba4d241 commit 7e0d05d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Snowflake.Data/Core/Session/SessionPool.cs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ private Task<SFSession> NewSessionAsync(String connectionString, SecureString pa
.OpenAsync(cancellationToken)
.ContinueWith(previousTask =>
{
if (previousTask.IsFaulted && previousTask.Exception != null)
if (previousTask.IsFaulted && previousTask.Exception != null)
throw previousTask.Exception;

if (previousTask.IsFaulted)
Expand Down

0 comments on commit 7e0d05d

Please sign in to comment.