def on_close(self): creator.terminate_rd_session(self.agent_id) if self.client.subscribed: self.client.unsubscribe(self.channel) self.client.disconnect()
def delete(self): current_user = self.get_current_user() body = json.loads(self.request.body) agent_id = body.get('agent_id') results = creator.terminate_rd_session(agent_id=agent_id, user=current_user) self.set_header('Content-Type', 'application/json') self.write(json.dumps(results, indent=4))
def delete(self): current_user = self.get_current_user() body = json.loads(self.request.body) agent_id = body.get('agent_id') results = creator.terminate_rd_session( agent_id=agent_id, user=current_user ) self.set_header('Content-Type', 'application/json') self.write(json.dumps(results, indent=4))