We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 23ae711 + 02428ee commit bb37dc7Copy full SHA for bb37dc7
libmachine/drivers/rpc/client_driver.go
@@ -213,10 +213,11 @@ func (c *RPCClientDriver) close() error {
213
log.Debug("Making call to close driver server")
214
215
if err := c.Client.Call(CloseMethod, struct{}{}, nil); err != nil {
216
- return err
+ log.Debugf("Failed to make call to close driver server: %s", err)
217
+ } else {
218
+ log.Debug("Successfully made call to close driver server")
219
}
220
- log.Debug("Successfully made call to close driver server")
221
log.Debug("Making call to close connection to plugin binary")
222
223
return c.plugin.Close()
0 commit comments