URL: https://github.com/SSSD/sssd/pull/5840 Author: alexey-tikhonov Title: #5840: SUDO: decrease log level in case object wasn't found Action: opened
PR body: """ It is expected sudo responder can be requested to lookup unknown entry. One of typical examples is lookup for a local user. Resolves: https://github.com/SSSD/sssd/issues/5839 """ To pull the PR as Git branch: git remote add ghsssd https://github.com/SSSD/sssd git fetch ghsssd pull/5840/head:pr5840 git checkout pr5840
From 68b571370093c7dd5abbf9f2f42bb33620373d08 Mon Sep 17 00:00:00 2001 From: Alexey Tikhonov <atikh...@redhat.com> Date: Tue, 26 Oct 2021 16:02:43 +0200 Subject: [PATCH] SUDO: decrease log level in case object wasn't found It is expected sudo responder can be requested to lookup unknown entry. One of typical examples is lookup for a local user. Resolves: https://github.com/SSSD/sssd/issues/5839 --- src/responder/sudo/sudosrv_cmd.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/responder/sudo/sudosrv_cmd.c b/src/responder/sudo/sudosrv_cmd.c index 3bed22b6fc..63b548fe8d 100644 --- a/src/responder/sudo/sudosrv_cmd.c +++ b/src/responder/sudo/sudosrv_cmd.c @@ -261,7 +261,8 @@ static void sudosrv_cmd_done(struct tevent_req *req) &cmd_ctx->num_rules); talloc_zfree(req); if (ret != EOK) { - DEBUG(SSSDBG_CRIT_FAILURE, "Unable to obtain cached rules [%d]: %s\n", + DEBUG((ret == ENOENT) ? SSSDBG_MINOR_FAILURE : SSSDBG_OP_FAILURE, + "Unable to obtain cached rules [%d]: %s\n", ret, sss_strerror(ret)); goto done; }
_______________________________________________ sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org Do not reply to spam on the list, report it: https://pagure.io/fedora-infrastructure