meejah

Results 289 comments of meejah

Hmm, actually perhaps I glossed over the original report too quickly -- that code is indeed using the `logging` library (that is *not* txaio). So what's happening is this: it...

Okay, I think the sane thing to do here is to *keep* the "hack" and document it. This basically makes the callback-value-chaining work the same way as Twisted. Do you...

Also, the recommendation in the docs should still be to always return the incoming arg (i.e. to **not** depend on mutating the return-values in your library).

The tough ones are `as_future` and `call_later` as they don't have a nice way to just add a new `loop=None` kwarg. We discussed a few options on IRC, and concluded:...

Worth noting: you can already use an explicit event-loop (or reactor), but only *one*. This feature is for users of asyncio to use multiple event loops at once. Twisted doesn't...

See https://github.com/crossbario/txaio/pull/98#issuecomment-292713470

I'm not 100% sure, but I *think* the "async def" and "await" is mostly-just syntax sugar on top of the slightly-older python3 thing of `@coroutine` and `yield from` so I...

Kind of the whole premise of `txaio` is "select things via imports" .. now, those are usually like the `autobahn.wamp.{twisted,asyncio}` method (the `.use_*()` calls are in there) but ... might...

I agree that the autobahn infrastructure itself should reset the delay after a successful connect. One workaround meanwhile could be to set `max_retry_delay` to something lower than the default (which...

I agree that "synchronizing folders" isn't _exactly_ a use-case of magic-wormhole (although that said, it does of course fall under the general umbrella of "send files places"). @piegamesde is certainly...