1
0
mirror of https://github.com/esphome/esphome.git synced 2024-10-06 10:50:58 +01:00

Fix prometheus has wrong setup priority (#1211)

Fixes https://github.com/esphome/issues/issues/1377
This commit is contained in:
Otto Winter 2020-07-28 12:01:38 +02:00
parent 87f1ffec05
commit 2d50ecbecf
No known key found for this signature in database
GPG Key ID: 48ED2DDB96D7682C

View File

@ -26,6 +26,10 @@ class PrometheusHandler : public AsyncWebHandler, public Component {
this->base_->init();
this->base_->add_handler(this);
}
float get_setup_priority() const override {
// After WiFi
return setup_priority::WIFI - 1.0f;
}
protected:
#ifdef USE_SENSOR