I am seeing strange issue after upgrading spring boot from 0.5.0.M7 to 1.1.9.RELEASE. My application.properties has this property defined
server.session-timeout=60
But now my session gets expired within 1 minute of inactivity. I switch back to previous version and the issue disappears.
I debugged my code to see if ServerProperties.java was setting 60 to sessionTimeout variable inside it. And it indeed did.
Can somebody point me to the direction I should be looking to? What has changed that could cause such an issue?