v1.1.6
This commit is contained in:
parent
64e360814c
commit
8aff752cfb
|
@ -1,3 +1,10 @@
|
||||||
|
## 1.1.6 (April 3, 2013)
|
||||||
|
|
||||||
|
BUG FIXES:
|
||||||
|
|
||||||
|
- Fix SSH re-use connection logic to drop connection if an
|
||||||
|
error occurs.
|
||||||
|
|
||||||
## 1.1.5 (April 2, 2013)
|
## 1.1.5 (April 2, 2013)
|
||||||
|
|
||||||
IMPROVEMENTS:
|
IMPROVEMENTS:
|
||||||
|
|
|
@ -2,5 +2,5 @@ module Vagrant
|
||||||
# This will always be up to date with the current version of Vagrant,
|
# This will always be up to date with the current version of Vagrant,
|
||||||
# since it is used to generate the gemspec and is also the source of
|
# since it is used to generate the gemspec and is also the source of
|
||||||
# the version for `vagrant -v`
|
# the version for `vagrant -v`
|
||||||
VERSION = "1.1.5"
|
VERSION = "1.1.6"
|
||||||
end
|
end
|
||||||
|
|
|
@ -129,7 +129,7 @@ module VagrantPlugins
|
||||||
rescue Exception => e
|
rescue Exception => e
|
||||||
@logger.info("Connection errored, not re-using. Will reconnect.")
|
@logger.info("Connection errored, not re-using. Will reconnect.")
|
||||||
@logger.debug(e.inspect)
|
@logger.debug(e.inspect)
|
||||||
@conncetion = nil
|
@connection = nil
|
||||||
end
|
end
|
||||||
|
|
||||||
# If the @connection is still around, then it is valid,
|
# If the @connection is still around, then it is valid,
|
||||||
|
|
Loading…
Reference in New Issue