Appengine: put_async doesn't work (at least in the development server)?

前端 未结 1 1530
栀梦
栀梦 2021-01-12 12:18

NOTE: IT DOES WORK IN PRODUCTION. I MEAN, WHEN I UPLOAD THE APPLICATION IT JUST WORKS FINE. THE PROBLEM IS IN THE DEVELOPMENT SERVER.

Here is some c

相关标签:
1条回答
  • 2021-01-12 12:43

    If you don't call .wait() or .get_result() on an RPC, there is no way to guarantee it's completed. In the case of the dev_appserver, which is not multi-threaded, the actual work is done when you call those methods - it's not actually asynchronous in development, only in production.

    0 讨论(0)
提交回复
热议问题