Skip to content

Commit

Permalink
interop-testing: fix atls test service race (#7897)
Browse files Browse the repository at this point in the history
  • Loading branch information
YifeiZhuang committed Feb 12, 2021
1 parent 7d9ee8f commit f60a072
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -53,7 +53,7 @@ public StreamObserver<HandshakerReq> doHandshake(
@Override
public void onNext(HandshakerReq value) {
log.log(Level.FINE, "request received: " + value);
synchronized (this) {
synchronized (AltsHandshakerTestService.this) {
switch (expectState) {
case CLIENT_INIT:
checkState(CLIENT_START.equals(value.getReqOneofCase()));
Expand Down

0 comments on commit f60a072

Please sign in to comment.