Skip to content

Commit c7c9245

Browse files
committed
fix: update message error
Signed-off-by: Otavio Santana <[email protected]>
1 parent d91678c commit c7c9245

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jnosql-solr/src/main/java/org/eclipse/jnosql/databases/solr/mapping/DocumentManagerSupplier.java

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

0 commit comments

Comments
 (0)