Home | History | Annotate | Download | only in paste

Lines Matching refs:request_id

256         request_id = restorer.in_restoration()
257 if request_id:
258 return restorer.get_saved_proxied_obj(self, request_id)
479 # Registries and their saved reglists by request_id
504 def get_saved_proxied_obj(self, stacked, request_id):
506 StackedObjectProxy for the request identified by request_id"""
507 # All state for the request identified by request_id
508 reglist = self.saved_registry_states[request_id][1]
552 def restoration_begin(self, request_id):
554 request_id"""
555 if request_id in self.saved_registry_states:
557 registry, reglist = self.saved_registry_states[request_id]
560 self.restoration_context_id.request_id = request_id
565 del self.restoration_context_id.request_id
571 Returns the request_id it's active for if so, otherwise False"""
572 return getattr(self.restoration_context_id, 'request_id', False)