@@ -146,9 +146,8 @@ def poll_tempest_crashes(credentials_id: int, **kwargs) -> None:
146146 project_id = project_id , trigger = "tempest:poll_tempest_crashes"
147147 )
148148
149- # Check if we should attach screenshots and or dumps (opt-in features )
149+ # Check if we should attach screenshots (opt-in feature )
150150 attach_screenshot = credentials .project .get_option ("sentry:tempest_fetch_screenshots" )
151- attach_dump = credentials .project .get_option ("sentry:tempest_fetch_dumps" )
152151
153152 response = fetch_items_from_tempest (
154153 org_id = org_id ,
@@ -159,7 +158,7 @@ def poll_tempest_crashes(credentials_id: int, **kwargs) -> None:
159158 offset = int (credentials .latest_fetched_item_id ),
160159 limit = options .get ("tempest.poll-limit" ),
161160 attach_screenshot = attach_screenshot ,
162- attach_dump = attach_dump ,
161+ attach_dump = True , # Always fetch for symbolication
163162 )
164163 else :
165164 raise ValueError (
@@ -227,7 +226,7 @@ def fetch_items_from_tempest(
227226 offset : int ,
228227 limit : int = 10 ,
229228 attach_screenshot : bool = False ,
230- attach_dump : bool = False ,
229+ attach_dump : bool = True ,
231230 time_out : int = 50 , # Since there is a timeout of 45s in the middleware anyways
232231) -> Response :
233232 payload = {
0 commit comments