guest20
guest20
> useful to have in the docs What would you use the exit code for in practice? I can't even think of a useful corner case in a CI context...
Exactly, you only care if the exit code is zero. You don't care which kind of non-valid perl program you have. If you want to fix your script, you read...
PowerDNS has a web api: https://doc.powerdns.com/authoritative/http-api/index.html You could interact with it using HTTP::Tiny or even by shelling out to curl from a Challenge module. You'd just need to copy Crypt::LE::Challenge::Simple...
@jb-wisemo that might be a good idea as a second ticket
For reference i've got a `cpm` in `vendor/` in my repo, so my `Dockerfile` is just ```dockerfile COPY vendor/cpm /bin/cpm COPY cpanfile* /app/ RUN cd /app && cpm install ```...
@hexcoder- The counter-question is, how could undefs be preserved in a string when all strings are defined?
Is there a reason it's not possible for y'all to extended the timeout it with the attribute ["heartbeat_timeout" in Mojo::Server::Prefork](http://docs.mojolicious.org/Mojo/Server/Prefork#heartbeat_timeout) since your application requires it?
Am I misunderstanding what the log message means? Something blocked the worker for more than the heartbeat timeout and the supervisor has decided to kill that worker, causing anybody with...
@kraih Cool, though I don't see how "I'm about to TERM a blocking worker" could ever be part of normal/safe operation? Is there any way for the dying worker to...