提交 b22a064d 编写于 作者: K Kohsuke Kawaguchi

previous fix was incomplete

上级 5fdb33da
......@@ -70,7 +70,7 @@ interface ChannelRunner {
Thread t = new Thread("south bridge runner") {
public void run() {
try {
Channel s = new Channel("south", executor, Mode.BINARY, in2, out1, null, false, createCapability());
Channel s = new Channel("south", executor, Mode.BINARY, in2, out1, null, false, null, createCapability());
s.join();
System.out.println("south completed");
} catch (IOException e) {
......@@ -84,7 +84,7 @@ interface ChannelRunner {
};
t.start();
return new Channel("north", executor, Mode.BINARY, in1, out2, null, false, createCapability());
return new Channel("north", executor, Mode.BINARY, in1, out2, null, false, null, createCapability());
}
public void stop(Channel channel) throws Exception {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册