Skip to content

Commit

Permalink
check for created files
Browse files Browse the repository at this point in the history
  • Loading branch information
JinZhou5042 committed Nov 26, 2024
1 parent 4e2f6fd commit c43ba58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion taskvine/src/manager/vine_manager.c
Original file line number Diff line number Diff line change
Expand Up @@ -3256,7 +3256,7 @@ static int vine_manager_check_inputs_available(struct vine_manager *q, struct vi
if (f->type == VINE_FILE) {
if (f->state == VINE_FILE_STATE_PENDING) {
all_available = 0;
} else if (vine_file_has_changed(f)) {
} else if (f->state == VINE_FILE_STATE_CREATED && vine_file_has_changed(f)) {
/* this only happens if the input file is missing in the staging directory */
vine_manager_consider_recovery_task(q, f, f->recovery_task);
all_available = 0;
Expand Down

0 comments on commit c43ba58

Please sign in to comment.