aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrowanbeentje <rowan@beent.je>2012-10-20 13:06:10 +0000
committerrowanbeentje <rowan@beent.je>2012-10-20 13:06:10 +0000
commitef3ff14707741bef3a1968a4d7a1845b5d87d4f1 (patch)
treea022fa8284bb015be63179d4f065506390d20d5b
parent5f108f4f89113af9ed6ba7a6c95699598f1d404b (diff)
downloadsequelpro-ef3ff14707741bef3a1968a4d7a1845b5d87d4f1.tar.gz
sequelpro-ef3ff14707741bef3a1968a4d7a1845b5d87d4f1.tar.bz2
sequelpro-ef3ff14707741bef3a1968a4d7a1845b5d87d4f1.zip
- Fix an incorrect selector method after recent thread naming work
-rw-r--r--Frameworks/SPMySQLFramework/Source/SPMySQLConnection Categories/Delegate & Proxy.m2
1 files changed, 1 insertions, 1 deletions
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];