goodboy

Results 740 comments of goodboy

i guess the easiest is to just test on the test pypi server, heh, Will try to get to this today but either way i think the last (2?) alphas...

Also added a couple [todo lists in the module](https://github.com/goodboy/tractor/blob/master/tractor/msg.py#L36) for any aspiring *messageers* to have a go at 😉

#287 and #290 are related to this and would likely deprecate and remove this.

A name came to me this morn: - `async with tractor.open_task_pool() as cluster:` or `.open_actor_task_pool()`, **or** we just do a simple `.open_actor_cluster() as cluster:` ? - provide a `Cluster.run_in_actor()`?

Ahah, so the (main) issue with this solution is that we don't get all errors from all child actors to be accumulated as previous since some actors may get cancelled...

Oh yeah ignore the `mp` runs there 😂 Code hasn't been changed for that backend!

@didimelli ahah! Nice catch. This does appear to be a bug todo with the nursery reaping. You are correct, when using `run_in_actor()` the nursery should reap portals (your `t1` and...

As some tips for your example (and how I figured out this was indeed a bug): - you probably want to reverse the `name=` for each `.run_in_actor()` call 😉 (or...

Huh i just tried on the last 2 alphas and the same issue still seems to exist!? So it's quite possible this has been a long lived bug. I will...

@didimelli yah i found the root cause and put up the patch in #288. We need a test and hopefully this change won't blow up CI 😂