From 9c9caa484bbb636978d0a697334939460f8751fb Mon Sep 17 00:00:00 2001 From: JinZhou5042 Date: Thu, 12 Dec 2024 01:02:39 -0500 Subject: [PATCH] lint --- taskvine/src/manager/vine_schedule.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/taskvine/src/manager/vine_schedule.c b/taskvine/src/manager/vine_schedule.c index b432b054ea..baeee1e670 100644 --- a/taskvine/src/manager/vine_schedule.c +++ b/taskvine/src/manager/vine_schedule.c @@ -136,8 +136,7 @@ int check_worker_have_enough_resources(struct vine_manager *q, struct vine_worke // it is concerning if the resource allocation fails if (!ok) { - debug(D_VINE, "Resource allocation for task %d on worker %s fails: %.0f, %.2f, %.2f, %ld, %ld, %ld", - t->task_id, w->hostname, tr->cores, tr->memory, tr->disk, cores_available, memory_available, disk_available); + debug(D_VINE, "Resource allocation for task %d on worker %s fails: %.0f, %.2f, %.2f, %ld, %ld, %ld", t->task_id, w->hostname, tr->cores, tr->memory, tr->disk, cores_available, memory_available, disk_available); } vine_resources_delete(worker_net_resources);