mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-07 14:46:33 +02:00
* Lower the FuncTimeouts again. I can't reproduce any issues here.
This commit is contained in:
@@ -210,7 +210,7 @@ Pipeline::reportResults( QID qid, const QList< result_ptr >& results )
|
|||||||
}
|
}
|
||||||
else
|
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 );
|
setQIDState( q, rc );
|
||||||
new FuncTimeout( 100, boost::bind( &Pipeline::shunt, this, q ), this );
|
new FuncTimeout( 0, boost::bind( &Pipeline::shunt, this, q ), this );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@@ -301,7 +301,7 @@ ScriptResolver::doSetup( const QVariantMap& m )
|
|||||||
|
|
||||||
m_name = m.value( "name" ).toString();
|
m_name = m.value( "name" ).toString();
|
||||||
m_weight = m.value( "weight", 0 ).toUInt();
|
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;
|
qDebug() << "SCRIPT" << filePath() << "READY," << "name" << m_name << "weight" << m_weight << "timeout" << m_timeout;
|
||||||
|
|
||||||
m_ready = true;
|
m_ready = true;
|
||||||
|
Reference in New Issue
Block a user