server/session.py
changeset 9493 852f5ac90cd9
parent 9482 5b97e69f9c29
child 9495 0ae4e6d7ce2f
--- a/server/session.py	Mon Feb 03 19:00:52 2014 +0100
+++ b/server/session.py	Thu Jan 30 16:33:32 2014 +0100
@@ -450,9 +450,9 @@
         #: connection unique id
         self._open = None
         if cnxid is None:
-            cnxid = '%s-%s' % (session.id, uuid4().hex)
+            cnxid = '%s-%s' % (session.sessionid, uuid4().hex)
         self.connectionid = cnxid
-        self.sessionid = session.id
+        self.sessionid = session.sessionid
         #: self._session_handled
         #: are the life cycle of this Connection automatically controlled by the
         #: Session This is the old backward compatibility mode
@@ -1365,7 +1365,7 @@
 
     def __unicode__(self):
         return '<session %s (%s 0x%x)>' % (
-            unicode(self.user.login), self.id, id(self))
+            unicode(self.user.login), self.sessionid, id(self))
     @property
     def timestamp(self):
         return float(self._timestamp)