mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 00:39:46 +00:00
bitbake: prserv/cooker: Drop unused param
Drop pointless unused function parameter. (Bitbake rev: 8104b33656de0b619943bd7a9884eb650ccafbf4) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -1576,7 +1576,7 @@ class BBCooker:
|
|||||||
return
|
return
|
||||||
|
|
||||||
def post_serve(self):
|
def post_serve(self):
|
||||||
prserv.serv.auto_shutdown(self.data)
|
prserv.serv.auto_shutdown()
|
||||||
bb.event.fire(CookerExit(), self.data)
|
bb.event.fire(CookerExit(), self.data)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -478,7 +478,7 @@ def auto_start(d):
|
|||||||
logger.critical("PRservice %s:%d not available" % (host, port))
|
logger.critical("PRservice %s:%d not available" % (host, port))
|
||||||
raise PRServiceConfigError
|
raise PRServiceConfigError
|
||||||
|
|
||||||
def auto_shutdown(d=None):
|
def auto_shutdown():
|
||||||
global singleton
|
global singleton
|
||||||
if singleton:
|
if singleton:
|
||||||
host, port = singleton.getinfo()
|
host, port = singleton.getinfo()
|
||||||
|
|||||||
Reference in New Issue
Block a user