如何让后端模块(' manual_scaling')无限期运行?

时间:2015-07-01 01:41:46

标签: google-app-engine module

我已经用这种方式在后端模块中定义了一个路由

(r'/_ah/start', 'ConversionTaskQueueWorker'),

我的后端模块如下终止:

enter image description here

但是如果我在

中放一个日志声明
class ConversionTaskQueueWorker(webapp2.RequestHandler):

    def get(self):
        """Indefinitely fetch tasks and update the datastore."""
        q = taskqueue.Queue(TASK_QUEUE_NAME)
        while True:
            LOG.info('Keeping it alive')
            ...

它保持正常运行

enter image description here

为什么会这样?

我不想用这条消息充斥我的日志。是否有其他方法可以保持后端模块的运行?

0 个答案:

没有答案