geode-benchmarks/src/main/java/org/apache/geode/benchmark/tasks/StartHAProxy.java [56:68]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    this.proxyPort = proxyPort;
    this.image = isNullOrEmpty(image) ? "haproxy:1.8-alpine" : image;
  }

  @Override
  public void run(final TestContext context) throws Exception {

    final Path configPath = Paths.get(getProperty("user.home")).toAbsolutePath();
    final Path configFile = configPath.resolve("haproxy.cfg");
    rewriteFile(generateConfig(context), configFile);

    final ProcessControl processControl = new ProcessControl();
    processControl.runCommand(START_DOCKER_DAEMON_COMMAND);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



geode-benchmarks/src/main/java/org/apache/geode/benchmark/tasks/StartRouter.java [50:62]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    this.proxyPort = proxyPort;
    this.image = isNullOrEmpty(image) ? "haproxy:1.8-alpine" : image;
  }

  @Override
  public void run(final TestContext context) throws Exception {

    final Path configPath = Paths.get(getProperty("user.home")).toAbsolutePath();
    final Path configFile = configPath.resolve("haproxy.cfg");
    rewriteFile(generateConfig(context), configFile);

    final ProcessControl processControl = new ProcessControl();
    processControl.runCommand(START_DOCKER_DAEMON_COMMAND);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



