Skip to content
This repository has been archived by the owner on Nov 22, 2023. It is now read-only.

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
alokmenghrajani committed Mar 14, 2016
1 parent 45b6f78 commit cf71091
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/src/main/java/keywhiz/KeywhizService.java
Expand Up @@ -202,10 +202,10 @@ public void addSecretGenerator(String name, SecretGenerator<?> secretGenerator)
jersey.register(injector.getInstance(AutomationSecretGeneratorsResource.class)); jersey.register(injector.getInstance(AutomationSecretGeneratorsResource.class));
logger.debug("Keywhiz configuration complete"); logger.debug("Keywhiz configuration complete");


validateDabase(config); validateDatabase(config);
} }


private void validateDabase(KeywhizConfig config) { private void validateDatabase(KeywhizConfig config) {
logger.debug("Validating database state"); logger.debug("Validating database state");
DataSource dataSource = config.getDataSourceFactory() DataSource dataSource = config.getDataSourceFactory()
.build(new MetricRegistry(), "flyway-validation-datasource"); .build(new MetricRegistry(), "flyway-validation-datasource");
Expand Down

0 comments on commit cf71091

Please sign in to comment.