You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Avoid panic on multiple closer.Signal calls (#1401)
The closer.Signal function closes a channel and multiple calls to the
closing the same channel would cause a "channel already closed". This PR
avoids the panic by using a sync.Once while closing the channel.
Multiple calls to closer.Signal would be no-op with this commit.
Fixes DGRAPH-1581
0 commit comments