Open apasel422 opened 3 months ago
Consider the following scenario:
S
max_event_level_reports = 1
T1
D1
100
R1
T2
D2
200
R2
T3
300
This might be surprising behavior, as arguably D1 should have been deleted when R1 was.
Consider the following scenario:
S
is registered withmax_event_level_reports = 1
.T1
with dedup keyD1
and priority100
is attributed toS
, creating reportR1
.T2
with dedup keyD2
and priority200
is attributed toS
, causingR1
to be replaced with a new reportR2
.T3
with dedup keyD1
and priority300
is attributed toS
. No report is created, because the dedup keyD1
is still associated withS
.This might be surprising behavior, as arguably
D1
should have been deleted whenR1
was.