diff options
-rw-r--r-- | bitbake/lib/prserv/serv.py | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/bitbake/lib/prserv/serv.py b/bitbake/lib/prserv/serv.py index e4c1c2a6aa..1e170cea0a 100644 --- a/bitbake/lib/prserv/serv.py +++ b/bitbake/lib/prserv/serv.py | |||
@@ -275,17 +275,13 @@ def stop_daemon(host, port): | |||
275 | PRServerConnection(host, port).terminate() | 275 | PRServerConnection(host, port).terminate() |
276 | except: | 276 | except: |
277 | logger.critical("Stop PRService %s:%d failed" % (host,port)) | 277 | logger.critical("Stop PRService %s:%d failed" % (host,port)) |
278 | time.sleep(0.5) | ||
279 | 278 | ||
280 | try: | 279 | try: |
281 | if pid: | 280 | if pid: |
282 | if os.path.exists(pidfile): | ||
283 | os.remove(pidfile) | ||
284 | |||
285 | wait_timeout = 0 | 281 | wait_timeout = 0 |
286 | while is_running(pid) and wait_timeout < 10: | 282 | print("Waiting for pr-server to exit.") |
287 | print("Waiting for pr-server to exit.") | 283 | while is_running(pid) and wait_timeout < 50: |
288 | time.sleep(0.5) | 284 | time.sleep(0.1) |
289 | wait_timeout += 1 | 285 | wait_timeout += 1 |
290 | 286 | ||
291 | if is_running(pid): | 287 | if is_running(pid): |
@@ -293,6 +289,9 @@ def stop_daemon(host, port): | |||
293 | os.kill(pid,signal.SIGTERM) | 289 | os.kill(pid,signal.SIGTERM) |
294 | time.sleep(0.1) | 290 | time.sleep(0.1) |
295 | 291 | ||
292 | if os.path.exists(pidfile): | ||
293 | os.remove(pidfile) | ||
294 | |||
296 | except OSError as e: | 295 | except OSError as e: |
297 | err = str(e) | 296 | err = str(e) |
298 | if err.find("No such process") <= 0: | 297 | if err.find("No such process") <= 0: |