Missed a tiny detail in portalsessionhandler.py
This commit is contained in:
parent
948d14a0fb
commit
58230504c5
1 changed files with 1 additions and 2 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue