We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bc8cc6 commit 94abb4aCopy full SHA for 94abb4a
1 file changed
src/Testcontainers/Clients/DockerContainerOperations.cs
@@ -88,7 +88,7 @@ public Task StartAsync(string id, CancellationToken ct = default)
88
public Task StopAsync(string id, CancellationToken ct = default)
89
{
90
Logger.StopDockerContainer(id);
91
- return DockerClient.Containers.StopContainerAsync(id, new ContainerStopParameters { WaitBeforeKillSeconds = 15 }, ct);
+ return DockerClient.Containers.StopContainerAsync(id, new ContainerStopParameters(), ct);
92
}
93
94
public Task PauseAsync(string id, CancellationToken ct = default)
0 commit comments