We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07a007f commit 3747701Copy full SHA for 3747701
datadog-sidecar-ffi/src/lib.rs
@@ -422,7 +422,7 @@ pub unsafe extern "C" fn ddog_sidecar_telemetry_addEndpoint(
422
path: CharSlice,
423
operation_name: CharSlice,
424
resource_name: CharSlice,
425
-) {
+) -> MaybeError {
426
let endpoint = TelemetryActions::AddEndpoint(ddtelemetry::data::Endpoint {
427
r#type: Some(r#type.to_utf8_lossy().into_owned()),
428
method: Some(method),
@@ -437,6 +437,7 @@ pub unsafe extern "C" fn ddog_sidecar_telemetry_addEndpoint(
437
queue_id,
438
vec![SidecarAction::Telemetry(endpoint)],
439
));
440
+ MaybeError::None
441
}
442
443
/// Reports a dependency to the telemetry.
0 commit comments