From 4a5a8e5d15e2553815331fc348b1583d2a1ffe2c Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Fri, 22 Jul 2011 18:31:03 +0200 Subject: [PATCH] * Don't artificially slow down the Pipeline. --- src/libtomahawk/pipeline.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libtomahawk/pipeline.cpp b/src/libtomahawk/pipeline.cpp index 30ac98b1a..8a253ce3a 100644 --- a/src/libtomahawk/pipeline.cpp +++ b/src/libtomahawk/pipeline.cpp @@ -209,7 +209,7 @@ Pipeline::reportResults( QID qid, const QList< result_ptr >& results ) } else { - new FuncTimeout( 500, boost::bind( &Pipeline::timeoutShunt, this, q ), this ); + new FuncTimeout( 50, boost::bind( &Pipeline::timeoutShunt, this, q ), this ); } } @@ -246,7 +246,7 @@ Pipeline::shuntNext() } setQIDState( q, rc ); - new FuncTimeout( 500, boost::bind( &Pipeline::shunt, this, q ), this ); + new FuncTimeout( 50, boost::bind( &Pipeline::shunt, this, q ), this ); }