Fixed an issue where Transaction IDs were not found in session in the Query Tool. #5453

This commit is contained in:
Aditya Toshniwal
2022-12-05 10:48:42 +05:30
committed by GitHub
parent 4ab06b4a2a
commit be011a4f3d
3 changed files with 29 additions and 11 deletions

View File

@@ -803,7 +803,9 @@ class ServerNode(PGChildNodeView):
shared=server.shared,
user_id=server.user_id,
user=manager.user_info if connected else None,
server_type='pg' # default server type
server_type='pg', # default server type
user_name=server.username,
role=server.role,
)
)