[torquedev] [Bug 97] New: qselect support for -s C
bugzilla-daemon at supercluster.org
bugzilla-daemon at supercluster.org
Fri Nov 5 12:33:04 MDT 2010
http://www.clusterresources.com/bugzilla/show_bug.cgi?id=97
Summary: qselect support for -s C
Product: TORQUE
Version: 2.4.x
Platform: All
OS/Version: Linux
Status: NEW
Severity: enhancement
Priority: P5
Component: clients
AssignedTo: glen.beane at gmail.com
ReportedBy: ezell at nics.utk.edu
CC: torquedev at supercluster.org
Estimated Hours: 0.0
qselect does not support querying for jobs in the Completed state. This simple
patch against SVN trunk allows that.
--- trunk/src/cmds/qselect.c.orig 2010-11-05 14:16:32.000000000 -0400
+++ trunk/src/cmds/qselect.c 2010-11-05 14:31:03.000000000 -0400
@@ -518,8 +518,9 @@ int main(
while (*pc)
{
- if (*pc != 'E' && *pc != 'H' && *pc != 'Q' &&
- *pc != 'R' && *pc != 'T' && *pc != 'W')
+ if (*pc != 'C' && *pc != 'E' && *pc != 'H' &&
+ *pc != 'Q' && *pc != 'R' && *pc != 'T' &&
+ *pc != 'W')
{
fprintf(stderr, "qselect: illegal -s value\n");
errflg++;
--
Configure bugmail: http://www.clusterresources.com/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
More information about the torquedev
mailing list