> @@ -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;
reading the Guice faq optional/default values can not be specified in the constructor, have added an explicit default value to the line. If there is a preferred alternative to this approach please let me know as I am new to Guice. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/341/files#r11421764
