Skip to content

Commit 5375c59

Browse files
committed
vine: correctly assign status on wall time exhaustion (#4384)
1 parent 48d474a commit 5375c59

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

taskvine/src/manager/vine_manager.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -675,7 +675,7 @@ static vine_result_code_t get_completion_result(struct vine_manager *q, struct v
675675
if (t->exit_code == RM_OVERFLOW) {
676676
task_status = VINE_RESULT_RESOURCE_EXHAUSTION;
677677
} else if (t->exit_code == RM_TIME_EXPIRE) {
678-
task_status = VINE_RESULT_MAX_END_TIME;
678+
task_status = VINE_RESULT_MAX_WALL_TIME;
679679
}
680680
}
681681

0 commit comments

Comments
 (0)