For #7823 feat(nimbus): Add population percent and dirty to constants (#8250)

Because...

* We want to allow updates to dirty states and allow editing for
population percent for live rollouts

This commit...

* updates the serializer constants to reflect that
This commit is contained in:
Elise Richards 2023-02-07 13:31:34 -06:00 коммит произвёл GitHub
Родитель 8f3a74e004
Коммит 86914f0482
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -86,7 +86,9 @@ class TransitionConstants:
NimbusExperiment.PublishStatus.IDLE,
],
"experiments": [],
"rollouts": [],
"rollouts": [
NimbusExperiment.PublishStatus.DIRTY,
],
}
STATUS_UPDATE_EXEMPT_FIELDS = {
@ -99,7 +101,7 @@ class TransitionConstants:
"conclusion_recommendation",
],
"experiments": [],
"rollouts": [],
"rollouts": ["population_percent"],
}