1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-02-24 11:53:09 +01:00

Slow down pipeline a bit to fix spotify resolver; need to talk to chris about why the timeout change broke it.

This commit is contained in:
Leo Franchi 2011-07-26 09:25:24 -04:00
parent 0380379634
commit 9fdddbf04e

View File

@ -210,7 +210,7 @@ Pipeline::reportResults( QID qid, const QList< result_ptr >& results )
}
else
{
new FuncTimeout( 50, boost::bind( &Pipeline::timeoutShunt, this, q ), this );
new FuncTimeout( 100, boost::bind( &Pipeline::timeoutShunt, this, q ), this );
}
}
@ -247,7 +247,7 @@ Pipeline::shuntNext()
}
setQIDState( q, rc );
new FuncTimeout( 50, boost::bind( &Pipeline::shunt, this, q ), this );
new FuncTimeout( 100, boost::bind( &Pipeline::shunt, this, q ), this );
}