commands: Init mem profile at the end

Much more useful ...
This commit is contained in:
Bjørn Erik Pedersen 2019-04-23 17:14:02 +02:00
parent 0775c98e6c
commit 4c3c512038
No known key found for this signature in database
GPG key ID: 330E6E2BD4859D8F

View file

@ -431,8 +431,6 @@ func (c *commandeer) initProfiling() (func(), error) {
return nil, err
}
defer c.initMemProfile()
stopMutexProf, err := c.initMutexProfile()
if err != nil {
return nil, err
@ -444,6 +442,8 @@ func (c *commandeer) initProfiling() (func(), error) {
}
return func() {
c.initMemProfile()
if stopCPUProf != nil {
stopCPUProf()
}