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:
Richard Purdie
2017-08-31 10:28:46 +01:00
parent 92903ced3a
commit 313bf30db7
2 changed files with 2 additions and 2 deletions

View File

@@ -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)

View File

@@ -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()