xmlrpclib is not thread-safe, create a new ServerProxy instance so we're not sharing with the stream_logs thread
This commit is contained in:
parent
5c4144c033
commit
df316c0c6f
1 changed files with 4 additions and 0 deletions
|
|
@ -727,6 +727,10 @@ def main():
|
|||
thread.daemon = True
|
||||
thread.start()
|
||||
|
||||
# xmlrpclib is not thread-safe, create a new ServerProxy
|
||||
# instance so we're not sharing with the stream_logs thread
|
||||
server = get_mgmt_server()
|
||||
|
||||
build = WindowsBuild(server)
|
||||
builds.append(build)
|
||||
results = build.run()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue