You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The POST /pipelines and POST /pipelines/{pipeline_id} API endpoints have a body that looks like {..., config: { config: ...}. This nested config member should be flattened.
The nested structure is caused by the following structs:
#[derive(Debug, serde::Serialize, serde::Deserialize,PartialEq,Eq)]pubstructBatchConfig{/// maximum batch size in number of eventspubmax_size:usize,/// maximum duration, in seconds, to wait for a batch to fillpubmax_fill_secs:u64,}#[derive(Debug, serde::Serialize, serde::Deserialize,PartialEq,Eq)]pubstructPipelineConfig{pubconfig:BatchConfig,}
The text was updated successfully, but these errors were encountered:
The POST
/pipelines
and POST/pipelines/{pipeline_id}
API endpoints have a body that looks like{..., config: { config: ...}
. This nestedconfig
member should be flattened.The nested structure is caused by the following structs:
The text was updated successfully, but these errors were encountered: