Browse Source

[service] check for error returned by impl

otherwise, we mark it as started when it is not in fact
pull/1842/head
Anton Kaliaev 7 years ago
parent
commit
c46ffe39a8
No known key found for this signature in database GPG Key ID: 7B6881D965918214
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      service.go

+ 5
- 0
service.go View File

@ -94,6 +94,11 @@ func (bs *BaseService) Start() (bool, error) {
}
}
err := bs.impl.OnStart()
if err != nil {
// revert flag
atomic.StoreUint32(&bs.started, 0)
return false, err
}
return true, err
} else {
if bs.log != nil {


Loading…
Cancel
Save