We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa05899 commit 35095d9Copy full SHA for 35095d9
src/sentry/lang/native/symbolicator.py
@@ -1,5 +1,6 @@
1
import base64
2
import logging
3
+import random
4
import sys
5
import time
6
from urllib.parse import urljoin
@@ -325,10 +326,11 @@ def parse_sources(config):
325
326
327
328
def get_options_for_project(project):
329
+ compare_rate = options.get("symbolicator.compare_stackwalking_methods_rate")
330
return {
331
# Symbolicators who do not support options will ignore this field entirely.
332
"dif_candidates": features.has("organizations:images-loaded-v2", project.organization),
- "compare_stackwalking_methods": features.has("symbolicator:compare-stackwalking-methods"),
333
+ "compare_stackwalking_methods": random.random() < compare_rate,
334
}
335
336
0 commit comments