Lauri
Lauri
The problem was that disconnection was not detected. The solution: - Adding a heartbeat job - The trick is: the heartbeat needs its dedicated Redis connection
Sure, here it is: http://pastebin.com/hgE1bECD 5s is for development purposes, otherwise it can be longer as well.
All rufus jobs should be set to non-overlapping as well, because the 3s timeout limit allows requests to accumulate, thus using even more redis connections from the pool.
We can. I've since opening the issue changed the logic on my end completely. Instead of having a subscription for each /events stream, there is now a single subscription pushing...
Same issue here. provider_token disappears after the first refreshSession() call and makes it impossible to consume OAuth provider apis which are crucial in my app.
@ricokahler, how would one us `getDefaultDocumentNode` for that? Meaning to be able to open a document in split view by default?
@kangmingtay, is there a way to provide queryParams to google oauth provider though? Trying to pass `options.queryParams.access_type = "offline"` to the provider w/ `SignInWithOAuthCredentials`, but it doesn't seem to get...
Check this thread for a good solution to many woes around this. We also had inflated bundle sizes and broken tree shaking unknowingly. Changing to build-time generation (with HMR still)...
I can set on up later. But after more exploration, it seems like the best way to add routed modals would be to add them as children to the parent,...
After more testing, seems as if nesting works with, e.g. this structure: - companies (directory) - index.tsx - [id].tsx - [id] (directory) - tab1.tsx - tab2.tsx The only problem is...