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

        time.sleep(1)
        self.response.write(script)
        self.redirect("/")
Esempio n. 2
0
 def get(self):
     while not delete_expired_sessions():
         pass
Esempio n. 3
0
 def get(self):
   while not delete_expired_sessions():
     pass
   self.response.out.write("ok")
Esempio n. 4
0
import fix_path
from gaesessions import delete_expired_sessions
while not delete_expired_sessions():
    pass
Esempio n. 5
0
 def get(self):
   while not delete_expired_sessions():
     pass
   self.response.out.write("ok")
Esempio 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))
Esempio 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))
Esempio n. 8
0
 def get(self):
     increment_course_and_cleanup_graduates()
     while not delete_expired_sessions():
         pass
Esempio 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
Esempio n. 12
0
 def get(self):
     increment_course_and_cleanup_graduates()
     while not delete_expired_sessions():
         pass