Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion libdd-telemetry/src/data/payloads.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,11 @@ pub enum Method {
Options = 6,
Trace = 7,
Connect = 8,
Other = 9, //This is specified as "*" in the OpenAPI spec
// The OpenAPI spec uses "*" for this variant. Whether "Other" accurately
// describes the "*" concept (any method) or whether it should be a
// catch-all for unknown methods is unclear.
#[serde(rename = "*")]
Other = 9,
}

#[derive(Serialize, Deserialize, Debug, Clone, Default)]
Expand Down
Loading