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

This commit is contained in:
J. Nick Koston
2026-04-18 08:04:51 -05:00
committed by GitHub
parent ec9d59f3dc
commit ccb53e34ca

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.
*