We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
sentry::ClientOptions
1 parent 813c5fc commit 20ee85bCopy full SHA for 20ee85b
1 file changed
bindings/matrix-sdk-ffi/src/platform.rs
@@ -2,8 +2,6 @@ use std::sync::OnceLock;
2
#[cfg(feature = "sentry")]
3
use std::sync::{atomic::AtomicBool, Arc};
4
5
-#[cfg(feature = "sentry")]
6
-use sentry::MaxRequestBodySize;
7
8
use tracing::warn;
9
use tracing_appender::rolling::{RollingFileAppender, Rotation};
@@ -481,7 +479,6 @@ impl TracingConfiguration {
481
479
})),
482
480
attach_stacktrace: true,
483
release: Some(env!("VERGEN_GIT_SHA").into()),
484
- max_request_body_size: MaxRequestBodySize::None,
485
..sentry::ClientOptions::default()
486
},
487
));
@@ -508,7 +505,6 @@ impl TracingConfiguration {
508
505
}
509
506
510
507
})
511
- .enable_span_attributes()
512
.span_filter({
513
let enabled = sentry_enabled.clone();
514
0 commit comments