pgAdmin 4 commit: Fix for Exception when the server is restarted.Fixes

Поиск
Список
Период
Сортировка
От Dave Page
Тема pgAdmin 4 commit: Fix for Exception when the server is restarted.Fixes
Дата
Msg-id E1dtwH7-00054Z-5Q@gothos.postgresql.org
обсуждение исходный текст
Список pgadmin-hackers
Fix for Exception when the server is restarted. Fixes #2713

This issue was caused because we recently added session_write_delay in session.
So session won't be written/updated to disk from memory until specified seconds are elapsed.

However we must forcefully write/update session to disk if user loges in or out irrespective of session_write_delay to
keepsessions from memory and disk in sync as user logged in status is kept in session. 

Branch
------
master

Details
-------
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=f0ad26ba7ad4601cce44c236589528756314a20b
Author: Harshal Dhumal <harshal.dhumal@enterprisedb.com>

Modified Files
--------------
web/pgadmin/__init__.py      | 7 +++++--
web/pgadmin/utils/session.py | 4 +++-
2 files changed, 8 insertions(+), 3 deletions(-)


В списке pgadmin-hackers по дате отправления:

Предыдущее
От: Dave Page
Дата:
Сообщение: Re: [pgAdmin4][Patch] RM 2691 View data option is missing frompgAdmin4 2.0 version
Следующее
От: Dave Page
Дата:
Сообщение: Re: Fix for Exception when the server is restarted [RM2713][pgAdmin4]