Browse Source

Add default value for email.reply.check.heartbeat config

Bastien Sevajol 7 years ago
parent
commit
2ce879593b
2 changed files with 1 additions and 0 deletions
  1. 1 0
      tracim/tracim/config/app_cfg.py
  2. 0 0
      tracim/wsgi.py

+ 1 - 0
tracim/tracim/config/app_cfg.py View File

@@ -375,6 +375,7 @@ class CFG(object):
375 375
         )
376 376
         self.EMAIL_REPLY_CHECK_HEARTBEAT = int(tg.config.get(
377 377
             'email.reply.check.heartbeat',
378
+            60,
378 379
         ))
379 380
         self.EMAIL_REPLY_TOKEN = tg.config.get(
380 381
             'email.reply.token',

tracim/app.wsgi → tracim/wsgi.py View File