Skip to content
Snippets Groups Projects
Commit 71627bd5 authored by Maël Madon's avatar Maël Madon
Browse files

fix: adapt users routine and DichoIntersubmit to add walltime

parent bebbb145
No related branches found
No related tags found
1 merge request!5New dynamic schedulers: fcfs and easy-bf
......@@ -73,7 +73,8 @@ void DichoIntersubmitTimeUser::jobs_to_submit(
job->profile = "100_sec";
job->submission_time = date;
job->nb_requested_resources = 1;
job->has_walltime = false;
job->has_walltime = true;
job->walltime = 3600;
last_job_submitted = job;
jobs.push_back(job);
......@@ -182,7 +183,8 @@ void RoutineGreedyUser::jobs_to_submit(
job->profile = "100_sec";
job->submission_time = date;
job->nb_requested_resources = 1;
job->has_walltime = false;
job->has_walltime = true;
job->walltime = 3600;
last_jobs_submitted.push_back(job);
jobs.push_back(job);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment