Skip to content

Commit

Permalink
fix(connection): remove timeout from connection tasks (#957)
Browse files Browse the repository at this point in the history
closes #952
  • Loading branch information
kblok authored Oct 20, 2020
1 parent 53998f4 commit 7927c3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PlaywrightSharp/Transport/Connection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ await _queue.Enqueue(() =>
return _transport.SendAsync(messageString);
}).ConfigureAwait(false);

var result = await tcs.Task.WithTimeout(Playwright.DefaultTimeout).ConfigureAwait(false);
var result = await tcs.Task.ConfigureAwait(false);

if (typeof(T) == typeof(JsonElement?))
{
Expand Down

0 comments on commit 7927c3b

Please sign in to comment.