Arthur
07/21/2024, 2:38 PMfutures=[]
for i in list:
future= run_deployment(name=deployment1)
futures.append(future)
for future in futures:
result = task(future)
Samuel Hinton
07/21/2024, 11:28 PM.submit(name=deployment)
Arthur
07/23/2024, 1:13 PM.submit
, i return the output of the function directly, not a future, and the 2nd task shouldn't be blocked?Samuel Hinton
07/24/2024, 12:55 AMArthur
07/26/2024, 8:47 AM