Doug Tangren

Results 432 comments of Doug Tangren

What happens when you remove the frontend part of the path after setting the working directory to frontend?

while cleaning out the pull queue and noticed this. I'd be happy to merge if you could sync with latest

I've started poking at the problem in a higher level crate for working specifically with dynamodb. I started working with the [futures-retry crate](https://crates.io/crates/futures-retry) which has a nice design. I took...

Here's some potential inspiration. I've got a working pr for a retry combinator in my dynamodb client extensions https://github.com/softprops/dynomite/pull/13/files#diff-87fd5b4191e0a13805a896f476011b68R101 Something of note I wouldn't base a retry on a single...

the retry support has been on a branch thats been through a number of changes I've tried a handful of different retry libraries from the crate.io ecosystem ( there are...

I don't expect too many opinions to be baked into rusoto. I consider rusoto my low level api with few opinions for building high level apis more more opinions on...

> It contains [data like](https://godoc.org/github.com/aws/aws-sdk-go-v2/aws#Request) the duration, operation and response headers, which are all pretty valuable for debugging code with. _That_ data would actually be useful. Separately from dynomite in...

@copumpkin yep. It's the one that was the simplest to adapt

I wasn't being very clear. I'm actually fine with having retries in rusoto. The kinds of opinions I meant where more flavored around adding framework dependencies. I see tower as...

I have a good sense for how this might be possible. I've done it in [a dynamodb extensions crate](https://github.com/softprops/dynomite/blob/master/dynomite/src/retry.rs). The concrete problems to be solved are dependent on * the...