Ensure that pgAdmin should not fail at login due to a special character in the hostname. Fixes #6704

This commit is contained in:
Akshay Joshi 2021-09-01 15:36:37 +05:30
parent 173517985e
commit a9ff5c799e
2 changed files with 4 additions and 3 deletions

View File

@ -39,4 +39,5 @@ Bug fixes
| `Issue #6682 <https://redmine.postgresql.org/issues/6682>`_ - Renamed 'Auto rollback?' to 'Auto rollback on error?'.
| `Issue #6684 <https://redmine.postgresql.org/issues/6684>`_ - Fixed the JSON editor issue of hiding the first record.
| `Issue #6685 <https://redmine.postgresql.org/issues/6685>`_ - Ensure that deleting a database should not automatically connect to the next database.
| `Issue #6704 <https://redmine.postgresql.org/issues/6704>`_ - Ensure that pgAdmin should not fail at login due to a special character in the hostname.
| `Issue #6710 <https://redmine.postgresql.org/issues/6710>`_ - Fixed an issue where multiple query tool tabs getting closed for the single close event.

View File

@ -46,8 +46,8 @@ if [ "x${PGADMIN_POSTGRES_DIR}" == "x" ]; then
fi
if [ "x${PGADMIN_PYTHON_VERSION}" == "x" ]; then
echo "PGADMIN_PYTHON_VERSION not set. Setting it to the default: 3.9.2"
export PGADMIN_PYTHON_VERSION=3.9.2
echo "PGADMIN_PYTHON_VERSION not set. Setting it to the default: 3.9.5"
export PGADMIN_PYTHON_VERSION=3.9.5
fi
source ${SCRIPT_DIR}/build-functions.sh