Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cueball

Package Overview
Dependencies
Maintainers
1
Versions
71
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cueball - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

12

lib/pool.js

@@ -608,5 +608,15 @@ /*

/* If there are idle connections sitting around, take one. */
if (this.p_idleq.length > 0) {
while (this.p_idleq.length > 0) {
var fsm = this.p_idleq.shift();
delete (fsm.p_idleq_node);
/*
* Since 'stateChanged' is emitted async from mooremachine,
* things may be on the idle queue still but not actually idle.
* If we find one, just rip it off the queue (which we've
* already done) and try the next thing. The state mgmt
* callback from addConnection will cope.
*/
if (!fsm.isInState('idle'))
continue;
fsm.claim(e.stack, function (err, hdl, conn) {

@@ -613,0 +623,0 @@ if (err) {

2

package.json
{
"name": "cueball",
"version": "1.0.1",
"version": "1.0.2",
"description": "",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc