Skip to content

Commit

Permalink
classification issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ymoumna committed Jul 5, 2017
1 parent de3aaa5 commit febc3a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Expand Up @@ -42,7 +42,7 @@ public class DistributedVerticle extends AbstractVerticle {
private static final DeliveryOptions TIMEOUT = new DeliveryOptions().setSendTimeout(2000);

private static final String IP_ADDRESS = "192.168.1.11";
private static final int ATTEMPTS = 5;
// private static final int ATTEMPTS = 5;

private static final long AVAILABILITY_PERIODICITY = 5000;
private static final long TASK_CREATION_PERIODICITY = 10000;
Expand Down
Expand Up @@ -54,6 +54,7 @@ public static void main(String[] args) {
Vertx vertx = res.result();
vertx.deployVerticle(new Seeder(), result -> {
System.out.println(result.result());
System.out.println(result.cause());
});
} else {
throw new IllegalStateException(res.cause());
Expand Down

0 comments on commit febc3a8

Please sign in to comment.