Skip to content

Commit

Permalink
use new append option rather than renaming existing dashboards. needs…
Browse files Browse the repository at this point in the history
… to be tested though
  • Loading branch information
simei94 committed May 23, 2024
1 parent 72d10d7 commit eb85856
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public Integer call() throws Exception {
log.info("Running on {}", runDirectory);

//this is to avoid overriding
renameExistingDashboardYAMLs(runDirectory);
// renameExistingDashboardYAMLs(runDirectory);

Path configPath = ApplicationUtils.matchInput("config.xml", runDirectory);
Config config = ConfigUtils.loadConfig(configPath.toString());
Expand All @@ -88,7 +88,7 @@ public Integer call() throws Exception {
}

try {
sw.generate(runDirectory);
sw.generate(runDirectory, true);
sw.run(runDirectory);
} catch (IOException e) {
throw new RuntimeException(e);
Expand Down

0 comments on commit eb85856

Please sign in to comment.