You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue Description
After the increase of DEFAULT_PBKDF2_ROUNDS to 100_000, bind operation on ASAN build takes more time. On some systems it's more time than the default timeouts for replication agreements, causing replication init to fail.
The text was updated successfully, but these errors were encountered:
Bug Description:
After the increase of DEFAULT_PBKDF2_ROUNDS to 100_000, bind operation
on ASAN build takes more time. On some systems it's more time than the
default timeouts for replication agreements, causing replication init
to fail.
Fix Description:
Introduce a new helper function `get_timeout_scale()` and update
hardcoded timeouts to use it for scaling. For ASAN builds it returns
2.0 instead of default 1.0.
Factor returned by `get_timeout_scale()` can be adjusted using
environment variable `DS_TIMEOUT_SCALE`.
Fixes: 389ds#6632
Issue Description
After the increase of DEFAULT_PBKDF2_ROUNDS to 100_000, bind operation on ASAN build takes more time. On some systems it's more time than the default timeouts for replication agreements, causing replication init to fail.
The text was updated successfully, but these errors were encountered: