This commit is contained in:
2021-04-23 18:42:59 +08:00
parent 8ea24eaf45
commit 0323f84c15
+1 -2
View File
@@ -249,8 +249,7 @@ abstract class Pool extends Component
if (!isset($this->hasCreate[$name])) {
$this->hasCreate[$name] = 0;
}
var_dump($this->hasCreate[$name] . '->' . $this->max);
return $this->hasCreate[$name] >= $this->max;
return $this->hasCreate[$name] < $this->max;
}