Don't eat error in return code #1
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
main() always returns a 0 exit code, even if an error is encountered that takes down the service; systemd won't restart if
Restart=on-failure
in this case.See
.unwrap_or_else(|err| {
error!("{}", err);
});