server/session.py
branchstable
changeset 5210 1c635a91e403
parent 5193 c9671feff5e2
child 5201 2b4267157f85
child 5226 2e215efcc3a6
equal deleted inserted replaced
5209:52c9d25101a1 5210:1c635a91e403
   944 
   944 
   945 
   945 
   946 class InternalSession(Session):
   946 class InternalSession(Session):
   947     """special session created internaly by the repository"""
   947     """special session created internaly by the repository"""
   948     is_internal_session = True
   948     is_internal_session = True
       
   949     running_dbapi_query = False
   949 
   950 
   950     def __init__(self, repo, cnxprops=None):
   951     def __init__(self, repo, cnxprops=None):
   951         super(InternalSession, self).__init__(InternalManager(), repo, cnxprops,
   952         super(InternalSession, self).__init__(InternalManager(), repo, cnxprops,
   952                                               _id='internal')
   953                                               _id='internal')
   953         self.user.req = self # XXX remove when "vreg = user.req.vreg" hack in entity.py is gone
   954         self.user.req = self # XXX remove when "vreg = user.req.vreg" hack in entity.py is gone