server/session.py
changeset 9023 67f242261dd3
parent 9022 a1cee6915ea3
child 9024 701b19785f1d
equal deleted inserted replaced
9022:a1cee6915ea3 9023:67f242261dd3
   404         self._cnxset = None
   404         self._cnxset = None
   405         #: CnxSetTracker used to report cnxset usage
   405         #: CnxSetTracker used to report cnxset usage
   406         self._cnxset_tracker = session._cnxset_tracker
   406         self._cnxset_tracker = session._cnxset_tracker
   407         #: is this connection from a client or internal to the repo
   407         #: is this connection from a client or internal to the repo
   408         self.running_dbapi_query = True
   408         self.running_dbapi_query = True
       
   409         # internal (root) session
       
   410         self.is_internal_session = session.is_internal_session
   409 
   411 
   410         #: dict containing arbitrary data cleared at the end of the transaction
   412         #: dict containing arbitrary data cleared at the end of the transaction
   411         self.data = {}
   413         self.data = {}
   412         #: ordered list of operations to be processed on commit/rollback
   414         #: ordered list of operations to be processed on commit/rollback
   413         self.pending_operations = []
   415         self.pending_operations = []