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
If a setting is specified by deprecation.skip_deprecated_settings then the deprecation info API is supposed to avoid reporting warnings for that setting. However if one of the settings specified by deprecation.skip_deprecated_settings is set dynamically then the deprecation info API will still report it.
This bug was caused by #82487. Previously we were not checking cluster (dynamic) settings at all in NodeDeprecationChecks. We had added support for respecting deprecation.skip_deprecated_settings in the deprecation logger (not deprecation info API) for dynamic settings in #81836. The ticket where deprecation.skip_deprecated_settings was originally introduced is #78725.
The text was updated successfully, but these errors were encountered:
…ttings in node deprecation checks (#82883)
This commit makes it so that the NodeDeprecationChecks part of the deprecation info API will ignore settings
specified by deprecation.skip_deprecated_settings, even if those settings are dynamically set.
Closes#82889
If a setting is specified by
deprecation.skip_deprecated_settings
then the deprecation info API is supposed to avoid reporting warnings for that setting. However if one of the settings specified bydeprecation.skip_deprecated_settings
is set dynamically then the deprecation info API will still report it.This bug was caused by #82487. Previously we were not checking cluster (dynamic) settings at all in NodeDeprecationChecks. We had added support for respecting
deprecation.skip_deprecated_settings
in the deprecation logger (not deprecation info API) for dynamic settings in #81836. The ticket wheredeprecation.skip_deprecated_settings
was originally introduced is #78725.The text was updated successfully, but these errors were encountered: