You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 1, 2020. It is now read-only.
Currently a session can only be assigned to a single connection, though sessions should accept multiple simultaneous connections to support authentication across multiple browser tabs/windows of the same domain.
Proposed Solution
Ease this restriction by adding an option for the maximum number of simultaneous connections associatable with a single session.
The text was updated successfully, but these errors were encountered:
Added support for multi-connection sessions in #144c6ad.
The server now provides a new option: MaxSessionConnections which defines the maximum number of simultaneous connections a single session will accept. Session restoration requests exceeding the limit will fail. If the option is set to zero, which it is by default, then the limit is lifted.
Implement the option to enable multi-connection sessions.
Add test case to verify correct behavior of the newly created option.
Change the way tests setup their servers to allow passing options.
Problem
Currently a session can only be assigned to a single connection, though sessions should accept multiple simultaneous connections to support authentication across multiple browser tabs/windows of the same domain.
Proposed Solution
Ease this restriction by adding an option for the maximum number of simultaneous connections associatable with a single session.
The text was updated successfully, but these errors were encountered: