TJ
TJ
I had this issue with npm link (in a parcel app), the `npm link .../whatever/node_modules/react` doesn't seem to resolve it, works fine with non-hook components though
@seeden ahh I'm not using SSR, just a SPA w/ Parcel. I have a `ui` pkg internally for my own stuff and an app I'm working on, both have the...
@gaearon will do, should have time to dig in a bit more next week
this did the trick for the `npm link` stuff in Parcel: ``` "alias": { "react": "../ui/node_modules/react", "react-dom": "../ui/node_modules/react-dom" } ``` not sure if that's what it'll try to use for...
yup, and I agree, it's weird but the ability to give the message back to NSQ side-effect free is definitely something we'll use a lot. Since the client handles discards...
Another valid use-case: When we put redshift in maintenance mode or resize a cluster we need to requeue those messages with a delay, but this also shouldn't count towards it's...
it's a shared topic/channel ATM :(
FWIW I'm rewriting the entire thing in Go over the weekend haha, changing how we're handling things now that I understand the edge-cases better. My first case isn't relevant anymore...
cluster == redshift cluster in this case, they have mandatory weekly scheduled downtime. If the backoff logic was tailored to user logic that might work ok, if cluster A is...
Another nice thing you could use this for is to analyze what's in the queue without having any real effect on it. I guess you could FIN and PUB but...