mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Using the correct member variable while fetching the notices/messages
from the psycopg2 connection.
This commit is contained in:
parent
6014448dd7
commit
31ab9ebacc
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user