Coverage for gwcelery/conf/dev.py: 0%

9 statements  

« prev     ^ index     » next       coverage.py v7.4.4, created at 2024-05-02 18:24 +0000

1"""Application configuration for ``gracedb-test01.ligo.org``. 

2 

3Inherits all settings from :mod:`gwcelery.conf.playground`, with the exceptions 

4below. 

5""" 

6 

7from . import * # noqa: F401, F403 

8 

9igwn_alert_group = 'gracedb-test01' 

10"""IGWN alert group.""" 

11 

12gracedb_host = 'gracedb-test01.igwn.org' 

13"""GraceDB host.""" 

14 

15kafka_alert_config = { 

16 'scimma': {'url': 'kafka://kafka.scimma.org/igwn.gwalert-test01', 

17 'suffix': 'avro', 'skymap_encoder': lambda _: _} 

18} 

19"""Kafka broker configuration details""" 

20 

21sentry_environment = 'dev' 

22"""Record this `environment tag 

23<https://docs.sentry.io/enriching-error-data/environments/>`_ in Sentry log 

24messages.""" 

25 

26mock_events_simulate_multiple_uploads = True 

27"""If True, then upload each mock event several times in rapid succession with 

28random jitter in order to simulate multiple pipeline uploads.""" 

29 

30idq_channels = ['H1:IDQ-FAP_OVL_16_4096', 

31 'L1:IDQ-FAP_OVL_16_4096'] 

32"""Low-latency iDQ false alarm probability channel names for O3 replay.""" 

33 

34rapidpe_settings = { 

35 'run_mode': 'o3replay', 

36 'accounting_group': 'ligo.dev.o4.cbc.pe.lalinferencerapid', 

37 'use_cprofile': True, 

38} 

39"""Config settings used for rapidpe"""