Justin Reynolds
Justin Reynolds
I am currently using 2.0.6. I've been using the proxy with express without issue, but recently switched to restify, and get lots of log messages about long-running requests / next()...
Hey, yes, sorry, I log the inflight requests myself. Here is an example building on yours to show the leak ``` // main.mjs import { createServer } from 'restify'; //...
`server.inflightRequests()` is built into restify to show how many requests are inflight, i.e. not completed yet (`next()` was never called) http://restify.com/docs/server-api/#inflightrequests There is no error, the number of inflight requests...
Yeah, the fact that next() is different across different server implementations makes this difficult. I do not have any ideas, unfortunately. I even forked the library and tried to implement...
How we have it setup, if someone has deep linked into a view of vizceral, vizceral tells the container which object is highlighted. We have a very tight coupling of...
Apologies for being unclear. In our running vizceral app, you can navigate to `vizceral/nodename?highlighted=foo` to highlight an object and show the details panel for that object. If we close the...
Correct, that is the current behavior. I could see why this would not be desired and would definitely welcome a PR to change the behavior.
This would be a great feature! It would definitely be something useful. You would have to make it a parameter to the layout functions and try to figure it out...
There is not. It should be fairly(?) simple to implement either a new layout function or parameterize the existing one to switch direction.
There is not currently a way, but PRs are welcome.