Remove call to View.Destroy() that causes errors to be logged by vCenter (#4684)
This commit is contained in:
parent
9bd14b283f
commit
a84ca7bcdb
|
@ -164,12 +164,10 @@ func (c *Client) close() {
|
||||||
// to close it multiple times.
|
// to close it multiple times.
|
||||||
c.closeGate.Do(func() {
|
c.closeGate.Do(func() {
|
||||||
ctx := context.Background()
|
ctx := context.Background()
|
||||||
if c.Views != nil {
|
|
||||||
c.Views.Destroy(ctx)
|
|
||||||
|
|
||||||
}
|
|
||||||
if c.Client != nil {
|
if c.Client != nil {
|
||||||
c.Client.Logout(ctx)
|
if err := c.Client.Logout(ctx); err != nil {
|
||||||
|
log.Printf("E! [input.vsphere]: Error during logout: %s", err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue