Browse Source

[service] recreate Quit channel on reset

don't think that user should do this thing him/herself
pull/1842/head
Anton Kaliaev 8 years ago
parent
commit
7a12594edb
No known key found for this signature in database GPG Key ID: 7B6881D965918214
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      service.go

+ 1
- 0
service.go View File

@ -136,6 +136,7 @@ func (bs *BaseService) Reset() (bool, error) {
// whether or not we've started, we can reset
atomic.CompareAndSwapUint32(&bs.started, 1, 0)
bs.Quit = make(chan struct{})
return true, bs.impl.OnReset()
} else {
if bs.log != nil {


Loading…
Cancel
Save