-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Docker images since 0.28.0 does not write to STDOUT #7875
Comments
Might be related to #7470. |
Try either to:
|
Hello, using |
It would be good if somebody could provide an isolated example showcasing the issue. Otherwise I would vote to close this since I think we have related issues with better descriptions :) |
I haven't yet been able to exactly isolate the issue, but I've been trying to pinpoint.
Having a simple If I now make it a simple website using kemal and it's builtin logging, no output at all: require "kemal"
get "/" do
"Hello World!"
end
puts "Some Text"
Kemal.run If I then add the require "kemal"
STDOUT.sync = true
get "/" do
"Hello World!"
end
puts "Some Text"
Kemal.run (For my own project having a custom logger, that initialized a I know this technically isn't really an isolated example, but maybe this will help. |
I think we can close this, since last versions are working fine. |
Hi. I have this issue, since crystal 0.28.0 container image I can't get any STDOUT to work properly. In image 0.27.2 it works fine. But on 0.28.0 and now 0.29.0 it doesn't work.
I'm using:
The text was updated successfully, but these errors were encountered: