Skip to content

Commit

Permalink
slightly simplify submit message
Browse files Browse the repository at this point in the history
  • Loading branch information
mschubert committed Jan 10, 2025
1 parent b8e0742 commit d87f83f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion R/qsys_lsf.r
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ LSF = R6::R6Class("LSF",

if (verbose)
message("Submitting ", n_jobs, " worker jobs to ", class(self)[1],
" (ID: ", private$job_id, ") ...")
" as ", sQuote(private$job_id), " ...")

status = system("bsub", input=filled, ignore.stdout=TRUE)
if (status != 0)
Expand Down
2 changes: 1 addition & 1 deletion R/qsys_sge.r
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ SGE = R6::R6Class("SGE",

if (verbose)
message("Submitting ", n_jobs, " worker jobs to ", class(self)[1],
" (ID: ", private$job_id, ") ...")
" as ", sQuote(private$job_id), " ...")

private$qsub_stdout = system2("qsub", input=filled, stdout=TRUE)
status = attr(private$qsub_stdout, "status")
Expand Down
2 changes: 1 addition & 1 deletion R/qsys_slurm.r
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ SLURM = R6::R6Class("SLURM",

if (verbose)
message("Submitting ", n_jobs, " worker jobs to ", class(self)[1],
" (ID: ", private$job_id, ") ...")
" as ", sQuote(private$job_id), " ...")

status = system("sbatch", input=filled, ignore.stdout=TRUE)
if (status != 0)
Expand Down

0 comments on commit d87f83f

Please sign in to comment.