Projet

Général

Profil

0002-debian-debian_config_common.py-add-inline-documentat.patch

Christophe Siraut, 17 avril 2018 15:45

Télécharger (980 octets)

Voir les différences:

Subject: [PATCH 2/2] debian/debian_config_common.py: add inline documentation
 about DISABLE_CRON_JOBS (#15470)

 debian/debian_config_common.py | 6 ++++++
 1 file changed, 6 insertions(+)
debian/debian_config_common.py
24 24

  
25 25
EMAIL_SUBJECT_PREFIX = '[%s] ' % PROJECT_NAME
26 26

  
27
# For high availability installations with multiple instances of Publik
28
# components, one should disable cron jobs execution on secondary servers;
29
# set the following variable True disables all tenant_commands launched with
30
# option "--all-tenants".
31
DISABLE_CRON_JOBS = False
32

  
27 33
LOGGING = {
28 34
    'version': 1,
29 35
    'disable_existing_loggers': True,
30
-