We might need to see your docker-compose.yml or bash script etc. you used 
to start up the container.

Grepping the sources I find the following in reportengine.py:

        # Iterate over each requested report
        for report in self.config_dict['StdReport'].sections:

            # Ignore the [[Defaults]] section
            if report == 'Defaults':
                continue

            # See if this report is disabled
            enabled = 
to_bool(self.config_dict['StdReport'][report].get('enable', True))
            if not enabled:
                log.debug("reportengine: Report '%s' not enabled. 
Skipping.", report)
                continue

            log.debug("reportengine: Running report '%s'", report)

            # Fetch and build the skin_dict:
            try:
                skin_dict = self._build_skin_dict(report)
            except SyntaxError:
                log.error("        ****  Report ignored")
                continue


-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/c840f1cf-f50b-43be-a098-bcf10f45abb8%40googlegroups.com.

Reply via email to