diff --git a/docs/en_US/release_notes_9_0.rst b/docs/en_US/release_notes_9_0.rst index f4e63f68f..8cb0d2cd5 100644 --- a/docs/en_US/release_notes_9_0.rst +++ b/docs/en_US/release_notes_9_0.rst @@ -34,7 +34,9 @@ Bug fixes | `Issue #6968 `_ - Fixed an issue where option key was not registering in PSQL tool. | `Issue #8072 `_ - Fixed an issue where Schema Diff not produce difference script for Index definition with where condition. | `Issue #8142 `_ - Correct the documentation for the MFA configuration. + | `Issue #8165 `_ - Fixed an issue where error message from the database server need space between two sentences. | `Issue #8208 `_ - Allow deleting the entry while creating/adding new label to enumeration type. | `Issue #8209 `_ - Fixed an issue where properties dialog throwing an error for Materialized View. | `Issue #8254 `_ - Fix a formatting issue in View/Edit tool generated SQL where some filters are applied. | `Issue #8255 `_ - Fixed an issue where tooltip on a dropdown button is blocking access to dropdown menu. + | `Issue #8256 `_ - Fix the error occurring while loading preferences on startup. diff --git a/web/pgadmin/utils/driver/psycopg3/connection.py b/web/pgadmin/utils/driver/psycopg3/connection.py index f124704e4..6a092d6a0 100644 --- a/web/pgadmin/utils/driver/psycopg3/connection.py +++ b/web/pgadmin/utils/driver/psycopg3/connection.py @@ -1680,7 +1680,7 @@ Failed to reset the connection to the server due to following error: elif hasattr(exception_obj, 'diag') and \ hasattr(exception_obj.diag, 'message_detail') and\ exception_obj.diag.message_detail is not None: - errmsg = exception_obj.diag.message_detail + \ + errmsg = exception_obj.diag.message_detail + '\n' + \ exception_obj.diag.message_primary else: errmsg = str(exception_obj)