Remove useless return statement

This commit is contained in:
Sean Chittenden 2016-04-28 13:16:17 -07:00
parent 93ba3a0b8a
commit 614104717c

View file

@ -376,7 +376,6 @@ func (c *ConsulBackend) NotifyActiveStateChange() error {
func (c *ConsulBackend) NotifySealedStateChange() error {
select {
case c.notifySealedCh <- notifyEvent{}:
return nil
default:
// NOTE: If this occurs Vault's sealed status could be out of
// sync with Consul until checkTimer expires.