Skip to content

Commit 11e812e

Browse files
authored
Increase Grpc InteropTests timeout again, and quarantine EmptyUnary (#61433)
* Increase Grpc InteropTests timeout again * Add QuarantinedTest attribute to EmptyUnary test
1 parent 71b7e92 commit 11e812e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: src/Grpc/Interop/test/InteropTests/InteropTests.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace InteropTests;
1111
// Tests are separate methods so that they can be quarantined separately.
1212
public class InteropTests
1313
{
14-
private static readonly TimeSpan DefaultTimeout = TimeSpan.FromSeconds(60);
14+
private static readonly TimeSpan DefaultTimeout = TimeSpan.FromSeconds(100);
1515
private readonly string _clientPath = Path.Combine(Directory.GetCurrentDirectory(), "InteropClient", "InteropClient.dll");
1616
private readonly string _serverPath = Path.Combine(Directory.GetCurrentDirectory(), "InteropWebsite", "InteropWebsite.dll");
1717
private readonly ITestOutputHelper _output;
@@ -22,6 +22,7 @@ public InteropTests(ITestOutputHelper output)
2222
}
2323

2424
[Fact]
25+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/61057")]
2526
public Task EmptyUnary() => InteropTestCase("empty_unary");
2627

2728
[Fact]

0 commit comments

Comments
 (0)