Skip to content

Commit cc2f3c7

Browse files
ref(normalization): Reduce processor module visibility (#2729)
The are a lot of tests requiring `NormalizeProcessor` in `transactions/processor.rs`, forcing higher visibility than necessary on `normalize/processor.rs`. This PR moves required tests from one module to another, thus reducing the required module visibility. As we continue to refactor the processors, we'll find a better home for functions and tests.
1 parent 9bc2457 commit cc2f3c7

File tree

5 files changed

+1875
-1883
lines changed

5 files changed

+1875
-1883
lines changed

relay-event-normalization/src/normalize/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ use crate::{
3030

3131
pub mod breakdowns;
3232
pub mod nel;
33-
pub(crate) mod processor;
3433
pub mod span;
3534
pub mod user_agent;
3635
pub mod utils;
3736

3837
mod contexts;
3938
mod logentry;
4039
mod mechanism;
40+
mod processor;
4141
mod request;
4242
mod stacktrace;
4343

0 commit comments

Comments
 (0)