Bump github.com/containers/psgo from 1.4.0 to 1.5.0

Bumps [github.com/containers/psgo](https://github.com/containers/psgo) from 1.4.0 to 1.5.0.
- [Release notes](https://github.com/containers/psgo/releases)
- [Commits](https://github.com/containers/psgo/compare/v1.4.0...v1.5.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
dependabot-preview[bot]
2020-04-17 09:00:46 +00:00
committed by Daniel J Walsh
parent 0d2b5532c4
commit d6d8106601
10 changed files with 47 additions and 27 deletions

View File

@ -192,7 +192,7 @@ func (p *Process) ElapsedTime() (time.Duration, error) {
if err != nil {
return 0, err
}
return (time.Now()).Sub(startTime), nil
return time.Since(startTime), nil
}
// StarTime returns the time.Time when process p was started.