Owen Nelson

Results 47 comments of Owen Nelson

I ran into this recently and added a loop to poll the received requests from the mock server in my tests. Something like: ```rust let mut interval = tokio::time::interval(std::time::Duration::from_millis(10)); let...

The initial lift towards this was done in https://github.com/influxdata/flux/pull/4317 and there were a handful of follow-up PRs to add additional backend support for the problem cases encountered along the way....

I sort of imagine it'd be nice for clients to get all the options and be able to apply whatever weighting they see fit. Otherwise, I think we could calculate...

@sathishsms Are you seeing this in cloud also? The original report is years old, making this extra curious. I did a quick sanity check, running the map in the OP...

The deliberately ordered `extern crate` workaround worked for me on one project, but didn't on another. After a couple hours of disbelief, I shrugged my shoulders and just ran `cargo...

Ran into this today. Found that the first ref in my `render()` call didn't fire correctly, but others did. By trial and error, I eventually found that I could wrap...

Just wanted to post a "me too." Running into this issue this morning... not quite sure what to do about it. In order to get my app deployed, it looks...

OK, I have a workaround. 1. sync all apps that aren't south-controlled 2. migrate all apps that aren't easy_thumbnails 3. remove south from INSTALLED_APPS 4. syncdb again (to get the...

I'm mitigating by wrapping each place I call amqp in a thread spawn so that I can retry on error. Is there a better way to manage this?

I took a look at some of the docs for sled, and at this stage I'm not feeling comfortable adopting it for Estuary. The plan, for now, is to rely...