This is an automated email from the ASF dual-hosted git repository.

zihaoxiang pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new 4f6e7159b8 chore: fix a typo (#16104)
4f6e7159b8 is described below

commit 4f6e7159b8b635b615de9fdc4be7932e324e4134
Author: Gallardot <[email protected]>
AuthorDate: Tue Jun 4 14:01:06 2024 +0800

    chore: fix a typo (#16104)
---
 .../org/apache/dolphinscheduler/api/exceptions/ApiExceptionHandler.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/exceptions/ApiExceptionHandler.java
 
b/dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/exceptions/ApiExceptionHandler.java
index 3c978795ab..9ab2d29f6a 100644
--- 
a/dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/exceptions/ApiExceptionHandler.java
+++ 
b/dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/exceptions/ApiExceptionHandler.java
@@ -44,7 +44,7 @@ public class ApiExceptionHandler {
     @ExceptionHandler(Throwable.class)
     public Result<Object> exceptionHandler(Throwable e, HandlerMethod hm) {
         ApiException ce = hm.getMethodAnnotation(ApiException.class);
-        log.error("Meet en unknown exception: ", e);
+        log.error("Meet an unknown exception: ", e);
         if (ce == null) {
             return Result.errorWithArgs(Status.INTERNAL_SERVER_ERROR_ARGS, 
e.getMessage());
         }

Reply via email to