`start` - errors on socket opening
nyarly opened this issue · comments
Judson Lester commented
During boot, errors opening the socket are silently swallowed, which is very poor UX.
start
and friends would need to return Result<()> (or panic) to handle this.
msrd0 commented
I'd prefer a Result
over panicking as it gives applications the ability to retry later, change the port they use or similar.