Skip to content

Commit 7644f49

Browse files
committed
Fix amphp#84
1 parent d9d8f79 commit 7644f49

File tree

1 file changed

+18
-10
lines changed

1 file changed

+18
-10
lines changed

src/Internal/Processor.php

+18-10
Original file line numberDiff line numberDiff line change
@@ -658,19 +658,27 @@ private function handleError($packet)
658658
$this->connInfo->errorMsg = \substr($packet, $off);
659659

660660
$this->parseCallback = null;
661-
if ($this->connectionState === self::READY) {
662-
// normal error
663-
if (($deferred = $this->result) || ($deferred = $this->getDeferred())) {
664-
$deferred->fail(new QueryError("MySQL error ({$this->connInfo->errorCode}): {$this->connInfo->errorState} {$this->connInfo->errorMsg}", $this->query));
665-
}
666-
$this->result = null;
667-
$this->query = null;
668-
$this->ready();
669-
} elseif ($this->connectionState < self::READY) {
661+
662+
if ($this->connectionState < self::READY) {
670663
// connection failure
671664
$this->close();
672-
$this->getDeferred()->fail(new InitializationException("Could not connect to {$this->config->connectionString()}: {$this->connInfo->errorState} {$this->connInfo->errorMsg}"));
665+
$this->getDeferred()->fail(new InitializationException("Could not connect to {$this->config->getConnectionString()}: {$this->connInfo->errorState} {$this->connInfo->errorMsg}"));
666+
return;
673667
}
668+
669+
if ($this->result === null && empty($this->deferreds)) {
670+
// connection killed without pending query or active result
671+
$this->close();
672+
return;
673+
}
674+
675+
$deferred = $this->result ?? $this->getDeferred();
676+
677+
// normal error
678+
$deferred->fail(new QueryError("MySQL error ({$this->connInfo->errorCode}): {$this->connInfo->errorState} {$this->connInfo->errorMsg}", $this->query));
679+
$this->result = null;
680+
$this->query = null;
681+
$this->ready();
674682
}
675683

676684
/** @see 14.1.3.1 OK-Packet */

0 commit comments

Comments
 (0)