Skip to content

Commit faf6036

Browse files
committed
Add FIXME (#7183)
1 parent e3d42eb commit faf6036

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
@@ -923,5 +923,8 @@ def env() -> Mapping[str, str | None]:
923923

924924
# Whether to enable bundle notifications for incremental index changes
925925
#
926+
# FIXME: Enable bundle notifications again #7183
927+
# https://github.com/DataBiosphere/azul/issues/7183
928+
#
926929
'AZUL_ENABLE_BUNDLE_NOTIFICATIONS': '0'
927930
}

scripts/generate_openapi_document.py

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

test/azul_test_case.py

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

248250
def setUp(self) -> None:

0 commit comments

Comments
 (0)