-
Notifications
You must be signed in to change notification settings - Fork 192
New issue
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
verdi computer test does not query jobs by user #2977
Comments
Hi @ltalirz ,
I inspected the daemon log and found that it tries to get the job information but it fails:
The reason is that
looks like:
I also did test the timings of |
@pzarabadip Thanks for the update!
Interesting... which version of pbspro are you running?
Ok, I guess this setup is not very common and we've never encountered it before. |
@ltalirz I am using the |
@pzarabadip Ok, it looks like v14.1 already has the Is it that the open source version has it while the closed-source version doesn't? |
@ltalirz Indeed, both versions have the |
@pzarabadip ran into an issue where
verdi computer test
would hangThe reason is that
verdi computer test
runsqstat -f
on this computer, which simply produces enormous output.qstat -f -u<username>
works just fine.We should make sure that the username is passed here:
https://github.com/aiidateam/aiida_core/blob/521b77824c0e066f5ba0f58045b98f7a0269b9ef/aiida/cmdline/commands/cmd_computer.py#L65
For comparison, see what is done here;
https://github.com/aiidateam/aiida_core/blob/521b77824c0e066f5ba0f58045b98f7a0269b9ef/aiida/engine/processes/calcjobs/manager.py#L86-L91
The text was updated successfully, but these errors were encountered: