Skip to content

Commit

Permalink
break when result is not success
Browse files Browse the repository at this point in the history
  • Loading branch information
JinZhou5042 committed Nov 26, 2024
1 parent 60cf40e commit 4a78c60
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions taskvine/src/manager/vine_manager.c
Original file line number Diff line number Diff line change
Expand Up @@ -1281,6 +1281,9 @@ static int fetch_outputs_from_worker(struct vine_manager *q, struct vine_worker_
if (result == VINE_SUCCESS) {
t->output_received = 1;
}
else {
break;
}
}
result = vine_manager_get_output_files(q, w, t);
break;
Expand Down

0 comments on commit 4a78c60

Please sign in to comment.