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

automerge
This commit is contained in:
mergify[bot]
2020-02-19 18:13:41 -08:00
committed by GitHub
parent 90af35737d
commit 5fbddd5894
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)]