Skip to content

Commit a5b26ed

Browse files
committed
fix: fix Cassandra supplier message
Signed-off-by: Otavio Santana <[email protected]>
1 parent e2972e4 commit a5b26ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jnosql-cassandra/src/main/java/org/eclipse/jnosql/databases/cassandra/mapping/ColumnManagerSupplier.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public CassandraColumnManager get() {
4242
CassandraColumnManagerFactory factory = configuration.apply(settings);
4343
Optional<String> database = settings.get(COLUMN_DATABASE, String.class);
4444
String db = database.orElseThrow(() -> new MappingException("Please, inform the database filling up the property "
45-
+ COLUMN_DATABASE));
45+
+ COLUMN_DATABASE.get()));
4646
CassandraColumnManager manager = factory.apply(db);
4747
LOGGER.log(Level.FINEST, "Starting a CassandraColumnManager instance using Eclipse MicroProfile Config," +
4848
" database name: " + db);

0 commit comments

Comments
 (0)