summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPavel Reichl <preichl@redhat.com>2014-01-21 12:14:01 +0000
committerJakub Hrozek <jhrozek@redhat.com>2014-01-24 13:22:00 +0100
commit863b086dc8402a28f35b5def9a336c8112194102 (patch)
treefc1ca50c5448704b27d086130c370896dba9bb41
parent0a33b13e2125de2be64ba2add63021abfc973492 (diff)
downloadsssd-863b086dc8402a28f35b5def9a336c8112194102.tar.gz
sssd-863b086dc8402a28f35b5def9a336c8112194102.tar.xz
sssd-863b086dc8402a28f35b5def9a336c8112194102.zip
krb5: hint to increase krb5_auth_timeout
Resolves: https://fedorahosted.org/sssd/ticket/2202
-rw-r--r--src/providers/krb5/krb5_child_handler.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/providers/krb5/krb5_child_handler.c b/src/providers/krb5/krb5_child_handler.c
index d6c1dc1f9..a0e8f610b 100644
--- a/src/providers/krb5/krb5_child_handler.c
+++ b/src/providers/krb5/krb5_child_handler.c
@@ -254,7 +254,10 @@ static void krb5_child_timeout(struct tevent_context *ev,
return;
}
- DEBUG(9, ("timeout for child [%d] reached.\n", state->child_pid));
+ DEBUG(SSSDBG_IMPORTANT_INFO,
+ ("Timeout for child [%d] reached. In case KDC is distant or network "
+ "is slow you may consider increasing value of krb5_auth_timeout.\n",
+ state->child_pid));
ret = kill(state->child_pid, SIGKILL);
if (ret == -1) {