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 589cdd8 commit 39390d4Copy full SHA for 39390d4
opentelemetry-sdk/CHANGELOG.md
@@ -11,13 +11,11 @@
11
- **Breaking** The SpanExporter::export() method no longer requires a mutable reference to self.
12
Before:
13
```rust
14
- async fn export(&mut self, _batch: LogBatch<'_>)
15
- -> LogResult<()>`
+ async fn export(&mut self, batch: Vec<SpanData>) -> OTelSdkResult
16
```
17
After:
18
19
- async fn export(&self, _batch: LogBatch<'_>) ->
20
- LogResult<()>`
+ async fn export(&self, batch: Vec<SpanData>) -> OTelSdkResult
21
22
Custom exporters will need to internally synchronize any mutable state, if applicable.
23
0 commit comments