Enfore re-authentication if cookie != next_cookie

@@ -990,7 +991,8 @@ class X2GoBroker(object):
 
         # check if cookie sent was our preset cookie from config file
         next_cookie = self.get_my_cookie()
-        access = (cookie == next_cookie )
+
+        access = (cookie == next_cookie) --> if False --> https_auth again
         logger_broker.debug('base_broker.X2GoBroker.check_access(): checking if our configured cookie was submitted: {access}'.format(access=access))
 
         # the require cookie but not password case falls through to returning value of access