GoogleAppEngine urlfetch timeout exception

前端 未结 1 1253
不思量自难忘°
不思量自难忘° 2020-12-29 12:34

Has anyone got any experience with the following exception when using GAE urlfetch?

      DownloadError: ApplicationError: 2 timed out

I\'m

相关标签:
1条回答
  • 2020-12-29 12:38

    The development web server is single-threaded. You can not make a request from your application running inside it to itself. Try running two instances on different ports.

    By the way, this should not be a problem once it is deployed, as the actual AppEngine server is of course able to handle multiple simultaneous requests.

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