Skip to content

Commit 38b27d5

Browse files
Minor reworks
1 parent 373e5fc commit 38b27d5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tarantool/connection_pool.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,10 +210,9 @@ def connect(self):
210210

211211
self.update_ro_info()
212212

213-
def send_with_reload_on_ro_error(self, method_name, mode, *args, **kwargs):
213+
def send_with_reload_on_ro_error(self, mode, method_name, *args, **kwargs):
214214
conn = self.strategy.getnext(mode)
215215
method = getattr(Connection, method_name)
216-
print(args)
217216

218217
try:
219218
resp = method(conn, *args, **kwargs)

0 commit comments

Comments
 (0)