Skip to content

Commit 67f85d1

Browse files
Fix possible connect recursion
1 parent 4fb39a6 commit 67f85d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: tarantool/mesh_connection.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ def connect(self):
299299
conn = self.pool[key]
300300

301301
if not conn.connected:
302-
conn.connect()
302+
super(MeshConnection, conn).connect()
303303
if not conn.connected:
304304
warn("can't connect to instance to get rw/ro state", ClusterDiscoveryWarning)
305305
continue

0 commit comments

Comments
 (0)