You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like Steve Clark can't remove this directive from the generated tapisjob.sh file:
#SBATCH --partition
The fix seems to simply add a new enum value to SchedulerHiddenOptionEnum:
PARTITION("PARTITION");
and then add another line of code to SystemsClient.java:
public static String getSchedulerHiddenOptionValue(SchedulerHiddenOptionEnum hiddenOptionEnum)
{
return switch (hiddenOptionEnum)
{
case MEM -> "--mem";
case PARTITION -> "--partition";
default -> "";
};
}
It's best for me not to make the change. Telling Steve Clark that we will be able to deliver a simple fix in early January will let him know that the solution is coming soon. Once delivered, he'll be able to add "PARTITION" to the SchedulerProfile hiddenOption, which will remove the partition directive from tapisjob.sh.
Rich
The text was updated successfully, but these errors were encountered:
From e-mail sent by Richard Cardone on 12/20/2024
The text was updated successfully, but these errors were encountered: