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
Cookie data is cleaned up frequently enough. Especially relevant after storing event_ids in session in Table refresh with ntie #87. Running Howitz for a long time with lots og events being updated could increase cookie size up to its limit.
Reuse cookie (remember me f.e.) where possible. So that user is not logged out for as long time as possible until manual logout.
...
The text was updated successfully, but these errors were encountered:
On testing another branch today I got the following error:
/../.virtualenvs/howitz/lib/python3.10/site-packages/werkzeug/sansio/response.py:261: U
serWarning: The 'session' cookie is too large: the value was 4159 bytes but the header requi
red 26 extra bytes. The final size was 4185 bytes but the limit is 4093 bytes. Browsers may
silently ignore cookies larger than this.
dump_cookie(
While the sorted list of event ids and what is selected is session specific, the list of known events is not and can be cached.
Make sure that:
event_ids
insession
in Table refresh with ntie #87. Running Howitz for a long time with lots og events being updated could increase cookie size up to its limit.remember me
f.e.) where possible. So that user is not logged out for as long time as possible until manual logout.The text was updated successfully, but these errors were encountered: