Tightens the timeout on a "safety" Await.
diff --git a/core/dispatcher/src/main/scala/whisk/core/container/WhiskContainer.scala b/core/dispatcher/src/main/scala/whisk/core/container/WhiskContainer.scala
index 27912c9..50dde63 100644
--- a/core/dispatcher/src/main/scala/whisk/core/container/WhiskContainer.scala
+++ b/core/dispatcher/src/main/scala/whisk/core/container/WhiskContainer.scala
@@ -135,7 +135,7 @@
 
         // Should never timeout because the future has a built-in timeout.
         // Keeping a finite duration for safety.
-        Await.ready(f, timeout * 10)
+        Await.ready(f, timeout + 1.minute)
 
         val end = ContainerCounter.now()