The container deployment document should include the server.json file format. #5452

This commit is contained in:
Akshay Joshi
2022-11-17 16:51:02 +05:30
parent a483734190
commit 7db655c0c1
3 changed files with 5 additions and 2 deletions

View File

@@ -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: