Re: [Rd] mccollect with NULL in R 3.6

2019-05-03 Thread Gergely Daróczi
On Fri, May 3, 2019 at 4:34 PM Tomas Kalibera wrote: > > On 5/3/19 3:04 PM, Gergely Daróczi wrote: > > On Thu, May 2, 2019 at 7:24 PM Tomas Kalibera > > wrote: > >> On 5/1/19 12:25 AM, Gergely Daróczi wrote: > >>> Dear All, > >>> > >>> I'm running into issues with calling mccollect on a list con

Re: [Rd] mccollect with NULL in R 3.6

2019-05-03 Thread Tomas Kalibera
On 5/3/19 3:04 PM, Gergely Daróczi wrote: On Thu, May 2, 2019 at 7:24 PM Tomas Kalibera wrote: On 5/1/19 12:25 AM, Gergely Daróczi wrote: Dear All, I'm running into issues with calling mccollect on a list containing NULL using R 3.6 (this used to work in 3.5.3): jobs <- lapply( list(NU

Re: [Rd] mccollect with NULL in R 3.6

2019-05-03 Thread Gergely Daróczi
On Thu, May 2, 2019 at 7:24 PM Tomas Kalibera wrote: > > On 5/1/19 12:25 AM, Gergely Daróczi wrote: > > Dear All, > > > > I'm running into issues with calling mccollect on a list containing NULL > > using R 3.6 (this used to work in 3.5.3): > > > > jobs <- lapply( > > list(NULL, 'foobar'), >

Re: [Rd] mccollect with NULL in R 3.6

2019-05-02 Thread Tomas Kalibera
On 5/1/19 12:25 AM, Gergely Daróczi wrote: Dear All, I'm running into issues with calling mccollect on a list containing NULL using R 3.6 (this used to work in 3.5.3): jobs <- lapply( list(NULL, 'foobar'), function(x) mcparallel(identity(x))) mccollect(jobs, wait = FALSE, timeout = 0)

[Rd] mccollect with NULL in R 3.6

2019-04-30 Thread Gergely Daróczi
Dear All, I'm running into issues with calling mccollect on a list containing NULL using R 3.6 (this used to work in 3.5.3): jobs <- lapply( list(NULL, 'foobar'), function(x) mcparallel(identity(x))) mccollect(jobs, wait = FALSE, timeout = 0) #> Error in names(res) <- pnames[match(s, pids