diff --git a/CHANGES.md b/CHANGES.md index 3cd4743c..bab37ff7 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,8 @@ +* 0.8.2 + * Fix a bug where never-started jobs are not cleaned up + * Fix a bug where tests leave processes if port binding fails (#60) + * Multicore no longer prints worker debug messages (#61) + * 0.8.1 * Fix performance issues for a high number of function calls (#56) * Fix bug where multicore workers were not shut down properly (#58) diff --git a/DESCRIPTION b/DESCRIPTION index b8d615c1..d986b158 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: clustermq Title: Evaluate Function Calls on HPC Schedulers (LSF, SGE, SLURM) -Version: 0.8.1 +Version: 0.8.2 Author: Michael Schubert Maintainer: Michael Schubert Description: Evaluate arbitrary function calls using workers on HPC schedulers diff --git a/man/worker.Rd b/man/worker.Rd index 678ccc80..4cdd6929 100644 --- a/man/worker.Rd +++ b/man/worker.Rd @@ -4,7 +4,7 @@ \alias{worker} \title{R worker submitted as cluster job} \usage{ -worker(master, timeout = 600, ...) +worker(master, timeout = 600, ..., verbose = TRUE) } \arguments{ \item{master}{The master address (tcp://ip:port)} @@ -12,6 +12,8 @@ worker(master, timeout = 600, ...) \item{timeout}{Time until worker shuts down without hearing from master} \item{...}{Catch-all to not break older template values (ignored)} + +\item{verbose}{Whether to print debug messages} } \description{ Do not call this manually, the master will do that