You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by GitBox <gi...@apache.org> on 2020/10/21 07:07:53 UTC

[GitHub] [incubator-dolphinscheduler] yh2388 opened a new issue #3962: [Bug][api] Data type conversion exception returned by LoggerService

yh2388 opened a new issue #3962:
URL: https://github.com/apache/incubator-dolphinscheduler/issues/3962


   Now, LoggerService.queryLog() return `StringBuilder` type, ProcessInstanceService.addDependResultForTaskList() conversion error:
   ```java
   String log = (String) logResult.getData();
   ```
   
   Revised as:
   ```java
   String log = logResult.getData().toString();
   ```


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-dolphinscheduler] yh2388 removed a comment on issue #3962: [Bug][api] Data type conversion exception returned by LoggerService

Posted by GitBox <gi...@apache.org>.
yh2388 removed a comment on issue #3962:
URL: https://github.com/apache/incubator-dolphinscheduler/issues/3962#issuecomment-713361986


   new version is fixed, But I think use `toString` is more reasonable, Avoid `ClassCastException`.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-dolphinscheduler] yh2388 commented on issue #3962: [Bug][api] Data type conversion exception returned by LoggerService

Posted by GitBox <gi...@apache.org>.
yh2388 commented on issue #3962:
URL: https://github.com/apache/incubator-dolphinscheduler/issues/3962#issuecomment-713361986


   new version is fixed, But I think use `toString` is more reasonable, Avoid `ClassCastException`.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-dolphinscheduler] yh2388 closed issue #3962: [Bug][api] Data type conversion exception returned by LoggerService

Posted by GitBox <gi...@apache.org>.
yh2388 closed issue #3962:
URL: https://github.com/apache/incubator-dolphinscheduler/issues/3962


   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org