Jason Mobarak

Results 26 comments of Jason Mobarak

We're having issues with this too while using s3. Using the workarounds here makes things better, but doesn't completely eliminate the problem. We've also tried just creating a new client...

@jatsrt Thanks for the insight! We're considering implementing client side retries to deal with the occasional error as well.

FWIW this is how we've implemented retries: [retry.rs](https://github.com/swift-nav/esthri/blob/f40412dee66ec636de96191edc32bcf89aa779c7/src/esthri/src/retry.rs) -- example usage: [lib.rs line 199](https://github.com/swift-nav/esthri/blob/f40412dee66ec636de96191edc32bcf89aa779c7/src/esthri/src/lib.rs#L199). EDIT: updated links

> @silverjam Jason, that's a neat implementation. Did you base it on some common pattern? I wonder if I could read a bit more about it somewhere. We pretty much...

> In your `tox.ini` make sure you use `--cov-append` and use an explicit `clean` step, as documented in the pytest-cov examples. I believe this is the documentation that's being referred...

@mfelsche attempted a port here: https://github.com/async-rs/async-tls/pull/47 -- not everything compiles and the tests don't pass... but a start I suppose

This works for our use case as well

The beta version works fine for me (after enabling accessibility access)! Note apps like Amazon Music seem to also use accessibility to control what the play button does now. Other...

@bar9 at the bottom of the page here: https://api.slack.com/rtm#classic -- you can create a "classic" slack app, which will allow you to create a bot user which will contain a...

> @xobs `TcpStream` by default is blocking actually AFAIK serial port behavior on windows is a bit different in a sense that it is always tries to fill buffer that...