Skip to content

Commit

Permalink
checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
deardeng authored and dataroaring committed Nov 26, 2024
1 parent d0207af commit d8d11ec
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@ public void createDb(CreateDbStmt stmt) throws DdlException {
} else {
if (!db.tryWriteLock(100, TimeUnit.SECONDS)) {
LOG.warn("try lock failed, create database failed {}", fullDbName);
ErrorReport.reportDdlException(ErrorCode.ERR_EXECUTE_TIMEOUT, "create database " + fullDbName + " time out");
ErrorReport.reportDdlException(ErrorCode.ERR_EXECUTE_TIMEOUT,
"create database " + fullDbName + " time out");
}
try {
unprotectCreateDb(db);
Expand Down

0 comments on commit d8d11ec

Please sign in to comment.