GAE cloud endpoints - Api not updating after deploy

后端 未结 6 1821
执笔经年
执笔经年 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:59

    I noticed that if you upload your app for the first time without the following in your web.xml:

     
            
                /_ah/spi/*
            
            
                CONFIDENTIAL
            
        
    

    Then your bns adapter will be set as http going forward. When I add the above afterwards, I get 302 http code on /_ah/spi/BackendService.getApiConfigs and the endpoints never update.

    So now I have reverted to not use https on /_ah/spi and my endpoints are updating. I guess for those that see their endpoints not being updated revert back to the first configuration they had for ssl on /_ah/spi/.

    Yaw.

提交回复
热议问题