Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some session parameters are not distributed #44

Open
mdogan opened this issue Feb 16, 2017 · 1 comment
Open

Some session parameters are not distributed #44

mdogan opened this issue Feb 16, 2017 · 1 comment
Milestone

Comments

@mdogan
Copy link

mdogan commented Feb 16, 2017

From @mesutcelik on September 23, 2014 8:7

If you check WebFilter.java , you will see that some parameters of HazelcastHttpSession are not distributed.

        public long getCreationTime() {
            return originalSession.getCreationTime();
        }

        public long getLastAccessedTime() {
            return originalSession.getLastAccessedTime();
        }

        public int getMaxInactiveInterval() {
            return originalSession.getMaxInactiveInterval();
        }

        public void setMaxInactiveInterval(int maxInactiveSeconds) {
            originalSession.setMaxInactiveInterval(maxInactiveSeconds);
        }

Copied from original issue: hazelcast/hazelcast#3639

@emre-aydin emre-aydin changed the title Some session paramters are not distributed Some session parameters are not distributed Apr 11, 2017
@mesutcelik mesutcelik added this to the 3.8.4 milestone Apr 27, 2018
@enozcan
Copy link
Contributor

enozcan commented Nov 22, 2019

A related case can be seen on #73

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants