Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

vine: fix local-temp scheduling failure #3972

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions taskvine/src/manager/vine_manager.c
Original file line number Diff line number Diff line change
Expand Up @@ -3252,6 +3252,13 @@ static int vine_manager_check_inputs_available(struct vine_manager *q, struct vi
vine_manager_consider_recovery_task(q, f, f->recovery_task);
all_available = 0;
}
} // this is probably a local-temp
else if (f->flags && VINE_UNLINK_WHEN_DONE) {
struct stat info;
int result = lstat(f->source, &info);
if (result != 0) {
all_available = 0;
}
}
}
return all_available;
Expand Down
Loading