This commit is contained in:
2022-05-31 07:46:45 +08:00
parent b45666d9db
commit f195d001c6
-1
View File
@@ -87,7 +87,6 @@ class CoroutineClient extends ClientAbstracts
$this->client->execute($this->setParams($path, $data)); $this->client->execute($this->setParams($path, $data));
if ($this->client->statusCode < 1) { if ($this->client->statusCode < 1) {
$logger = Kiri::getDi()->get(LoggerInterface::class); $logger = Kiri::getDi()->get(LoggerInterface::class);
$errMsg = sprintf("%s://%s:%s/%s -> error: %s", $this->isSSL() ? "https" : "http", $errMsg = sprintf("%s://%s:%s/%s -> error: %s", $this->isSSL() ? "https" : "http",
$this->getHost(), $this->getPort(), $path, $this->client->errMsg); $this->getHost(), $this->getPort(), $path, $this->client->errMsg);