Fix recorder attribute excludes not being effective until after startup (#90198)

* Fix attribute excludes not being effective until after startup

fixes #90016

* reduce
This commit is contained in:
J. Nick Koston
2023-03-23 14:52:37 -10:00
committed by GitHub
parent dd0f05b980
commit d49fbc17df
5 changed files with 75 additions and 18 deletions

View File

@@ -51,6 +51,19 @@ STATES_META_SCHEMA_VERSION = 38
LEGACY_STATES_EVENT_ID_INDEX_SCHEMA_VERSION = 28
INTEGRATION_PLATFORM_EXCLUDE_ATTRIBUTES = "exclude_attributes"
INTEGRATION_PLATFORM_COMPILE_STATISTICS = "compile_statistics"
INTEGRATION_PLATFORM_VALIDATE_STATISTICS = "validate_statistics"
INTEGRATION_PLATFORM_LIST_STATISTIC_IDS = "list_statistic_ids"
INTEGRATION_PLATFORMS_LOAD_IN_RECORDER_THREAD = {
INTEGRATION_PLATFORM_COMPILE_STATISTICS,
INTEGRATION_PLATFORM_VALIDATE_STATISTICS,
INTEGRATION_PLATFORM_LIST_STATISTIC_IDS,
}
class SupportedDialect(StrEnum):
"""Supported dialects."""