Skip to content

Commit

Permalink
fix: fix Cassandra supplier message
Browse files Browse the repository at this point in the history
Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
  • Loading branch information
otaviojava committed May 19, 2023
1 parent e2972e4 commit a5b26ed
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public CassandraColumnManager get() {
CassandraColumnManagerFactory factory = configuration.apply(settings);
Optional<String> database = settings.get(COLUMN_DATABASE, String.class);
String db = database.orElseThrow(() -> new MappingException("Please, inform the database filling up the property "
+ COLUMN_DATABASE));
+ COLUMN_DATABASE.get()));
CassandraColumnManager manager = factory.apply(db);
LOGGER.log(Level.FINEST, "Starting a CassandraColumnManager instance using Eclipse MicroProfile Config," +
" database name: " + db);
Expand Down

0 comments on commit a5b26ed

Please sign in to comment.