Prevent exceptions from being raised by checkpoint
This commit is contained in:
parent
e5b6271e85
commit
1dafc6b82e
|
@ -74,6 +74,8 @@ module Vagrant
|
||||||
if enabled && @checkpoint_thread.nil?
|
if enabled && @checkpoint_thread.nil?
|
||||||
logger.debug("starting plugin check")
|
logger.debug("starting plugin check")
|
||||||
@checkpoint_thread = Thread.new do
|
@checkpoint_thread = Thread.new do
|
||||||
|
Thread.current.abort_on_exception = false
|
||||||
|
Thread.current.report_on_exception = false
|
||||||
begin
|
begin
|
||||||
Thread.current[:result] = Checkpoint.check(
|
Thread.current[:result] = Checkpoint.check(
|
||||||
product: "vagrant",
|
product: "vagrant",
|
||||||
|
|
Loading…
Reference in New Issue