-
Notifications
You must be signed in to change notification settings - Fork 96
Watching plus Unicode #62
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
Conversation
svanoort
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Blocking until can do a deep review/test.
oleg-nenashev
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Requesting changes to reflect the current status of #60
…ableTaskStep.Execution.stop delete the control dir and having the watcher task handle that.
|
Please do not perform line-by-line reviews in this PR. Rather, review component PRs. |
| try (FileChannel ch = FileChannel.open(Paths.get(logFile.getRemote()), StandardOpenOption.READ)) { | ||
| InputStream locallyEncodedStream = Channels.newInputStream(ch.position(lastLocation)); | ||
| InputStream utf8EncodedStream = cs == null ? locallyEncodedStream : new ReaderInputStream(new InputStreamReader(locallyEncodedStream, cs), StandardCharsets.UTF_8); | ||
| CountingInputStream cis = new CountingInputStream(utf8EncodedStream); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This probably does the same miscount when transcoding as #61, to be confirmed.
|
Closing as this is now identical to #60. |
Integrates #60 & #61. Please leave line comments in one of the parents until you are referring specifically to something about the integration.
@reviewbybees