Skip to content
Snippets Groups Projects
Unverified Commit 0a1c4e71 authored by Angelo Capossele's avatar Angelo Capossele Committed by GitHub
Browse files

:zap: Speed-up dRNG integration test (#660)

parent 2f164747
No related branches found
No related tags found
No related merge requests found
......@@ -213,8 +213,11 @@ func (d *DockerContainer) Remove() error {
// Stop stops a container without terminating the process.
// The process is blocked until the container stops or the timeout expires.
func (d *DockerContainer) Stop() error {
func (d *DockerContainer) Stop(optionalTimeout ...time.Duration) error {
duration := 3 * time.Minute
if optionalTimeout != nil {
duration = optionalTimeout[0]
}
return d.client.ContainerStop(context.Background(), d.id, &duration)
}
......
......@@ -93,7 +93,7 @@ func (n *DRNGNetwork) CreateMember(leader bool) (*Drand, error) {
func (n *DRNGNetwork) Shutdown() error {
// stop drand members
for _, p := range n.members {
err := p.Stop()
err := p.Stop(5 * time.Second)
if err != nil {
return err
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment