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 committed by GitHub
parent b270ff335d
commit 4a0067a2c5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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