1
0
mirror of https://github.com/systemd/systemd.git synced 2025-01-10 05:18:17 +03:00

varlinkctl: downgrade ignored error msg to LOG_WARNING

Follow-up for 39ce86d19c
This commit is contained in:
Mike Yuan 2024-09-07 02:28:41 +02:00
parent 5bab5e4ac3
commit ebf0e859da
No known key found for this signature in database
GPG Key ID: 417471C0A40F58B3

View File

@ -247,7 +247,7 @@ static int varlink_connect_auto(sd_varlink **ret, const char *where) {
if (arg_timeout != 0) {
r = sd_varlink_set_relative_timeout(vl, arg_timeout);
if (r < 0)
log_error_errno(r, "Failed to set Varlink timeout: %m");
log_warning_errno(r, "Failed to set Varlink timeout, ignoring: %m");
}
*ret = TAKE_PTR(vl);