Missed a tiny detail in portalsessionhandler.py

This commit is contained in:
Andrew Bastien 2020-04-12 10:29:51 -07:00
parent 948d14a0fb
commit 58230504c5

View file

@ -33,10 +33,9 @@ DUMMYSESSION = namedtuple("DummySession", ["sessid"])(0)
# ------------------------------------------------------------- # -------------------------------------------------------------
# Portal-SessionHandler class # Portal-SessionHandler class
# ------------------------------------------------------------- # -------------------------------------------------------------
_BASE_HANDLER_CLASS = class_from_module(settings.SERVER_SESSION_HANDLER_CLASS)
class PortalSessionHandler(_BASE_HANDLER_CLASS): class PortalSessionHandler(SessionHandler):
""" """
This object holds the sessions connected to the portal at any time. This object holds the sessions connected to the portal at any time.
It is synced with the server's equivalent SessionHandler over the AMP It is synced with the server's equivalent SessionHandler over the AMP