Add Preview operating mode, rename SoftLaunch operating mode to Stable (#8331)

automerge
This commit is contained in:
Michael Vines
2020-02-19 17:48:58 -07:00
committed by GitHub
parent 8ae26867c5
commit 8c19b6268c
5 changed files with 45 additions and 26 deletions

View File

@ -25,8 +25,9 @@ use std::{
#[derive(Serialize, Deserialize, Debug, Clone, Copy, PartialEq)]
pub enum OperatingMode {
SoftLaunch, // Cluster features incrementally enabled over time
Development, // All features (including experimental features) available immediately from genesis
Stable, // Stable cluster features
Preview, // Next set of cluster features to be promoted to Stable
Development, // All features (including experimental features)
}
#[derive(Serialize, Deserialize, Debug, Clone)]