pgAdmin 4 commit: Fixes #1185 - While connecting to the server, applica - Mailing list pgadmin-hackers

From Ashesh Vashi
Subject pgAdmin 4 commit: Fixes #1185 - While connecting to the server, applica
Date
Msg-id E1b8Osf-0001Bc-LG@gothos.postgresql.org
Whole thread Raw
List 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 by date:

Previous
From: Ashesh Vashi
Date:
Subject: Re: [pgAdmin4][Patch]: RM#1295 - Grant wizard should also added with Trigger function node through Right Click
Next
From: Ashesh Vashi
Date:
Subject: pgAdmin 4 commit: Check valid DOMElement existance before accessing it