File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -150,7 +150,7 @@ void Committer :: SetTimeoutMs(const int iTimeoutMs)
150
150
151
151
void Committer :: SetMaxHoldThreads(const int iMaxHoldThreads)
152
152
{
153
- m_oWaitLock.SetMaxWaitLogCount (iMaxHoldThreads);
153
+ m_oWaitLock.SetMaxWaitLockCount (iMaxHoldThreads);
154
154
}
155
155
156
156
void Committer :: SetProposeWaitTimeThresholdMS(const int iWaitTimeThresholdMS)
Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ class TooMuchLockWatingTester : public Thread
174
174
TEST (WaitLock, TooMuchLockWating)
175
175
{
176
176
WaitLock oLock;
177
- oLock.SetMaxWaitLogCount (5 );
177
+ oLock.SetMaxWaitLockCount (5 );
178
178
int iRejectCount = 0 ;
179
179
180
180
std::vector<TooMuchLockWatingTester *> vecTester;
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ void WaitLock :: RefleshRejectRate(const int iUseTimeMs)
88
88
}
89
89
}
90
90
91
- void WaitLock :: SetMaxWaitLogCount (const int iMaxWaitLockCount)
91
+ void WaitLock :: SetMaxWaitLockCount (const int iMaxWaitLockCount)
92
92
{
93
93
m_iMaxWaitLockCount = iMaxWaitLockCount;
94
94
}
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ class WaitLock
38
38
39
39
void UnLock ();
40
40
41
- void SetMaxWaitLogCount (const int iMaxWaitLockCount);
41
+ void SetMaxWaitLockCount (const int iMaxWaitLockCount);
42
42
43
43
void SetLockWaitTimeThreshold (const int iLockWaitTimeThresholdMS);
44
44
You can’t perform that action at this time.
0 commit comments