Skip to content
Snippets Groups Projects
Commit 3594b008 authored by capossele's avatar capossele
Browse files

:bug: fix shutdown

parent ffa0e49f
No related branches found
No related tags found
No related merge requests found
...@@ -88,8 +88,7 @@ func (n *DRNGNetwork) CreateMember(leader bool) (*Drand, error) { ...@@ -88,8 +88,7 @@ func (n *DRNGNetwork) CreateMember(leader bool) (*Drand, error) {
// Shutdown creates logs and removes network and containers. // Shutdown creates logs and removes network and containers.
// Should always be called when a network is not needed anymore! // Should always be called when a network is not needed anymore!
func (n *DRNGNetwork) Shutdown() error { func (n *DRNGNetwork) Shutdown() error {
defer n.network.Shutdown() // stop drand members
for _, p := range n.members { for _, p := range n.members {
err := p.Stop() err := p.Stop()
if err != nil { if err != nil {
...@@ -117,7 +116,7 @@ func (n *DRNGNetwork) Shutdown() error { ...@@ -117,7 +116,7 @@ func (n *DRNGNetwork) Shutdown() error {
} }
} }
return nil return n.network.Shutdown()
} }
// WaitForDKG waits until all members have concluded the DKG phase. // WaitForDKG waits until all members have concluded the DKG phase.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment