We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
job_submit.lua
Job submit lua script expects to extract user name from username field of job_desc structure: https://github.com/edf-hpc/slurm-llnl-misc-plugins/blob/master/job_submit/job_submit.lua#L252
username
It is used in several log messages and in the test for WCKEY_USER_EXCEPTION_FILE optional feature.
WCKEY_USER_EXCEPTION_FILE
However, Slurm exports the username in user_name field (with an underscore) of this structure: https://github.com/SchedMD/slurm/blob/master/src/plugins/job_submit/lua/job_submit_lua.c#L713
user_name
As a result, job_desc.username is always nil in Job submit Lua script logic and log messages.
job_desc.username
The text was updated successfully, but these errors were encountered:
Will be fixed when commit 37cbd26 is packaged in a release.
Sorry, something went wrong.
No branches or pull requests
Job submit lua script expects to extract user name from
username
field of job_desc structure:https://github.com/edf-hpc/slurm-llnl-misc-plugins/blob/master/job_submit/job_submit.lua#L252
It is used in several log messages and in the test for
WCKEY_USER_EXCEPTION_FILE
optional feature.However, Slurm exports the username in
user_name
field (with an underscore) of this structure:https://github.com/SchedMD/slurm/blob/master/src/plugins/job_submit/lua/job_submit_lua.c#L713
As a result,
job_desc.username
is always nil in Job submit Lua script logic and log messages.The text was updated successfully, but these errors were encountered: