Skip to content

Commit e4e858e

Browse files
committed
remove unneeded (and wrong on Galileo) partition specification
1 parent 5981937 commit e4e858e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

server/rcm_server_slurm.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,8 @@ def get_queue(self,testJobScriptDict=None):
150150
def get_jobs(self, U=False):
151151
logger = logging.getLogger("basic")
152152
logger.debug("get_jobs")
153-
(retval,stdout,stderr)=self.prex(['squeue', '-o %i#%t#%j#%a','-h','-p','bdw_usr_dbg','-u',self.username])
153+
#bad.. why specify the queue?"(retval,stdout,stderr)=self.prex(['squeue', '-o %i#%t#%j#%a','-h','-p','bdw_usr_dbg','-u',self.username])
154+
(retval,stdout,stderr)=self.prex(['squeue', '-o %i#%t#%j#%a','-h','-u',self.username])
154155
logger.debug("squeue output: "+str(retval)+" \n"+str(stdout)+" \n"+str(stderr))
155156

156157
check_rcm_job_string = self.username+"-slurm"

0 commit comments

Comments
 (0)