Skip to content

Commit

Permalink
fix: update message on supplier
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 b83f8c2 commit 04a0bef
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 OrientDBDocumentManager get() {
OrientDBDocumentManagerFactory factory = configuration.apply(settings);
Optional<String> database = settings.get(DOCUMENT_DATABASE, String.class);
String db = database.orElseThrow(() -> new MappingException("Please, inform the database filling up the property "
+ DOCUMENT_DATABASE));
+ DOCUMENT_DATABASE.get()));
OrientDBDocumentManager manager = factory.apply(db);
LOGGER.log(Level.FINEST, "Starting a OrientDBDocumentManager instance using Eclipse MicroProfile Config," +
" database name: " + db);
Expand Down

0 comments on commit 04a0bef

Please sign in to comment.