Learn more about these different git repos.
Other Git URLs
'man sssd.conf': timeout: "Note that after three missed heartbeats the process will terminate itself."
timeout
But implementation is:
#define WATCHDOG_MAX_TICKS 3 ... if (__sync_add_and_fetch(&watchdog_ctx.ticks, 1) > WATCHDOG_MAX_TICKS) { ... _exit(1);
-- since after reset ticks start from 0 effectively this is 4 heartbeats.
ticks
Metadata Update from @atikhonov: - Issue assigned to atikhonov
PR: https://github.com/SSSD/sssd/pull/1003
Metadata Update from @atikhonov: - Issue tagged with: PR
Old implementation in 1.13 branch used >= 3 as well https://pagure.io/SSSD/sssd/blob/c7636e4721cb52f1b36bf93a3f27a247f3f9231f/f/src/monitor/monitor.c#_584
>= 3
Metadata Update from @thalman: - Issue tagged with: Next milestone
Commit 653df69 fixes this issue
SSSD is moving from Pagure to Github. This means that new issues and pull requests will be accepted only in SSSD's github repository.
This issue has been cloned to Github and is available here: - https://github.com/SSSD/sssd/issues/5124
If you want to receive further updates on the issue, please navigate to the github issue and click on subscribe button.
subscribe
Thank you for understanding. We apologize for all inconvenience.
Log in to comment on this ticket.