Justin Ross

Results 13 comments of Justin Ross

Got it. To confirm: ``` requestCache: { maxTtl: 10 * 60, // 10min, will respond for 10min with the result in cache (revalidated every 10min) maxTtlIfError: 30 * 60, //...

Agreed. It could be better worded. It sounds like the sentiment is generally true though, that the cached value can be returned for up to 40 minutes. This seems necessary...

I came here to suggest the same. It's worth noting, if a blocker for getting a typedef together for `Event` and `Event.type` is around making it exhaustive, it would likely...

This seems to also be referenced by #758

Also worth noting, at a minimum, it would be helpful to add an `[index: string]: any` to `Data.Object` interface. At present, you receive an error if you attempt to check...

Any resolution on this since? I see in your PR that there has been some back and forth on whether to solve monkey-patching or diagnostic channels approach first. Are we...

I can't recall exactly what we did. My guess is that we ended up abandoning segment. If I'm recalling correctly, your proposal wouldn't work because segment actually rewrote the heap...

I was using Heap at the time, and I was trying out Segment. I believe I resolved to abandon Segment and just keep using Heap as I had been. I'm...

Thanks for the detailed explanation @hinok ! It seems like it could be a functional workaround. Ideally, Segment would just stop mutating other libs, so I'm going to leave this...

Thanks for the quick response. I see the challenge of balancing against keeping connections alive, prioritizing sending requests through as few connections as possible to ensure maximum reuse. I don't...