GAE cloud endpoints - Api not updating after deploy

后端 未结 6 1819
执笔经年
执笔经年 2020-12-01 02:20

I\'m starting to use cloud endpoints in my GAE project but have been running into issues with the api not updating on the server.

  • localhost:8888/_ah/api/expl
6条回答
  •  佛祖请我去吃肉
    2020-12-01 02:57

    This is what happened to me.

    I tested my endpoint on localhost and it worked fine.

    I deployed my endpoint on appspot and when I made requests to it I received in the browser the message 'Not found'.

    So I looked in the logs and when I made requests to the endpoint I saw a 404 http error code on favicon file. And in effects I forgot to put that file in my deploy.

    So I redeployed my war with the favicon file, the 404 http code disappeared and the endpoint worked fine on appspot too!

    I realize that this may sound silly, but it is what I experienced. (I apologize for my poor english)

提交回复
热议问题