Markus Thömmes
Markus Thömmes
There is a multitude of time-aware stages in akka-streams. For this specific use-case there are: * `takeWhile(time)`: Close the stream after consuming elements for `time`. * `idleTimeout(time)`: **Fails** the stream...
The current implementation of `Sink.combine` materializes to `NotUsed` for quite obvious reasons: There is no way of getting the materialization types of the `rest` parameter. Since `Sink.combine` is a super...
See exhaustive proposal here: https://docs.google.com/document/d/1vUDC_-qWei81QcjI8ZjZJ0Tc4SswUA1gBTSvBqy6CBY/edit?resourcekey=0-C_Yh8KqcLA6Mcr3CQs5Q1Q. I'll use this as an umbrella to link PRs to.
## In what area(s)? /area networking `TestHTTPProbeAutoHTTP2` is quite flaky currently and I almost went crazy trying to debug why. [The test failures look](https://prow.knative.dev/view/gcs/knative-prow/logs/ci-knative-serving-continuous/1371491603755044864) as if two sequential HTTP requests...
## In what area(s)? /area autoscale ## What version of Knative? All recent at least. ## Expected Behavior `autoscaling.knative.dev/minScale` holds the respective scale of a revision after it becomes ready....
When the activator is in the routing path, scraping the pods is kinda useless as their information is effectively zeroed out, because all requests are considered "proxied", thus the activator...
It seems like to achieve a "normal" shutdown of a websocket connection, one needs to do a dance like: 1. Send Close message 2. Wait for receiving a Close message...
The client is currently forced to use whitelist terminology due to dependencies See: https://github.com/knative/client/blob/b916a5b3ed356ad8fd0cbd91fbe511765c231bcf/pkg/kn/commands/options/options.go#L40 https://github.com/knative/client/blob/4a3cf245504a71eccec0b681bfc053c291e1cee2/cmd/kn/main_test.go#L163 https://github.com/knative/client/blob/8f7088f0c013f583d05abfe78325e177720c3ba3/cmd/kn/main.go#L76 https://github.com/knative/client/blob/5ed353d36b2a98e83d480e9167a46feeb9459004/pkg/kn/config/config.go#L107 There's already upstream proposals to change those, so let's make sure we consume...
Knative currently releases on a 6 week release cadence. That's awesome for getting features out quickly, but it makes it hard for downstream projects, that might be on a slower...
/kind bug ## Expected Behavior I can host as many class-based controllers (for example: Ingress reconcilers) as I want in a binary, as long as the classes don't clash. ##...