Skip to content

Commit

Permalink
Fix typo in error message about connector.name
Browse files Browse the repository at this point in the history
  • Loading branch information
cawallin authored and electrum committed Jun 25, 2015
1 parent a45e9fb commit 83ee1b4
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -81,7 +81,7 @@ private void loadCatalog(File file)
Map<String, String> properties = new HashMap<>(loadProperties(file));

String connectorName = properties.remove("connector.name");
checkState(connectorName != null, "Catalog configuration %s does not contain conector.name", file.getAbsoluteFile());
checkState(connectorName != null, "Catalog configuration %s does not contain connector.name", file.getAbsoluteFile());

String catalogName = Files.getNameWithoutExtension(file.getName());

Expand Down

0 comments on commit 83ee1b4

Please sign in to comment.