Is your feature request related to a problem? Please describe.
Right now we are using MaxAttemptsToUpdatePivot = int.MaxValue, which is enough, because it means that node is trying to update pivot for ~68 years before giving up. But making it really infinite would be nice.
Describe the solution you'd like
Refactor code to make infinite attempts to update pivot if MaxAttemptsToUpdatePivot is e.g. -1
Additional context
Automatic pivot updates were introduced here: #5256
And changed to "infinite" here: #5988
Is your feature request related to a problem? Please describe.
Right now we are using
MaxAttemptsToUpdatePivot=int.MaxValue, which is enough, because it means that node is trying to update pivot for ~68 years before giving up. But making it really infinite would be nice.Describe the solution you'd like
Refactor code to make infinite attempts to update pivot if
MaxAttemptsToUpdatePivotis e.g.-1Additional context
Automatic pivot updates were introduced here: #5256
And changed to "infinite" here: #5988