Browse Source

Run make fmt on master (#9129)

tags/v1.21.12.1
David Svantesson zeripath 6 years ago
parent
commit
a4e398dc45
1 changed files with 4 additions and 5 deletions
  1. +4
    -5
      modules/graceful/manager_windows.go

+ 4
- 5
modules/graceful/manager_windows.go View File

@@ -28,7 +28,6 @@ const (
acceptHammerCode = svc.Accepted(hammerCode)
)


type gracefulManager struct {
isChild bool
lock *sync.RWMutex
@@ -73,7 +72,7 @@ func (g *gracefulManager) Execute(args []string, changes <-chan svc.ChangeReques
if setting.StartupTimeout > 0 {
status <- svc.Status{State: svc.StartPending}
} else {
status <- svc.Status{State: svc.StartPending, WaitHint: uint32(setting.StartupTimeout/time.Millisecond)}
status <- svc.Status{State: svc.StartPending, WaitHint: uint32(setting.StartupTimeout / time.Millisecond)}
}

// Now need to wait for everything to start...
@@ -100,7 +99,7 @@ loop:
break loop
case hammerCode:
g.doShutdown()
g.doHammerTime(0 *time.Second)
g.doHammerTime(0 * time.Second)
break loop
default:
log.Debug("Unexpected control request: %v", change.Cmd)
@@ -108,8 +107,8 @@ loop:
}

status <- svc.Status{
State: svc.StopPending,
WaitHint: uint32(waitTime/time.Millisecond),
State: svc.StopPending,
WaitHint: uint32(waitTime / time.Millisecond),
}

hammerLoop:


Loading…
Cancel
Save