pgAdmin 4 commit: Fixes #1185 - While connecting to the server, applica

Поиск
Список
Период
Сортировка
От Ashesh Vashi
Тема pgAdmin 4 commit: Fixes #1185 - While connecting to the server, applica
Дата
Msg-id E1b8Osf-0001Bc-LG@gothos.postgresql.org
обсуждение исходный текст
Список pgadmin-hackers
Fixes #1185 - While connecting to the server, application becomes almost
inaccessible.

In stand (without threaded) mode, flask application is not able to
process more than one request at a time. Hence - even the client
(browser) send multiple request, when connecting the server (which is
inaccessible), rest of operations get blocked, as making the connection
with the database server is blocking operation.

In order to fix the issue, we're starting the application with thread
support, in which it will create a separate thread of each request.

Branch
------
master

Details
-------
http://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=d202366a5dc3fac79df740ec91080ec7b6cf4cdc
Author: Murtuza Zabuawala <murtuza.zabuawala@enterprisedb.com>

Modified Files
--------------
web/config.py   | 5 +++++
web/pgAdmin4.py | 7 +++++--
2 files changed, 10 insertions(+), 2 deletions(-)


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

Предыдущее
От: Ashesh Vashi
Дата:
Сообщение: Re: [pgAdmin4][Patch]: RM#1295 - Grant wizard should also added with Trigger function node through Right Click
Следующее
От: Ashesh Vashi
Дата:
Сообщение: pgAdmin 4 commit: Check valid DOMElement existance before accessing it