We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hell there,
Regarding rethinkdbdash, there is the
queueing: when a query is added/removed from the queue (queries waiting for a connection), the size of the queue is provided
I receive the "queueing" event on the pool but the value is always undefined !
pool.on('queueing', x => console.log(x))
always give me undefined.
Is that normal ?
The text was updated successfully, but these errors were encountered:
Is that correct ?
this.emit('queueing',this.getPoolNumOfRunningQueries()); .... getPoolNumOfRunningQueries() { return this.getHealthyServerPools().reduce((a, next) => a + next.getNumOfRunningQueries(),0); }
in master-pool.js
Sorry, something went wrong.
There is no argument provided in the code now for that event, but I see no issue in using the public method to retrieve it from method.
No branches or pull requests
Hell there,
Regarding rethinkdbdash, there is the
I receive the "queueing" event on the pool but the value is always undefined !
always give me undefined.
Is that normal ?
The text was updated successfully, but these errors were encountered: