[core] Default PollingComponent() to 1ms when codegen is bypassed (#15831)

This commit is contained in:
J. Nick Koston
2026-04-18 09:04:51 -04:00
committed by GitHub
parent ec9d59f3dc
commit ccb53e34ca
+1 -1
View File
@@ -601,7 +601,7 @@ class Component {
*/
class PollingComponent : public Component {
public:
PollingComponent() : PollingComponent(0) {}
PollingComponent() : PollingComponent(1) {}
/** Initialize this polling component with the given update interval in ms.
*