You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hallo,
habe alles nach der Anleitung installiert hat auch funktioniert, bis zur configure.py danach kommt diese Meldung
configure.py:310: YAMLLoadWarning: calling yaml.load() without Loader=... is deprecated, as the default Loader is unsafe. Please read https://msg.pyyaml.org/load for full details. config = yaml.load(logging_config)
Jetzt weiß ich nicht weiter, da der alarmmonitor nicht startet und kein Dashboard erscheind.
The text was updated successfully, but these errors were encountered:
Sowohl in der configure.py (config = yaml.load(logging_config))
als auch in der main.py (logging_config = yaml.load(logging_config_file))
muss man Loader=yaml.FullLoader hinzufügen damit die Zeilen dann so aussehen(jede in ihrem File):
config = yaml.load(logging_config, Loader=yaml.FullLoader)
logging_config = yaml.load(logging_config_file, Loader=yaml.FullLoader)
Hallo,
habe alles nach der Anleitung installiert hat auch funktioniert, bis zur configure.py danach kommt diese Meldung
configure.py:310: YAMLLoadWarning: calling yaml.load() without Loader=... is deprecated, as the default Loader is unsafe. Please read https://msg.pyyaml.org/load for full details. config = yaml.load(logging_config)
Jetzt weiß ich nicht weiter, da der alarmmonitor nicht startet und kein Dashboard erscheind.
The text was updated successfully, but these errors were encountered: