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
@@ -212,7 +213,7 @@ def _lowest_server_version(self):
212213 if not lowest or version < lowest :
213214 lowest = version
214215 if connection_errors and len (connection_errors ) == server_count :
215- raise ConnectionError (str ( connection_errors ))
216+ raise ConnectionError (json . dumps ( list ( map ( str , connection_errors )) ))
216217 return lowest or Version ("0.0.0" )
217218
218219 def __repr__ (self ):
You can’t perform that action at this time.
0 commit comments