Browse Source

Put unstable `deploy` field to end

dataflow-doc-improvements
Philipp Oppermann 6 months ago
parent
commit
2dff59f0ff
Failed to extract signature
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      libraries/message/src/descriptor.rs

+ 5
- 5
libraries/message/src/descriptor.rs View File

@@ -219,11 +219,6 @@ pub struct Node {
/// ```
pub env: Option<BTreeMap<String, EnvValue>>,

/// Unstable machine deployment configuration
#[schemars(skip)]
#[serde(rename = "_unstable_deploy")]
pub deploy: Option<Deploy>,

/// Multiple operators running in a shared runtime process.
///
/// Operators are an experimental, lightweight alternative to nodes.
@@ -462,6 +457,11 @@ pub struct Node {
/// ```
#[serde(default, skip_serializing_if = "Option::is_none")]
pub rev: Option<String>,

/// Unstable machine deployment configuration
#[schemars(skip)]
#[serde(rename = "_unstable_deploy")]
pub deploy: Option<Deploy>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]


Loading…
Cancel
Save