Skip to content

Commit

Permalink
ns
Browse files Browse the repository at this point in the history
  • Loading branch information
belaban committed Oct 30, 2006
1 parent d2c4160 commit e3f8089
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
4 changes: 2 additions & 2 deletions doc/tests/ManualTests.txt
@@ -1,4 +1,4 @@
$Id: ManualTests.txt,v 1.8 2006/10/30 11:43:11 belaban Exp $
$Id: ManualTests.txt,v 1.9 2006/10/30 12:28:35 belaban Exp $


Group Membership Service (GMS) Protocol
Expand Down Expand Up @@ -236,6 +236,6 @@ Test 21

Test 22
-------
- Run Test 4 with DrawMultiplexer with "tcp" stack
- Run Test 16 with DrawMultiplexer with "tcp" stack


7 changes: 2 additions & 5 deletions src/org/jgroups/demos/DrawMultiplexer.java
Expand Up @@ -5,7 +5,7 @@

/**
* @author Bela Ban
* @version $Id: DrawMultiplexer.java,v 1.5 2006/10/30 12:28:14 belaban Exp $
* @version $Id: DrawMultiplexer.java,v 1.6 2006/10/30 12:29:11 belaban Exp $
*/
public class DrawMultiplexer {
JChannelFactory factory;
Expand Down Expand Up @@ -34,7 +34,7 @@ private void start(String props, String stack_name) throws Exception {
factory=new JChannelFactory();
factory.setMultiplexerConfig(props);

final Channel ch1, ch2, ch3;
final Channel ch1, ch2;
ch1=factory.createMultiplexerChannel(stack_name, "id-1");
Draw draw1=new Draw(ch1);
ch1.connect("bela");
Expand All @@ -43,10 +43,7 @@ private void start(String props, String stack_name) throws Exception {
Draw draw2=new Draw(ch2);
ch2.connect("ban");


draw1.go();


draw2.go();
}
}

0 comments on commit e3f8089

Please sign in to comment.