1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-20 07:52:30 +02:00

* Lower the FuncTimeouts again. I can't reproduce any issues here.

This commit is contained in:
Christian Muehlhaeuser 2011-08-01 09:38:49 +02:00
parent 2f7d13588f
commit cf56819b0c
2 changed files with 3 additions and 3 deletions

View File

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

View File

@ -301,7 +301,7 @@ ScriptResolver::doSetup( const QVariantMap& m )
m_name = m.value( "name" ).toString();
m_weight = m.value( "weight", 0 ).toUInt();
m_timeout = m.value( "timeout", 25 ).toUInt() * 1000;
m_timeout = m.value( "timeout", 5 ).toUInt() * 1000;
qDebug() << "SCRIPT" << filePath() << "READY," << "name" << m_name << "weight" << m_weight << "timeout" << m_timeout;
m_ready = true;