Add missing timeout option to logging statement

Reviewed-By: Florence Blanc-Renaud <flo@redhat.com>
This commit is contained in:
Rob Crittenden
2019-09-05 09:15:23 +02:00
committed by Florence Blanc-Renaud
parent adf2eab263
commit 5db48f151b
+1 -1
View File
@@ -187,7 +187,7 @@ def wait_for_entry(connection, dn, timeout, attr=None, attrvalue='*',
else:
filterstr = "(objectclass=*)"
log("Waiting up to %s seconds for replication (%s) %s %s",
connection, dn, filterstr)
timeout, connection, dn, filterstr)
entry = []
deadline = time.time() + timeout
for i in itertools.count(start=1):