File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed
Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -240,11 +240,15 @@ class is just a descriptor for how that object functions, and what behavior
240240 the installer's identity to the organization integration
241241 """
242242
243- is_cell_restricted : bool = False
244- """
245- Returns True if each integration installation can only be connected on one cell of Sentry at a
246- time. It will raise an error if any organization from another cell attempts to install it.
247- """
243+ # TODO(cells): Remove once jira integration is updated and works for multi-cell.
244+ # No integrations should be cell restricted.
245+ @property
246+ def is_cell_restricted (self ) -> bool :
247+ """
248+ Returns True if each integration installation can only be connected on one cell of Sentry at a
249+ time. It will raise an error if any organization from another cell attempts to install it.
250+ """
251+ return False
248252
249253 features : frozenset [IntegrationFeatures ] = frozenset ()
250254 """can be any number of IntegrationFeatures"""
You can’t perform that action at this time.
0 commit comments