summaryrefslogtreecommitdiffstats
path: root/src
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 14:07:47 +0100
commit4777e706ed485ea61ebb0006c00a3d85440ffe70 (patch)
tree5534f54c640a6b9f6e6c9e0760a90dbe06eb84ef /src
parent993aaa15cf4b128951fc9bd4a574e7ac5895d942 (diff)
downloadsssd-4777e706ed485ea61ebb0006c00a3d85440ffe70.tar.gz
sssd-4777e706ed485ea61ebb0006c00a3d85440ffe70.tar.xz
sssd-4777e706ed485ea61ebb0006c00a3d85440ffe70.zip
krb5: hint to increase krb5_auth_timeout
Resolves: https://fedorahosted.org/sssd/ticket/2202
Diffstat (limited to 'src')
-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) {