File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/sentry/dynamic_sampling/rules
tests/sentry/api/endpoints Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ class RuleType(Enum):
49
49
},
50
50
{"id" : RuleType .IGNORE_HEALTH_CHECKS_RULE .value , "active" : True },
51
51
{"id" : RuleType .BOOST_KEY_TRANSACTIONS_RULE .value , "active" : True },
52
- {"id" : RuleType .BOOST_LOW_VOLUME_TRANSACTIONS .value , "active" : False },
52
+ {"id" : RuleType .BOOST_LOW_VOLUME_TRANSACTIONS .value , "active" : True },
53
53
]
54
54
RESERVED_IDS = {
55
55
RuleType .UNIFORM_RULE : 1000 ,
Original file line number Diff line number Diff line change @@ -1336,7 +1336,7 @@ def test_get_dynamic_sampling_biases_manually_set_biases(self):
1336
1336
},
1337
1337
{"id" : "ignoreHealthChecks" , "active" : True },
1338
1338
{"id" : "boostKeyTransactions" , "active" : True },
1339
- {"id" : "boostLowVolumeTransactions" , "active" : False },
1339
+ {"id" : "boostLowVolumeTransactions" , "active" : True },
1340
1340
]
1341
1341
1342
1342
def test_get_dynamic_sampling_biases_with_previously_assigned_biases (self ):
@@ -1363,7 +1363,7 @@ def test_get_dynamic_sampling_biases_with_previously_assigned_biases(self):
1363
1363
},
1364
1364
{"id" : "ignoreHealthChecks" , "active" : True },
1365
1365
{"id" : "boostKeyTransactions" , "active" : True },
1366
- {"id" : "boostLowVolumeTransactions" , "active" : False },
1366
+ {"id" : "boostLowVolumeTransactions" , "active" : True },
1367
1367
]
1368
1368
1369
1369
def test_dynamic_sampling_bias_activation (self ):
You can’t perform that action at this time.
0 commit comments