英文:
App Engine for Go app update not reflecting
问题
使用Google App Engine进行Go开发。
我已经成功部署了我的项目更新,但在Web URL上没有反映出来。有人对此有任何想法吗?
我已经尝试了两次更新。
尝试的命令:
goapp deploy
appcfg.py update myapp/
英文:
Using Google App Engine for Go.
I have successfully deployed my project update, but it is not reflected back on the Web URL. Does anyone have any idea about that?
I have tried Updating it twice.
Command tried <br>
goapp deploy<br>
appcfg.py update myapp/
答案1
得分: 1
当您切换版本号时,App Engine将继续提供旧版本,直到您在App Engine控制台中更改默认版本。这是设计上的考虑;它允许您在生产环境中运行一个新版本,以便您可以在不影响现有用户的情况下进行测试(您还可以在当前推送到生产环境的不同版本上运行A/B测试)。
英文:
When you switch version numbers, App Engine will continue serving the old version until you have changed the default version in the App Engine console. This is by design; it allows you to have a newer version running in production that you can test without disrupting existing users (you can also run an A/B test on the different versions that are currently pushed to production).
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论