Skip to content

Commit

Permalink
chore: warn on empty database name not sets
Browse files Browse the repository at this point in the history
  • Loading branch information
fengjiachun committed Jan 8, 2024
1 parent ff40e7a commit da9bec2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public static List<GreptimeDB> instances() {
public static GreptimeDB create(GreptimeOptions opts) {
GreptimeDB greptimeDB = new GreptimeDB();
if (!greptimeDB.init(opts)) {
throw new RuntimeException("Failed to start GreptimeDB client");
throw new RuntimeException("Failed to start the GreptimeDB client");
}
LOG.info("GreptimeDB client started: {}", greptimeDB);
return greptimeDB;
Expand Down

0 comments on commit da9bec2

Please sign in to comment.