Mike Brancato
Mike Brancato
After running some local tests and experiencing this, it seems the `datasource.Querier` `QueryRange()` and `Query()` methods return only values with the current timestamp when using a range-vector. The `QueryRange()` returns...
The grant I have the most issues with is configured just like @raul-verdi described above. Only a single `SELECT` permission on all tables in a database. It is the only...
I've opened #9 and that would also help solve this problem. Cert-manager in Kubernetes supports Vault as a backend PKI engine, but it must use the standard PKI API. Also,...
yes @evanrittenhouse - exactly that. I did have to dig into the dependency of `starlette` to identify that `httpx` was an "optional dependency". And that is where the documentation twice...
@remilapeyre - yes, I saw that thanks to your comment. I think the problem is I was doing some development and I was using a newer upstream `go-acme/lego`. Do you...
I recently hit this issue. For me, the best fix was setting the target burst capacity to `0` as recommended [here](https://github.com/knative/serving/issues/13583#issuecomment-1377339654). As I understand it, this takes the activator out...
@elprans ahh thanks, I was going by the documentation which excludes `execute()` for the built-in LRU cache of prepared statements and only includes `fetch*()`. ``` asyncpg automatically maintains a small...
Thanks for the suggestion @jackc There was a timeout on the context for `pgxpool.ConnectConfig(ctx, poolConfig)`. I moved it to simply `context.Background()` but it didn't seem to fix the issue. If...
Looking at this, would a context cancelled or timeout cause a connection to be disconnected? And does it notify the server to disconnect. I ask the latter because if there...