We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b6d3e0 commit 8948183Copy full SHA for 8948183
libraries/message/src/descriptor.rs
@@ -677,10 +677,9 @@ pub struct CustomNode {
677
pub source: NodeSource,
678
/// Args for the executable.
679
#[serde(default, skip_serializing_if = "Option::is_none")]
680
- pub args: Option<String>,
681
- /// Environment variables for the custom nodes
682
- ///
683
- /// Deprecated, use outer-level `env` field instead.
+ pub args: Option<String>,
+ /// Environment variables for the custom nodes.
+ #[deprecated(note = "Use the outer-level `env` field on `Node` instead")]
684
pub envs: Option<BTreeMap<String, EnvValue>>,
685
686
pub build: Option<String>,
0 commit comments