mirror of
https://git.yoctoproject.org/poky
synced 2026-04-17 09:32:12 +02: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
|
||||
|
||||
def post_serve(self):
|
||||
prserv.serv.auto_shutdown(self.data)
|
||||
prserv.serv.auto_shutdown()
|
||||
bb.event.fire(CookerExit(), self.data)
|
||||
|
||||
|
||||
|
||||
@@ -478,7 +478,7 @@ def auto_start(d):
|
||||
logger.critical("PRservice %s:%d not available" % (host, port))
|
||||
raise PRServiceConfigError
|
||||
|
||||
def auto_shutdown(d=None):
|
||||
def auto_shutdown():
|
||||
global singleton
|
||||
if singleton:
|
||||
host, port = singleton.getinfo()
|
||||
|
||||
Reference in New Issue
Block a user