Skip to content

Commit

Permalink
Merge pull request #1117 from mountaindude/master
Browse files Browse the repository at this point in the history
Fix typo/bug in config verification
  • Loading branch information
mountaindude authored Apr 24, 2024
2 parents 721dacc + cc746fb commit 04b85cb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/lib/assert/assert_config_file.js
Original file line number Diff line number Diff line change
Expand Up @@ -2576,12 +2576,12 @@ export const configFileStructureAssert = async (config, logger) => {
}
});
}
} else {
logger.error(
'ASSERT CONFIG: Missing config file entry "Butler.incidentTool.newRelic.reloadTaskFailure.destination.log.attribute.static"'
);
configFileCorrect = false;
}
} else {
logger.error(
'ASSERT CONFIG: Missing config file entry "Butler.incidentTool.newRelic.reloadTaskFailure.destination.log.attribute.static"'
);
configFileCorrect = false;
}

if (!config.has('Butler.incidentTool.newRelic.reloadTaskFailure.destination.log.attribute.dynamic.useAppTags')) {
Expand Down

0 comments on commit 04b85cb

Please sign in to comment.