> @@ -63,6 +64,9 @@ > private final SocketOpen socketTester; > private final Predicate<AtomicReference<NodeMetadata>> nodeRunning; > private final ListeningExecutorService userExecutor; > + @Inject(optional = true) > + @Named(EXCLUDE_PUBLIC_IP) > + private boolean excludePublicIp;
Does this need to be optional, or is there some way we can include it in the constructor params (defaulted to false) and make it `final`? Otherwise, at least explicitly set it to `false` here? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/341/files#r11421151
