public NexusClient()

in src/main/java/org/apache/creadur/tentacles/NexusClient.java [49:60]


    public NexusClient(final Platform platform) {

        System.setProperty("http.keepAlive", "false");
        System.setProperty("http.maxConnections", "50");

        this.retries = Integer.parseInt(System.getProperty("NexusClient.retries", "5"));

        this.client = HttpClientBuilder.create().disableContentCompression()
                .build();
        this.fileSystem = platform.getFileSystem();
        this.ioSystem = platform.getIoSystem();
    }