-
Notifications
You must be signed in to change notification settings - Fork 23
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
New "resubmit" mechanism #649
Changes from 1 commit
7d4bce5
eb8ed2f
86c8b05
d69325b
81f768f
41cb62a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ use crate::client::output::common::{ | |
}; | ||
use crate::client::output::outputs::{Output, OutputStream}; | ||
use crate::client::status::{job_status, Status}; | ||
use crate::common::arraydef::IntArray; | ||
use crate::server::autoalloc::Allocation; | ||
use crate::server::job::JobTaskInfo; | ||
use crate::stream::reader::logfile::Summary; | ||
|
@@ -130,6 +131,8 @@ impl Output for Quiet { | |
) { | ||
} | ||
|
||
fn print_task_ids(&self, _job_task_ids: Vec<(JobId, IntArray)>) {} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think that here we could write one ID per line? This mode should really be renamed from quiet to something like There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I have changed it. if there are 2 or more jobs, it prints also job ids. |
||
|
||
// Log | ||
fn print_summary(&self, _filename: &Path, _summary: Summary) {} | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any particular reason why
Set
was switched toBTreeSet
and why theVec
was changed to a slice?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because we need to random removes & sorted iterator for creating IntArray.