We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents db92e9d + 1592c47 commit 702c5bdCopy full SHA for 702c5bd
extended/src/test/java/io/kubernetes/client/extended/controller/DefaultControllerTest.java
@@ -151,6 +151,10 @@ void controllerKeepsWorkingWhenReconcilerAbortsWithRuntimeException()
151
AtomicBoolean resumed = new AtomicBoolean(false);
152
List<Request> finishedRequests = new ArrayList<>();
153
final Semaphore latch = new Semaphore(1);
154
+
155
+ // Grab the latch to block until an event is handled once.
156
+ latch.acquire();
157
158
DefaultController testController =
159
new DefaultController(
160
"",
0 commit comments