Closed vitobotta closed 5 years ago
So it looks like the watching is working but I have to add STDOUT.flush
after puts
otherwise it doesn't show anything until I shutdown the script. Why is that? :)
So it looks like the watching is working but I have to add
STDOUT.flush
afterputs
otherwise it doesn't show anything until I shutdown the script. Why is that? :)
You are probably missing $stdout.sync = true
.
Yeah that works too. Closing this one.
Hi! I am trying to write a stupid simple controller that needs to watch for when Velero backups start and complete and send a slack notification. I am using the example in the readme, but the lines with the event details are printed altogether when I shutdown the script, instead of being printed as the events happen. Any idea of why? Thanks!