The container deployment document should include the server.json file format. #5452
parent
a483734190
commit
7db655c0c1
|
@ -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 <https://www.pgadmin.org/docs/pgadmin4/latest/import_export_servers.html#json-format>`_.
|
||||
|
||||
**GUNICORN_ACCESS_LOGFILE**
|
||||
|
||||
|
|
|
@ -38,6 +38,7 @@ Bug fixes
|
|||
| `Issue #5344 <https://github.com/pgadmin-org/pgadmin4/issues/5344>`_ - Ensure that pgAdmin routes should have the SCRIPT_NAME prefix.
|
||||
| `Issue #5424 <https://github.com/pgadmin-org/pgadmin4/issues/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 <https://github.com/pgadmin-org/pgadmin4/issues/5429>`_ - Fixed an issue where parameters for roles were not visible.
|
||||
| `Issue #5452 <https://github.com/pgadmin-org/pgadmin4/issues/5452>`_ - The container deployment document should include the server.json file format.
|
||||
| `Issue #5455 <https://github.com/pgadmin-org/pgadmin4/issues/5455>`_ - Fixed an issue where the dependents tab wasn't working for PG 15.
|
||||
| `Issue #5458 <https://github.com/pgadmin-org/pgadmin4/issues/5458>`_ - Ensure that the browser path column in the search object shows the complete path.
|
||||
| `Issue #5463 <https://github.com/pgadmin-org/pgadmin4/issues/5463>`_ - Fixed an issue where the result grid was not working properly while trying to edit data by hitting Enter key.
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue