URL: https://github.com/freeipa/freeipa/pull/3621
Author: rcritten
 Title: #3621: Add missing timeout option to logging statement
Action: opened

PR body:
"""
The linter didn't catch this in the last PR
"""

To pull the PR as Git branch:
git remote add ghfreeipa https://github.com/freeipa/freeipa
git fetch ghfreeipa pull/3621/head:pr3621
git checkout pr3621
From d08f6d73053f4c2fe22853245a2f3d79d0570b11 Mon Sep 17 00:00:00 2001
From: Rob Crittenden <rcrit...@redhat.com>
Date: Wed, 4 Sep 2019 11:22:17 -0400
Subject: [PATCH] Add missing timeout option to logging statement

---
 ipaserver/install/replication.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ipaserver/install/replication.py b/ipaserver/install/replication.py
index 6b27c5a22b..1fefe3ebf0 100644
--- a/ipaserver/install/replication.py
+++ b/ipaserver/install/replication.py
@@ -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):
_______________________________________________
FreeIPA-devel mailing list -- freeipa-devel@lists.fedorahosted.org
To unsubscribe send an email to freeipa-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/freeipa-devel@lists.fedorahosted.org

Reply via email to