Add missing timeout option to logging statement

Reviewed-By: Florence Blanc-Renaud <flo@redhat.com>
This commit is contained in:
Rob Crittenden 2019-09-04 11:22:17 -04:00 committed by Florence Blanc-Renaud
parent adf2eab263
commit 5db48f151b

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):