Open carlosedp opened 10 months ago
This looks like a similar error: https://github.com/jline/jline3/issues/97
I have homebrew coreutils installed as well.
❯ which stty
/usr/local/bin/gstty
❯ whence stty
stty is hashed to /usr/local/bin/gstty
stty is /usr/local/opt/coreutils/libexec/gnubin/stty
stty is /bin/stty
Bypassing homebrew coreutils with PATH="/bin:$PATH" quarkus dev
doesn't print the error when exiting.
cc @stalep
Describe the bug
Whenever I use
quarkus dev
orquarkus test
on Mac, after generating some request/run tests if I press "q" to exit or "ctrl+c", I get:If I do not generate any requests to endpoints, the application exits normally without the error by pressing "q". Using "Ctrl+c" still generates the error.
Expected behavior
No error on exit
Actual behavior
Error is printed to console.
How to Reproduce?
I've been using my quickstart on https://github.com/carlosedp/scala3-quarkus-quickstart.git
Output of
uname -a
orver
Darwin MBP16 22.6.0 Darwin Kernel Version 22.6.0: Wed Jul 5 22:21:56 PDT 2023; root:xnu-8796.141.3~6/RELEASE_X86_64 x86_64 i386 Darwin
Output of
java -version
openjdk version "21.0.1" 2023-10-17 OpenJDK Runtime Environment GraalVM CE 21.0.1+12.1 (build 21.0.1+12-jvmci-23.1-b19) OpenJDK 64-Bit Server VM GraalVM CE 21.0.1+12.1 (build 21.0.1+12-jvmci-23.1-b19, mixed mode, sharing)
Quarkus version or git rev
3.6.4
Build tool (ie. output of
mvnw --version
orgradlew --version
)Apache Maven 3.9.6 (bc0240f3c744dd6b6ec2920b3cd08dcc295161ae)
Additional information
No response