Skip to content

Commit 2dff59f

Browse files
committed
Put unstable deploy field to end
1 parent 540721b commit 2dff59f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

libraries/message/src/descriptor.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -219,11 +219,6 @@ pub struct Node {
219219
/// ```
220220
pub env: Option<BTreeMap<String, EnvValue>>,
221221

222-
/// Unstable machine deployment configuration
223-
#[schemars(skip)]
224-
#[serde(rename = "_unstable_deploy")]
225-
pub deploy: Option<Deploy>,
226-
227222
/// Multiple operators running in a shared runtime process.
228223
///
229224
/// Operators are an experimental, lightweight alternative to nodes.
@@ -462,6 +457,11 @@ pub struct Node {
462457
/// ```
463458
#[serde(default, skip_serializing_if = "Option::is_none")]
464459
pub rev: Option<String>,
460+
461+
/// Unstable machine deployment configuration
462+
#[schemars(skip)]
463+
#[serde(rename = "_unstable_deploy")]
464+
pub deploy: Option<Deploy>,
465465
}
466466

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

0 commit comments

Comments
 (0)