[FLINK-6509] [tests] Perform TestingListener#waitForNewLeader under lock

Performin TestingListener#waitForNewLeader under the lock which is also hold when
updating the leader information makes sure that leader changes won't go unnoticed.
This led before to failing test cases due to timeouts.

This closes #3853.
上级 54ceec16
......@@ -51,11 +51,11 @@ public class TestingListener implements LeaderRetrievalListener {
long start = System.currentTimeMillis();
long curTimeout;
synchronized (lock) {
while (
exception == null &&
(address == null || address.equals(oldAddress)) &&
(curTimeout = timeout - System.currentTimeMillis() + start) > 0) {
synchronized (lock) {
try {
lock.wait(curTimeout);
} catch (InterruptedException e) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册