fmdelvalle
fmdelvalle
I found that the Subscriber and RemoteExecutor open a RespSocket in the connect() promise but fail to close it, taking one open file for the life of the process. In...
Curl.php lines 94 and following should be replaced with: if (!isset($this->loop_timer)) { $this->loop_timer = $this->loop->addPeriodicTimer($this->timeout, function() { $this->run(); if (!($this->client->run() || $this->client->has())) { **$this->loop->cancelTimer($this->loop_timer);** $this->loop_timer = null; } }); }
Selectize.php fails in line 45 (Yii::$container->set(SelectizeAsset::class,...) because Yii is not part of yii2mod\selectize namespace and has not been included with an 'use' statement. Should either add a backslash before, or...