Skip to content

Commit 2549975

Browse files
committed
Add FIXME (#7183)
1 parent 1f59691 commit 2549975

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

environment.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -947,5 +947,8 @@ def env() -> Mapping[str, Optional[str]]:
947947

948948
# Whether to enable bundle notifications for incremental index changes
949949
#
950+
# FIXME: Enable bundle notifications again #7183
951+
# https://github.com/DataBiosphere/azul/issues/7183
952+
#
950953
'AZUL_ENABLE_BUNDLE_NOTIFICATIONS': '0'
951954
}

scripts/generate_openapi_document.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ def main():
5353
patch_config('enable_log_forwarding', False),
5454
patch_config('enable_replicas', True),
5555
patch_config('monitoring_email', '[email protected]'),
56+
# FIXME: Remove patch once bundle notifications are enabled again
57+
# https://github.com/DataBiosphere/azul/issues/7183
5658
patch_config('enable_bundle_notifications', True)
5759
):
5860
lambda_endpoint = furl('http://localhost')

test/azul_test_case.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,8 @@ def setUpClass(cls) -> None:
242242
cls._patch_dss_query_prefix()
243243
cls._patch_lambda_env()
244244
cls._patch_valid_schema_domains()
245+
# FIXME: Remove patch once bundle notifications are enabled again
246+
# https://github.com/DataBiosphere/azul/issues/7183
245247
cls._patch_enable_bundle_notifications()
246248

247249
def setUp(self) -> None:

0 commit comments

Comments
 (0)