-
Notifications
You must be signed in to change notification settings - Fork 5k
[Fix-17780][TaskPlugin] Fix shell output log might loss due to incorrect usage of log buffer #17790
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: dev
Are you sure you want to change the base?
Conversation
90e47b1 to
e97029e
Compare
…ect usage of log buffer
e97029e to
efa563d
Compare
| String fileName = String.format("%s/%s_job.json", | ||
| taskExecutionContext.getExecutePath(), | ||
| taskExecutionContext.getTaskAppId()); | ||
| String fileName = String.format("%s/%s_job.json", taskRequest.getExecutePath(), taskRequest.getTaskAppId()); |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation Note
TaskExecutionContext.getTaskAppId
| String fileName = String.format("%s/%s_job.json", | ||
| taskExecutionContext.getExecutePath(), | ||
| taskExecutionContext.getTaskAppId()); | ||
| String fileName = String.format("%s/%s_job.json", taskRequest.getExecutePath(), taskRequest.getTaskAppId()); |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation Note
TaskExecutionContext.getTaskAppId
| String scriptFileName = String.format("%s/%s_node.sql", taskExecutionContext.getExecutePath(), | ||
| taskExecutionContext.getTaskAppId()); | ||
| String scriptFileName = String.format("%s/%s_node.sql", taskRequest.getExecutePath(), | ||
| taskRequest.getTaskAppId()); |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation Note
TaskExecutionContext.getTaskAppId
| return String.format("%s/seatunnel_%s.%s", taskExecutionContext.getExecutePath(), | ||
| taskExecutionContext.getTaskAppId(), formatDetector()); | ||
| return String.format("%s/seatunnel_%s.%s", taskRequest.getExecutePath(), | ||
| taskRequest.getTaskAppId(), formatDetector()); |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation Note
TaskExecutionContext.getTaskAppId
|


Purpose of the pull request
close #17780
Brief change log
loghandler, since we don't need thisVerify this pull request
Verify by ci
Pull Request Notice
Pull Request Notice
If your pull request contains incompatible change, you should also add it to
docs/docs/en/guide/upgrade/incompatible.md