Skip to content

Commit

Permalink
xds: fix Executor.execute to actually run the Runnable passed. Becaus…
Browse files Browse the repository at this point in the history
…e of the netty fix to actually use

the executor passed to the SslHandler we now need the Executor to execute.
  • Loading branch information
sanjaypujare committed Dec 23, 2021
1 parent 2b75e45 commit 2613ed1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion netty/src/test/java/io/grpc/netty/NettyTestUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@ public Executor getObject() {
inUse = true;
return new Executor() {
@Override
public void execute(Runnable var1) { }
public void execute(Runnable var1) {
var1.run();
}
};
}

Expand Down

0 comments on commit 2613ed1

Please sign in to comment.