Open chagen19 opened 5 years ago
We're experiencing this as well. It would be great to get a fix for this
Is there anything that prevents #18 to be merged?
I would love it dearly if #18 could be merged as well!
Fantastic. Is it possible to get that published to that packaged and published to NPM?
I should be able to get it published this week, hopefully by tomorrow.
Hi @austinlparker, would you be able to publish this to NPM sometime soon? Looking forward to use this fix.
Hey @austinlparker, sorry to bump this thread again - but is there any chance of a release of this? As the project is compiled it's not possible to simply pull this in via the github commit sha.
it seems @rnburn is the owner of NPM package? https://www.npmjs.com/package/express-opentracing
We are getting the error "You can only call finish() on a span once." frequently and it seems to be related to the event handlers that are registered in middleware.js:
res.on('close', finishSpan);
res.on('finish', finishSpan);
According to the issue below, starting in Node 10 there was a change to how close is being called. It sounds like
res.on('close', finishSpan)
needs to be changed tores.on('abort', finishSpan);
to resolve this issue.https://github.com/glebec/volleyball/issues/28