From ef3ff14707741bef3a1968a4d7a1845b5d87d4f1 Mon Sep 17 00:00:00 2001 From: rowanbeentje Date: Sat, 20 Oct 2012 13:06:10 +0000 Subject: - Fix an incorrect selector method after recent thread naming work --- .../Source/SPMySQLConnection Categories/Delegate & Proxy.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m index 9f6d8dff..b74a3b9c 100644 --- a/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m @@ -119,7 +119,7 @@ // If used within the last fifteen minutes, trigger a background/single reconnection attempt } else if (_elapsedSecondsSinceAbsoluteTime(lastConnectionUsedTime) < 60 * 15) { - reconnectionThread = [[[NSThread alloc] initWithTarget:self selector:@selector(_reconnectAfterBackgroundConnectionLoss:) object:nil] autorelease]; + reconnectionThread = [[[NSThread alloc] initWithTarget:self selector:@selector(_reconnectAfterBackgroundConnectionLoss) object:nil] autorelease]; [reconnectionThread setName:@"SPMySQL reconnection thread (limited)"]; [reconnectionThread start]; -- cgit v1.2.3