We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9ebc4f commit 91080f3Copy full SHA for 91080f3
src/frequenz/sdk/timeseries/formula_engine/_formula_steps.py
@@ -541,6 +541,11 @@ async def _fetch_next(self) -> Sample[QuantityT] | None:
541
if is_primary_value_valid:
542
# Primary stream is good again, so we can stop fallback and return primary_value.
543
if self._fallback.is_running:
544
+ _logger.info(
545
+ "Primary metric %s is good again, stopping fallback metric fetcher %s",
546
+ self._name,
547
+ self._fallback.name,
548
+ )
549
await self._fallback.stop()
550
return primary_value
551
0 commit comments