mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2026-09-03 20:52:57 -05:00
Using the correct member variable while fetching the notices/messages
from the psycopg2 connection.
This commit is contained in:
@@ -796,7 +796,7 @@ Polling result for (Query-id: {query_id})""".format(query_id=self.__async_query_
|
||||
"""
|
||||
Returns the list of the messages/notices send from the database server.
|
||||
"""
|
||||
return self.pg_conn.notices if self.pg_conn else []
|
||||
return self.conn.notices if self.conn else []
|
||||
|
||||
|
||||
class ServerManager(object):
|
||||
|
||||
Reference in New Issue
Block a user