- Notifications
You must be signed in to change notification settings - Fork950
Closed
Description
steps
- Addsite-sbt to a project.
- Run
previewAuto
. - Press any key.
Reproduction here:https://github.com/steinybot/bug-reports/tree/sbt/terminal-is-available
problem
It does not stop.
expectation
It should stop.
notes
unfiltered.util.RunnableServer
has a busy loop polling forSystem.in.available()
to be > 0 but it never is. This is becausesbt.internal.util.Terminal.proxyInputStream
does not overrideavailable
but it should.