We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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.The text was updated successfully, but these errors were encountered: