You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd like to add a custom route to the labelerServer.app instance such that I can respond to a webhook request to regenerate my label assignments, but whenever I try to add a route to the app, it just fails to start the labelerServer.
I've tried this as the most basic example
labelerServer.app.get("/my-custom-route", async (_req, res) => {
// Logic should go here
return res.send();
});
// Start the label server listener here
Should this be able to work? And am I doing something wrong?
The text was updated successfully, but these errors were encountered:
Hmm, looks like a timeout resolves this. I guess the websocket connection needs to come first and then the registrations, but given I initialize the route straight after creating the labeler server instance it's not finished waiting on the promise so I seem to need to wait a few ms before I can register routes
I'd like to add a custom route to the
labelerServer.app
instance such that I can respond to a webhook request to regenerate my label assignments, but whenever I try to add a route to the app, it just fails to start the labelerServer.I've tried this as the most basic example
Should this be able to work? And am I doing something wrong?
The text was updated successfully, but these errors were encountered: