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.
sync_assignee_outbound
sync_status_outbound
1 parent 33c27e8 commit a6b5a9fCopy full SHA for a6b5a9f
src/sentry/integrations/vsts/issues.py
@@ -307,6 +307,8 @@ def sync_assignee_outbound(
307
"issue_key": external_issue.key,
308
},
309
)
310
+ except Exception as e:
311
+ self.raise_error(e)
312
313
def sync_status_outbound(
314
self, external_issue: ExternalIssue, is_resolved: bool, project_id: int
@@ -360,6 +362,8 @@ def sync_status_outbound(
360
362
"exception": error,
361
363
364
365
366
367
368
def get_resolve_sync_action(self, data: Mapping[str, Any]) -> ResolveSyncAction:
369
done_states = self._get_done_statuses(data["project"])
0 commit comments