-
-
Notifications
You must be signed in to change notification settings - Fork 76
migration(plugins): removes all plugins except slack and PD #538
Conversation
@@ -11,10 +11,6 @@ def pytest_configure(config): | |||
# Note: We could manually register/configure INSTALLED_APPS by traversing our entry points | |||
# or package directories, but this is easier assuming Sentry doesn't change APIs. | |||
# Note: Order of operations matters here. | |||
from sentry.runner.importer import install_plugin_apps | |||
|
|||
install_plugin_apps("sentry.apps", settings) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why did this get removed? Do slack/pd not need to be added to INSTALLED_APPS by sentry's importer?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually yeah, seems like we should keep this since there are still a couple plugins in sentry.apps
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@wedamija @joshuarli Hmmm? The only ones in that list were Jira, Jira AC, and SessionStack. All of those are now in sentry-core which has the entrypoint of sentry.new_apps
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@scefali Ah you're right, I understand now.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you post in #engineering and let people know they'll need to update their sentry-plugins if they pull master and are running getsentry? Just want to make sure we don't break people's devs again
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Paired with getsentry/sentry#15468
Must be merged after: https://github.com/getsentry/getsentry/pull/3309