URL: https://github.com/SSSD/sssd/pull/5252 Author: deastoe Title: #5252: Add offline_timeout_max option to control offline interval backoff Action: opened
PR body: """ The offline_timeout period determines the minimum time between attempts of a data provider to go back online, if it is offline due to eg. unreachable servers. Each time this check fails there is a backoff factor applied meaning there can be up to 60 minutes between these attempts.
Here we introduce the offline_timeout_max option which allows the the maximum period between attempts to be defined in the configuration, instead of the default 60 minutes; therefore providing more flexibility.
Setting offline_timeout_max to 0 disables the backoff functionality.
Additionally fix two issues observed in be_ptask scheduling: - Backoff is not applied on the first re-schedule operation - The maximum backoff value (previously hardcoded) might not be reached. """
To pull the PR as Git branch: git remote add ghsssd https://github.com/SSSD/sssd git fetch ghsssd pull/5252/head:pr5252 git checkout pr5252