Timer not started if user session is logged in

In startDeadline(), If user session is logged in then we simply return
without starting the timer. This fix fixes that issue.

Tested:
  Loaded code change on system and verified timeout now works.

Change-Id: Ia4359b6dffb3015eb20a2a9d0ff2e5e6dab3500d
Signed-off-by: Ninad Palsule <ninadpalsule@us.ibm.com>
diff --git a/http/http_connection.hpp b/http/http_connection.hpp
index c98c454..b2096d4 100644
--- a/http/http_connection.hpp
+++ b/http/http_connection.hpp
@@ -578,7 +578,6 @@
         if (loggedIn)
         {
             timeout = std::chrono::seconds(60);
-            return;
         }
 
         std::weak_ptr<Connection<Adaptor, Handler>> weakSelf = weak_from_this();