Skip to content

Commit 4f35c36

Browse files
prontclaude
andcommitted
chore: add TODO comments linking to log_namespace design issues
#25044 #25045 Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
1 parent a2918e6 commit 4f35c36

2 files changed

Lines changed: 3 additions & 0 deletions

File tree

lib/codecs/src/decoding/format/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ pub trait Deserializer: DynClone + Send + Sync {
5050
/// by not requiring heap allocations for it.
5151
///
5252
/// **Note**: The type of the produced events depends on the implementation.
53+
///
54+
/// TODO: <https://github.com/vectordotdev/vector/issues/25044>
5355
fn parse(
5456
&self,
5557
bytes: Bytes,

lib/codecs/src/decoding/format/otlp.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,7 @@ impl Deserializer for OtlpDeserializer {
181181
}
182182
}
183183
OtlpSignalType::Traces => {
184+
// TODO: https://github.com/vectordotdev/vector/issues/25045
184185
if let Ok(mut events) =
185186
self.traces_deserializer.parse(bytes.clone(), log_namespace)
186187
&& let Some(Event::Log(log)) = events.first()

0 commit comments

Comments
 (0)