arjangch commented on issue #1184: URL: https://github.com/apache/grails-spring-security/issues/1184#issuecomment-3419625745
Double check in different laptop. Using FF browser. Using the same Example3 app in my github. 1. Create Admin user and role from BootStrap 2. grails run-app 3. Check h2-db console. Admin is there. `SELECT * FROM "user"` 4. login as admin / admin 5. Check tags <sec:ifNotLoggedIn> and <sec:username/> and <sec:loggedInUserInfo field='username'/> are all working fine. Click around Admin should have access to everything. 6. Don't close tab. 7. Don't logout 8. stop the app ctrl-c in command line 9. comment out admin user in BootStrap 10. grails run-app 11. Check h2-db console. You are kicked out you need to login again to h2-db console 12. `SELECT * FROM "user"` admin user is not there any more 13. go back to browser 14. Shift-reload the page 15. Admin user still showing in <sec:ifNotLoggedIn> and <sec:username/> 16. in testSpringTags.gsp page <sec:loggedInUserInfo field='username'/> is showing admin user 17. click around. Everything working fine. 18. click on Logout button 19. you are logged out 20. try to login with admin / admin 21. you are not able to login because admin user doesn't exist. It behaves like it is cached in cookie in browser. Does Remember Me has anything to do with this? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
