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 68a67d5 commit 29be0a4Copy full SHA for 29be0a4
opentelemetry-sdk/CHANGELOG.md
@@ -8,6 +8,13 @@
8
transparent change.
9
[#2338](https://github.com/open-telemetry/opentelemetry-rust/pull/2338)
10
11
+- *Breaking* LogExporter::export() method doesn't take mutable reference to self:
12
+ Before:
13
+ async fn export(&mut self, _batch: LogBatch<'_>) -> LogResult<()>
14
+ After:
15
+ async fn export(&self, _batch: LogBatch<'_>) -> LogResult<()>
16
+ The custom exporters would need to internally synchronize their mutable states (if any)
17
+
18
## 0.27.1
19
20
Released 2024-Nov-27
0 commit comments