TackleMcClean 🏅
12/11/2023, 8:50 PM"TimeOut": "00:20:00"
I am always logged out within about a minute.
I thought it might regard timezones somehow so I have made sure to run the server in the correct timezone but no luck still.
Any idea what's going on?
I'm trying logging in even in incognito mode to avoid any previous cookies etc.SiempreSteve
12/12/2023, 4:07 PMTackleMcClean 🏅
12/12/2023, 4:23 PMSiempreSteve
12/12/2023, 5:12 PMD_Inventor
12/12/2023, 8:22 PMTackleMcClean 🏅
12/13/2023, 9:48 AMTackleMcClean 🏅
12/13/2023, 9:58 AMTackleMcClean 🏅
12/13/2023, 2:42 PMTackleMcClean 🏅
12/13/2023, 2:51 PMTackleMcClean 🏅
12/13/2023, 3:01 PM/umbraco/backoffice/umbracoapi/authentication/GetRemainingTimeoutSeconds
call returning:
)]}',
0.0
right when it logs me out.TackleMcClean 🏅
12/13/2023, 3:11 PM[HttpGet]
[AllowAnonymous]
public async Task<double> GetRemainingTimeoutSeconds()
{
// force authentication to occur since this is not an authorized endpoint
AuthenticateResult result = await this.AuthenticateBackOfficeAsync();
if (!result.Succeeded)
{
return 0;
}
https://github.com/umbraco/Umbraco-CMS/blob/422218ea1599e961385eca4ec92a5cafb8fbe5f2/src/Umbraco.Web.BackOffice/Controllers/AuthenticationController.cs#L244TackleMcClean 🏅
12/13/2023, 3:41 PMSecurity__AllowConcurrentLogins
to true
seems to fix it
no idea why, I am only logging in at one place/one browser