src/main/java/com/google/cloud/dfmetrics/pipelinemanager/ClassicTemplateClient.java [41:52]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    this.dataflowClient = dataflowClient;
  }

  @Override
  public Job launch(String project, String region, TemplateConfig templateConfig)
      throws IOException {
    LOG.info(
        "Launching {} using spec {} in region {} under {}",
        templateConfig.jobName(),
        templateConfig.specPath(),
        region,
        project);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/google/cloud/dfmetrics/pipelinemanager/FlexTemplateClient.java [42:53]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    this.dataflowClient = dataflowClient;
  }

  @Override
  public Job launch(String project, String region, TemplateConfig templateConfig)
      throws IOException {
    LOG.info(
        "Launching {} using spec {} in region {} under {}",
        templateConfig.jobName(),
        templateConfig.specPath(),
        region,
        project);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



