dcapwell commented on code in PR #3408:
URL: https://github.com/apache/cassandra/pull/3408#discussion_r1669367320
##########
test/simulator/main/org/apache/cassandra/simulator/systems/InterceptorOfGlobalMethods.java:
##########
@@ -383,12 +404,12 @@ public static CountDownLatch newCountDownLatch(int count)
public static Semaphore newSemaphore(int count)
{
- return new Standard(count, false);
+ return methods.newSemaphore(count);
}
public static Semaphore newFairSemaphore(int count)
{
- return new Standard(count, true);
+ return methods.newSemaphore(count);
Review Comment:
```suggestion
return methods.newFairSemaphore(count);
```
this is doing `false`
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]