Skip to content

Commit

Permalink
Fix typo in error message in ConnectionChecker
Browse files Browse the repository at this point in the history
  • Loading branch information
mkjsix committed Jun 6, 2024
1 parent 2213cc2 commit 9c2db85
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public class ConnectionChecker {
mclient.getDatabase("admin").runCommand(document().put("ping", 1).get());
return true;
} catch(Throwable t) {
LOGGER.error("Error checking connection with to MongoDb", t);
LOGGER.error("Error checking connection to MongoDb", t);
return false;
}
});
Expand Down

0 comments on commit 9c2db85

Please sign in to comment.