From dddbecae4e5a81cd0850b5312870038fc0bfe3a6 Mon Sep 17 00:00:00 2001 From: Erik Ramfelt Date: Thu, 28 Jun 2018 09:45:19 +0200 Subject: [PATCH 1/2] Added While exception for UntilResponsive --- src/VcEngineAutomation/VcEngine.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/VcEngineAutomation/VcEngine.cs b/src/VcEngineAutomation/VcEngine.cs index 027da58..f655bad 100644 --- a/src/VcEngineAutomation/VcEngine.cs +++ b/src/VcEngineAutomation/VcEngine.cs @@ -221,7 +221,7 @@ public void WaitWhileBusy(TimeSpan timeout) private bool ShellIsBusy(TimeSpan timeout) { TimeSpan retryInterval = DefaultRetryInternal; - Wait.UntilResponsive(MainWindow, timeout); + Retry.WhileException(() => Wait.UntilResponsive(MainWindow), timeout, retryInterval); if (IsShellBusyAction?.Invoke(this) ?? false) return true; From 0522a29ab35213c0788199a7ba334198216b58b6 Mon Sep 17 00:00:00 2001 From: Erik Ramfelt Date: Thu, 28 Jun 2018 09:50:05 +0200 Subject: [PATCH 2/2] Updated ver --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 145e70a..c6c9236 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ solution: src/VcEngineAutomation.sln env: global: - - PKG_VERSION=0.8.0 + - PKG_VERSION=0.8.1 script: - ./build.sh