Skip to content

Commit 5f62e5a

Browse files
Update cancellation timeout
1 parent fb276ed commit 5f62e5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/JsonRpc.Testing/JsonRpcTestOptions.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public JsonRpcTestOptions(ILoggerFactory clientLoggerFactory, ILoggerFactory ser
2626
public ILoggerFactory ServerLoggerFactory { get; internal set; } = NullLoggerFactory.Instance;
2727
public TimeSpan WaitTime { get; internal set; } = TimeSpan.FromMilliseconds(50);
2828
public TimeSpan Timeout { get; internal set; } = TimeSpan.FromMilliseconds(500);
29-
public TimeSpan CancellationTimeout { get; internal set; } = TimeSpan.FromMinutes(5);
29+
public TimeSpan CancellationTimeout { get; internal set; } = TimeSpan.FromSeconds(50);
3030
public PipeOptions DefaultPipeOptions { get; internal set; } = new PipeOptions();
3131
public IEnumerable<Assembly> Assemblies { get; set; } = Enumerable.Empty<Assembly>();
3232
}

0 commit comments

Comments
 (0)