John Belmonte
John Belmonte
Thank you. I confirmed we do not set `-search.maxStalenessInterval`, `-search.maxLookback`, or `max_lookback` query arg. I tried `last_over_time(info[d])` for various `d`, and it did not help. > [or] adjust config options...
I can't explain exactly, but switching such panels from Grafana "Timeseries (old)" to "Timeseries" seemed to resolve these problems. I know the new panel implementation handles step sizes much differently.
I see. It's a little troubling because we don't want to lose accuracy of individual points as we zoom out, and some queries are used for analytics.
The problem is still observed with v1.72.0 (stale markers are enabled). 
The `latencyOffset` parameter makes sense-- it's attempting to ensure that all metrics have been collected for the most recent time buckets before serving results based on them. However I don't...
I'm still not understanding why pylint can infer this case correctly: ```python def func(i) -> Optional[Tuple]: return (i, i) if i else None print(func(1)[0]) # OK print(func(0)[0]) # unsubscriptable-object ```...
This seems to be a regression, because it was working for me last year. I wonder if the culprit is [pyproject-hooks](https://github.com/pypa/pyproject-hooks) and/or the `pyproject.toml` transition.
I've confirmed the discrepancy of `-r` vs. direct specifier this far: * in both cases, `ConfiguredBuildBackendHookCaller.prepare_metadata_for_build_wheel()` is called with `config_settings=None` * `prepare_metadata_for_build_wheel()` ignores `config_settings` anyway, and defers to `self.config_holder.config_settings` *...
here are backtraces for bad (passing `config_settings=None`) and good cases: bad (`-r`) ```python Traceback (most recent call last): File "/.../pip/src/pip/_internal/cli/base_command.py", line 180, in exc_logging_wrapper status = run_func(*args) File "/.../pip/src/pip/_internal/cli/req_command.py", line...
in CLI `get_requirements()`: `install_req_from_parsed_requirement()` case: ```python config_settings=parsed_req.options.get("config_settings") if parsed_req.options else None ``` `install_req_from_line()` case: ```python config_settings=getattr(options, "config_settings", None) ``` So the code is clearly only expecting config_settings from the requirements...