You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
lock (Server.DiagnosticsLock)<-- lock (ServerInternalData.m_dataLock)
{
// check if the server is running.
if (!Server.IsRunning)
{
return;
}
// get the LocaleIdArray property.
BaseVariableState localeArray = Server.DiagnosticsNodeManager.Find(<-- lock (CustomNodeManager2.m_lock)
The method DiagnosticsNodeManager.DoSample may have locked CustomNodeManager2.m_lock
before to lock ServerInternalData.m_dataLock, so the solution is to remove the first line above.
The text was updated successfully, but these errors were encountered:
In ComClientNodeManager.cs
The method DiagnosticsNodeManager.DoSample may have locked CustomNodeManager2.m_lock
before to lock ServerInternalData.m_dataLock, so the solution is to remove the first line above.
The text was updated successfully, but these errors were encountered: