-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
chore(ACI): Remove installation uuid from RPC method #107982
New issue
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
Changes from all commits
2c93839
98fa78d
5ceb8ea
331d3b8
590c585
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -36,26 +36,24 @@ def update_action_status_for_organization_integration( | |
|
|
||
| @regional_rpc_method(resolve=ByOrganizationId()) | ||
| @abc.abstractmethod | ||
| def update_action_status_for_sentry_app_via_uuid( | ||
| def update_action_status_for_sentry_app_installation( | ||
| self, | ||
| *, | ||
| organization_id: int, | ||
| status: int, | ||
| sentry_app_install_uuid: str | None = None, | ||
| sentry_app_id: int | None = None, | ||
| sentry_app_id: int, | ||
| ) -> None: | ||
| pass | ||
|
|
||
| @regional_rpc_method(resolve=ByRegionName()) | ||
| @abc.abstractmethod | ||
| def update_action_status_for_sentry_app_via_uuid__region( | ||
| def update_action_status_for_sentry_app_installation__region( | ||
| self, | ||
| *, | ||
| region_name: str, | ||
| status: int, | ||
| sentry_app_install_uuid: str | None = None, | ||
| organization_id: int | None = None, | ||
| sentry_app_id: int | None = None, | ||
| organization_id: int, | ||
| sentry_app_id: int, | ||
|
Comment on lines
+55
to
+56
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should probably be a new RPC method versus an in-place replacement. Additionally, we probably want to phase this out in 3 parts:
Reason being, when this deploys to DE or US as-is, control will continue to send old |
||
| ) -> None: | ||
| pass | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.