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.
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.