mass-project / mass_server

Malware Analysis and Storage System - Server repository
https://mass-project.github.io/
MIT License
12 stars 4 forks source link

Scheduling won't start if debugging is configured #80

Open danielpanteleit opened 7 years ago

danielpanteleit commented 7 years ago

Scheduling should start even if debugging is configured:

mass_server/mass_flask_scheduling/config.py

fabian-marquardt commented 7 years ago

Can you provide some more information, e.g. how are you starting the server?

danielpanteleit commented 7 years ago

We use this server configuration:

from mass_flask_config.config_base import BaseConfig

class Config(BaseConfig):
    DEBUG = True
    MONGODB_SETTINGS = {
        'host': 'mongodb://mongo.docker:27017/mass',
        'tz_aware': True
    }