server/pool.py
branchstable
changeset 2063 fe4278b50388
parent 1977 606923dff11b
child 2765 5e2525d7b1b1
equal deleted inserted replaced
2062:20f18837107c 2063:fe4278b50388
    66             except:
    66             except:
    67                 continue
    67                 continue
    68 
    68 
    69     # internals ###############################################################
    69     # internals ###############################################################
    70 
    70 
    71     def pool_set(self, session):
    71     def pool_set(self):
    72         """pool is being set"""
    72         """pool is being set"""
    73         self.check_connections()
    73         self.check_connections()
    74 
    74 
    75     def pool_reset(self, session):
    75     def pool_reset(self):
    76         """pool is being reseted"""
    76         """pool is being reseted"""
    77         for source, cnx in self.source_cnxs.values():
    77         for source, cnx in self.source_cnxs.values():
    78             source.pool_reset(cnx)
    78             source.pool_reset(cnx)
    79 
    79 
    80     def __getitem__(self, uri):
    80     def __getitem__(self, uri):