This is an automated email from the ASF dual-hosted git repository.

dubeejw pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk.git


The following commit(s) were added to refs/heads/master by this push:
     new da1b28b  don't explicitly terminate actorSystem (let 
CoordinatedShutdown do it, so cluster exit can be graceful) (#3949)
da1b28b is described below

commit da1b28b5473e03961ca15e91136dd81fc93a3996
Author: tysonnorris <tysonnor...@gmail.com>
AuthorDate: Tue Aug 7 11:04:06 2018 -0700

    don't explicitly terminate actorSystem (let CoordinatedShutdown do it, so 
cluster exit can be graceful) (#3949)
---
 common/scala/src/main/scala/whisk/http/BasicHttpService.scala | 1 -
 1 file changed, 1 deletion(-)

diff --git a/common/scala/src/main/scala/whisk/http/BasicHttpService.scala 
b/common/scala/src/main/scala/whisk/http/BasicHttpService.scala
index fa4c612..38d2e3d 100644
--- a/common/scala/src/main/scala/whisk/http/BasicHttpService.scala
+++ b/common/scala/src/main/scala/whisk/http/BasicHttpService.scala
@@ -188,7 +188,6 @@ object BasicHttpService {
     implicit val executionContext = actorSystem.dispatcher
     sys.addShutdownHook {
       Await.result(binding.map(_.unbind()), 30.seconds)
-      actorSystem.terminate()
       Await.result(actorSystem.whenTerminated, 30.seconds)
     }
   }

Reply via email to