Example #1
0
    def get(self):
        while not delete_expired_sessions():
            pass

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