From 72028d8b0ed81de300dcc95861c917721eef2a10 Mon Sep 17 00:00:00 2001 From: Igor Wiedler Date: Mon, 24 Dec 2012 22:24:45 +0100 Subject: [PATCH] Fix misnamed variable --- ConnectionManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ConnectionManager.php b/ConnectionManager.php index 6047858..02bd2ed 100644 --- a/ConnectionManager.php +++ b/ConnectionManager.php @@ -39,7 +39,7 @@ public function getConnectionForAddress($address, $port) if (!$socket) { return new RejectedPromise(new \RuntimeException( - sprintf("connection to %s:%d failed: %s", $addresss, $port, $errstr), + sprintf("connection to %s:%d failed: %s", $address, $port, $errstr), $errno )); }