decay29
decay29
Thanks for replying: I get this: No connection adapters were found for '['http://192.168.1.77:8529', 'http://192.168.1.72:8529']/_db/_system/_api/cursor' I first construct a Connection object and then swap out the single arangoURL for the list....
``` self.urls = ["http://192.168.1.77:8529", "http://192.168.1.72:8529"] def selectConnection(self, index = 0): try: self.connection = Connection(arangoURL=self.urls[index], username="blah", password="blah", verify=False) self.db = self.connection["_system"] self.connection.arangoURL = [self.urls] self.connection.currentURLId = 0 print("connected") self.currentURL = self.urls[index]...