Simplify GerritWatcher creation.

We have all the parameters as public attributes, and never want them
to be different so splitting them out is undesirable.

Change-Id: Ie2826af31100fbc287813e2968a126ff2af50f1f
This commit is contained in:
Robert Collins 2013-10-02 21:26:39 +13:00
parent 6d58714528
commit 6f44bad47d
1 changed files with 15 additions and 11 deletions

View File

@ -27,12 +27,21 @@ import paramiko
class GerritWatcher(threading.Thread):
log = logging.getLogger("gerrit.GerritWatcher")
def __init__(self, gerrit, username, hostname, port=29418, keyfile=None):
def __init__(
self, gerrit, username=None, hostname=None, port=None,
keyfile=None):
"""Create a GerritWatcher.
:param gerrit: A Gerrit instance to pass events to.
All other parameters are optional and if not supplied are sourced from
the gerrit instance.
"""
threading.Thread.__init__(self)
self.username = username
self.keyfile = keyfile
self.hostname = hostname
self.port = port
self.username = username or gerrit.username
self.keyfile = keyfile or gerrit.keyfile
self.hostname = hostname or gerrit.hostname
self.port = port or gerrit.port
self.gerrit = gerrit
def _read(self, fd):
@ -95,12 +104,7 @@ class Gerrit(object):
def startWatching(self):
self.event_queue = Queue.Queue()
self.watcher_thread = GerritWatcher(
self,
self.username,
self.hostname,
port=self.port,
keyfile=self.keyfile)
self.watcher_thread = GerritWatcher(self)
self.watcher_thread.start()
def addEvent(self, data):