diff --git a/docs/en_US/container_deployment.rst b/docs/en_US/container_deployment.rst index 6997727f1..d5ceb305f 100644 --- a/docs/en_US/container_deployment.rst +++ b/docs/en_US/container_deployment.rst @@ -132,7 +132,8 @@ than using the default. *Default: /pgadmin4/servers.json* Override the default file path for the server definition list. See the -/pgadmin4/servers.json mapped file below for more information. +/pgadmin4/servers.json mapped file below for more information. See the format +of the `JSON file `_. **GUNICORN_ACCESS_LOGFILE** diff --git a/docs/en_US/release_notes_6_16.rst b/docs/en_US/release_notes_6_16.rst index 966fee260..d10b12773 100644 --- a/docs/en_US/release_notes_6_16.rst +++ b/docs/en_US/release_notes_6_16.rst @@ -38,6 +38,7 @@ Bug fixes | `Issue #5344 `_ - Ensure that pgAdmin routes should have the SCRIPT_NAME prefix. | `Issue #5424 `_ - Ensure that the appropriate permissions are set on the key file before trying an SSL connection with the server in server mode. | `Issue #5429 `_ - Fixed an issue where parameters for roles were not visible. + | `Issue #5452 `_ - The container deployment document should include the server.json file format. | `Issue #5455 `_ - Fixed an issue where the dependents tab wasn't working for PG 15. | `Issue #5458 `_ - Ensure that the browser path column in the search object shows the complete path. | `Issue #5463 `_ - Fixed an issue where the result grid was not working properly while trying to edit data by hitting Enter key. diff --git a/web/pgadmin/model/__init__.py b/web/pgadmin/model/__init__.py index 5c7e9b19d..4e1bedeba 100644 --- a/web/pgadmin/model/__init__.py +++ b/web/pgadmin/model/__init__.py @@ -61,7 +61,8 @@ class PgAdminDbBinaryString(types.TypeDecorator): impl = types.String def process_bind_param(self, value, dialect): - return value.hex() + return value.hex() if hasattr(value, 'hex') \ + else value def process_result_value(self, value, dialect): try: