Potential fix for https://jira.lindenlab.com/jira/browse/DEV-41702
and https://jira.lindenlab.com/jira/browse/DEV-38579. Both relate to media not working properly and were likely caused by an uninitialized heartbeat timeout.master
parent
e84ff39e4c
commit
b7d446a3e9
|
|
@ -55,6 +55,11 @@ LLPluginProcessParent::LLPluginProcessParent(LLPluginProcessParentOwner *owner)
|
|||
mBoundPort = 0;
|
||||
mState = STATE_UNINITIALIZED;
|
||||
mDisableTimeout = false;
|
||||
|
||||
// initialize timer - heartbeat test (mHeartbeat.hasExpired())
|
||||
// can sometimes return true immediately otherwise and plugins
|
||||
// fail immediately because it looks like
|
||||
mHeartbeat.setTimerExpirySec(PLUGIN_LOCKED_UP_SECONDS);
|
||||
}
|
||||
|
||||
LLPluginProcessParent::~LLPluginProcessParent()
|
||||
|
|
|
|||
Loading…
Reference in New Issue