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:
Mike Bonnet 2014-10-16 18:05:55 -04:00 committed by Mike McLean
parent 5c4144c033
commit df316c0c6f

View file

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