> + }
> +
> + public DockerApiMetadata() {
> + this(new Builder());
> + }
> +
> + protected DockerApiMetadata(Builder builder) {
> + super(builder);
> + }
> +
> + public static Properties defaultProperties() {
> + Properties properties = BaseHttpApiMetadata.defaultProperties();
> + properties.setProperty(Constants.PROPERTY_MAX_RETRIES, "15");
> + properties.setProperty("jclouds.ssh.retry-auth", "true");
> + properties.setProperty(Constants.PROPERTY_CONNECTION_TIMEOUT,
> "1200000"); // 15 minutes
> + properties.setProperty("image.login-user", "root");
Where is this property (without the jclouds prefix) used?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/57/files#r11265049