def wait(self):
""" Wait until Pilot Compute to enter a final state (Done, Cancel or Failed)
It is not an error to call wait() in a final state -- the call simply
returns immediately.
"""
self.__bigjob.wait()
but bigjob_manager.wait () says:
def wait(self):
""" Waits for completion of all sub-jobs """
Documentation in the code says:
but bigjob_manager.wait () says:
So, which is it?