Skip to content

Commit

Permalink
[grid] Land an event bus that works
Browse files Browse the repository at this point in the history
  • Loading branch information
shs96c committed Feb 1, 2019
1 parent 4dbf4f0 commit 2a78f49
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@
import org.zeromq.ZContext;
import org.zeromq.ZMQ;

import java.net.URI;
import java.net.URISyntaxException;
import java.util.UUID;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public class NodeFlags {
names = {"--detect-drivers"},
description = "Autodetect which drivers are available on the current system, and add them to the node.")
@ConfigValue(section = "node", name = "detect-drivers")
private Boolean autoconfigure;
private boolean autoconfigure;

public void configure(
Config config,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@

import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
Expand Down

0 comments on commit 2a78f49

Please sign in to comment.