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 2021/08/20 03:22:34 UTC

[GitHub] [dolphinscheduler] ruanwenjun commented on issue #6000: [Bug][Shell Task] shell task error

ruanwenjun commented on issue #6000:
URL: https://github.com/apache/dolphinscheduler/issues/6000#issuecomment-902400983


   @SbloodyS Sorry, this is a bug, there two solutions
   1. You can edit the AbstractCommandExecutor line 102
   ```java
   this.logBuffer = new LinkedBlockingQueue<>(Constants.DEFAULT_LOG_BUFFER_SIZE);
   ```
   to 
   ```java
   this.logBuffer = new LinkedBlockingQueue<>();
   ```
   
   2. You can modify all `logBuffer.add()` in `AbstractCommandExecutor` and use `logBuffer.put()`
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

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