File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff 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 ) ]
You can’t perform that action at this time.
0 commit comments