File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 1818# However, if you have executed another commercial license agreement
1919# with Crate these terms will supersede the license and you may use the
2020# software solely pursuant to the terms of the relevant commercial agreement.
21+ import json
2122
2223from verlib2 import Version
2324from verlib2 .packaging .version import InvalidVersion
@@ -216,7 +217,7 @@ def _lowest_server_version(self):
216217 if not lowest or version < lowest :
217218 lowest = version
218219 if connection_errors and len (connection_errors ) == server_count :
219- raise ConnectionError (str ( connection_errors ))
220+ raise ConnectionError (json . dumps ( list ( map ( str , connection_errors )) ))
220221 return lowest or Version ("0.0.0" )
221222
222223 def __repr__ (self ):
You can’t perform that action at this time.
0 commit comments