ynk888
1
Versions (relevant - OpenSearch/Dashboard/Server OS/Browser):
2.15
Describe the issue:
My session still disappear after 1hour
I was think that after fix
released in 2.13
Configuration:
config:
opensearch_dashboards.yml: |
opensearch_security.cookie.secure: false
opensearch_security.cookie.ttl: 43200000
opensearch_security.session.ttl: 43200000
opensearch_security.session.keepalive: true
opensearch_security.openid.refresh_tokens: true
Relevant Logs or Screenshots:
I found differences that security-dashboard-plugin code looks different in my container than in github.
if (this.config.session.keepalive) {
cookie!.expiryTime = this.getKeepAliveExpiry(cookie!, request);
this.sessionStorageFactory.asScoped(request).set(cookie!);
}
Plain Text
if (this.config.session.keepalive) {
cookie.expiryTime = this.getKeepAliveExpiry(cookie, request);
this.sessionStorageFactory.asScoped(request).set(cookie);
}
Mantas
4