summaryrefslogtreecommitdiffstats
path: root/src/providers/krb5
diff options
context:
space:
mode:
authorPavel Reichl <preichl@redhat.com>2014-01-21 12:14:01 +0000
committerJakub Hrozek <jhrozek@redhat.com>2014-01-22 23:12:51 +0100
commit07270cd9739b942c63602ef57c513c6a50e6f7ee (patch)
tree02b0c3abd8acf77f23f4fdf1c66cddee39518fba /src/providers/krb5
parentcdcca90249aadb72bf2978a63c202c5b68642224 (diff)
downloadsssd-07270cd9739b942c63602ef57c513c6a50e6f7ee.tar.gz
sssd-07270cd9739b942c63602ef57c513c6a50e6f7ee.tar.xz
sssd-07270cd9739b942c63602ef57c513c6a50e6f7ee.zip
krb5: hint to increase krb5_auth_timeout
Resolves: https://fedorahosted.org/sssd/ticket/2202
Diffstat (limited to 'src/providers/krb5')
-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 c872b402d..bf3562f9d 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) {