1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-12 16:22:22 +01:00
This commit is contained in:
J. Nick Koston
2025-07-06 10:12:14 -05:00
parent 04336f7ba3
commit 6bb32c2e61

View File

@@ -38,7 +38,7 @@ void SchedulerRapidCancellationComponent::run_rapid_cancellation_test() {
std::string name = ss.str(); std::string name = ss.str();
// All threads schedule timeouts - this will implicitly cancel existing ones // All threads schedule timeouts - this will implicitly cancel existing ones
this->set_timeout(name, 100, [this, name]() { this->set_timeout(name, 150, [this, name]() {
this->total_executed_.fetch_add(1); this->total_executed_.fetch_add(1);
ESP_LOGI(TAG, "Executed callback '%s'", name.c_str()); ESP_LOGI(TAG, "Executed callback '%s'", name.c_str());
}); });