From 7b6041cf7e7855ad4041012be7e10d7a5c87a56c Mon Sep 17 00:00:00 2001 From: Zeph Grunschlag Date: Tue, 5 Sep 2023 22:54:40 -0500 Subject: [PATCH] rename conduit config templates --- tools/block-generator/runner/run.go | 4 ++-- .../{conduit_fe.yml.tmpl => conduit_file_exporter.tmpl} | 0 .../{conduit_pg.yml.tmpl => conduit_pg_exporter.tmpl} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename tools/block-generator/runner/template/{conduit_fe.yml.tmpl => conduit_file_exporter.tmpl} (100%) rename tools/block-generator/runner/template/{conduit_pg.yml.tmpl => conduit_pg_exporter.tmpl} (100%) diff --git a/tools/block-generator/runner/run.go b/tools/block-generator/runner/run.go index a003a95e49..f2e1c1fc1f 100644 --- a/tools/block-generator/runner/run.go +++ b/tools/block-generator/runner/run.go @@ -43,10 +43,10 @@ import ( "github.com/algorand/go-algorand/tools/block-generator/util" ) -//go:embed template/conduit_pg.yml.tmpl +//go:embed template/conduit_pg_exporter.tmpl var conduitPostgresConfigTmpl string -//go:embed template/conduit_fe.yml.tmpl +//go:embed template/conduit_file_exporter.tmpl var conduitFileExporterConfigTmpl string const pad = " " diff --git a/tools/block-generator/runner/template/conduit_fe.yml.tmpl b/tools/block-generator/runner/template/conduit_file_exporter.tmpl similarity index 100% rename from tools/block-generator/runner/template/conduit_fe.yml.tmpl rename to tools/block-generator/runner/template/conduit_file_exporter.tmpl diff --git a/tools/block-generator/runner/template/conduit_pg.yml.tmpl b/tools/block-generator/runner/template/conduit_pg_exporter.tmpl similarity index 100% rename from tools/block-generator/runner/template/conduit_pg.yml.tmpl rename to tools/block-generator/runner/template/conduit_pg_exporter.tmpl