From: robk-org Date: Tue, 5 Jun 2007 01:45:40 +0000 (-0700) Subject: add a missing up-call in introducer.startService() X-Git-Tag: allmydata-tahoe-0.3.0~31 X-Git-Url: https://git.rkrishnan.org/class-simplejson.JSONEncoder.html?a=commitdiff_plain;h=92395125fa61e09732e31a4c77d3fc8371d8f98d;p=tahoe-lafs%2Ftahoe-lafs.git add a missing up-call in introducer.startService() --- diff --git a/src/allmydata/introducer.py b/src/allmydata/introducer.py index fba2b204..675bd94d 100644 --- a/src/allmydata/introducer.py +++ b/src/allmydata/introducer.py @@ -43,6 +43,7 @@ class IntroducerClient(service.Service, Referenceable): self.connection_observers = observer.ObserverList() def startService(self): + service.Service.startService(self) self.introducer_reconnector = self.tub.connectTo(self.introducer_furl, self._got_introducer)