For not shutdown triggered...

This commit is contained in:
Jeff Mitchell 2016-03-11 17:01:26 -05:00
parent d75ce9de9b
commit 9ce1be3b00
1 changed files with 1 additions and 4 deletions

View File

@ -344,7 +344,7 @@ func (c *ServerCommand) Run(args []string) int {
// Wait for shutdown
shutdownTriggered := false
for {
for !shutdownTriggered {
select {
case <-c.ShutdownCh:
c.Ui.Output("==> Vault shutdown triggered")
@ -358,9 +358,6 @@ func (c *ServerCommand) Run(args []string) int {
c.Ui.Error(fmt.Sprintf("Error(s) were encountered during reload: %s", err))
}
}
if shutdownTriggered {
break
}
}
return 0
}