Skip to content

Commit

Permalink
Make client NodeCache thread safe (#2201)
Browse files Browse the repository at this point in the history
-Add a readwritelockslim to NodeCache functions which access the underlying NodeTable and TypeTree, to support multi threading
  • Loading branch information
mregen authored Jun 27, 2023
1 parent 010a839 commit 1dfda2b
Show file tree
Hide file tree
Showing 3 changed files with 515 additions and 67 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ private void DoSimulation(object state)
if (m_success > 0)
{
m_missed++;
Utils.LogInfo("Alarms: Missed Loop {1} Success {2}", m_missed, m_success);
Utils.LogInfo("Alarms: Missed Loop {0} Success {1}", m_missed, m_success);
}
}
}
Expand Down
Loading

0 comments on commit 1dfda2b

Please sign in to comment.