设计记住部署失败
目前,每当我们部署应用程序时,我们都会从应用程序中注销,并且必须使用 devise + Rails 3 重新登录。
我们的部署过程是
负载均衡器指向 EC2 实例(产品),
我们将新代码推送到新的 ec2实例进行测试,然后将负载均衡切换到新的 ec2 实例。
然后我们都被踢出了应用程序,并且必须重新登录。
你知道为什么会这样吗?
谢谢
currently anytime we deploy our app we all get logged out of the app, and have to sign back in using devise + rails 3.
Our deployment process is
Load balancer points to an EC2 instance (prod)
we push the new code to a new ec2 instance to test it out, and then switch the load balance to the new ec2 instance.
Then we all get kicked out of the app, and have to sign back in.
Any ideas why that is?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您在哪里存储会话数据?如果您将其存储在数据库中,请检查您的部署步骤。也许您正在部署步骤之一中清理会话表,这就是将所有人注销。
Where do you store your session data? If you are storing that in the database, then check your deployment steps. Maybe you are cleaning up the sessions table in one of the deployment steps and that is logging everyone out.