Skip to content
Snippets Groups Projects
Commit 20f74d61 authored by Janne Blomqvist's avatar Janne Blomqvist Committed by David Bigagli
Browse files

Enlarge the jobid field to 18 chars in squeue output.

parent 48377b6b
No related branches found
No related tags found
No related merge requests found
......@@ -53,10 +53,10 @@ assigned non-zero weights are
.RS
.TP 15
\fIdefault\fR
"%.7i %.10Y %.10A %.10F %.10J %.10P %.10Q"
"%.15i %.10Y %.10A %.10F %.10J %.10P %.10Q"
.TP
\fI\-l, \-\-long\fR
"%.7i %.8u %.10Y %.10A %.10F %.10J %.10P %.10Q %.6N"
"%.15i %.8u %.10Y %.10A %.10F %.10J %.10P %.10Q %.6N"
.RE
.IP
......
......@@ -911,7 +911,7 @@ name then within a given partition by increasing step id).
Report the expected start time and resources to be allocated for pending jobs
in order of increasing start time.
This is equivalent to the following options:
\fB\-\-format="%.7i %.9P %.8j %.8u %.2t %.19S %.6D %20Y %R"\fR,
\fB\-\-format="%.18i %.9P %.8j %.8u %.2t %.19S %.6D %20Y %R"\fR,
\fB\-\-sort=S\fR and \fB\-\-states=PENDING\fR.
Any of these options may be explicitly changed as desired by
combining the \fB\-\-start\fR option with other option values
......
......@@ -421,7 +421,7 @@ parse_command_line( int argc, char* argv[] )
if ( params.start_flag && !params.step_flag ) {
/* Set more defaults */
if (params.format == NULL)
params.format = xstrdup("%.7i %.9P %.8j %.8u %.2t %.19S %.6D %20Y %R");
params.format = xstrdup("%.18i %.9P %.8j %.8u %.2t %.19S %.6D %20Y %R");
if (params.sort == NULL)
params.sort = xstrdup("S");
if (params.states == NULL) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment