Skip to content

Commit

Permalink
Changes taskvine worker error message (#3973)
Browse files Browse the repository at this point in the history
* More precise error message

* spelling correction

---------

Co-authored-by: Elliot Kim <[email protected]>
  • Loading branch information
Elliotkim2 and Elliot Kim authored Nov 6, 2024
1 parent 017d556 commit 40f5d5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion taskvine/src/worker/vine_worker.c
Original file line number Diff line number Diff line change
Expand Up @@ -1716,7 +1716,7 @@ static void vine_worker_serve_manager(struct link *manager)
} else if (process_can_run_eventually(p, cache_manager, manager)) {
list_push_tail(procs_waiting, p);
} else {
debug(D_VINE, "No suitable library found for task %d", p->task->task_id);
debug(D_VINE, "task does not have necessary resources to run %d", p->task->task_id);
forsake_waiting_process(manager, p);
task_event++;
}
Expand Down

0 comments on commit 40f5d5e

Please sign in to comment.