Ejemplo n.º 1
0
    def get(self):
        while not delete_expired_sessions():
            pass

        time.sleep(1)
        self.response.write(script)
        self.redirect("/")
Ejemplo n.º 2
0
 def get(self):
     while not delete_expired_sessions():
         pass
Ejemplo n.º 3
0
 def get(self):
   while not delete_expired_sessions():
     pass
   self.response.out.write("ok")
Ejemplo n.º 4
0
import fix_path
from gaesessions import delete_expired_sessions
while not delete_expired_sessions():
    pass
Ejemplo n.º 5
0
 def get(self):
   while not delete_expired_sessions():
     pass
   self.response.out.write("ok")
Ejemplo n.º 6
0
 def get(self):
     num_before = SessionModel.all().count()
     delete_expired_sessions()
     num_after = SessionModel.all().count()
     self.response.out.write('%d,%d' % (num_before, num_after))
Ejemplo n.º 7
0
 def get(self):
     num_before = SessionModel.all().count()
     delete_expired_sessions()
     num_after = SessionModel.all().count()
     self.response.out.write('%d,%d' % (num_before, num_after))
Ejemplo n.º 8
0
 def get(self):
     increment_course_and_cleanup_graduates()
     while not delete_expired_sessions():
         pass
Ejemplo n.º 9
0
 def get(self):
     while not delete_expired_sessions():
         pass
def run():
    while not delete_expired_sessions():
        pass
def run():
    while not delete_expired_sessions():
        pass
Ejemplo n.º 12
0
 def get(self):
     increment_course_and_cleanup_graduates()
     while not delete_expired_sessions():
         pass