From af9d2d388c8ad95d019cb5b11f1bc8bfd9852ee9 Mon Sep 17 00:00:00 2001 From: Alejandro Wainzinger Date: Wed, 20 Apr 2011 12:58:59 -0400 Subject: [PATCH] Lower the amount of time PortFwdThread waits until destruction. Greatly reduces shutdown time in the case where it can't communicate properly. --- src/libtomahawk/network/portfwdthread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libtomahawk/network/portfwdthread.cpp b/src/libtomahawk/network/portfwdthread.cpp index 36cdd8088..b2af82f17 100644 --- a/src/libtomahawk/network/portfwdthread.cpp +++ b/src/libtomahawk/network/portfwdthread.cpp @@ -41,7 +41,7 @@ PortFwdThread::~PortFwdThread() { qDebug() << Q_FUNC_INFO << "waiting for event loop to finish..."; quit(); - wait( 10000 ); + wait( 1000 ); delete m_portfwd; }