James Roper

Results 100 issues of James Roper

Currently we're using the JDK8 collector API for doing all terminal accumulations. It would be good to have an async alternative, eg `AsyncCollector`, where the `accumulator` and `finisher` functions return...

We might want to introduce some stream splitting functions. For example, a `splitWhen` function. This functionality is generally only useful when doing parsing, where you parse some sort of header...

I'm not sure if this applies to a broader scope, eg to methods or non static fields, but if I have a Java class with a static field: ``` java...

I don't know if this is possible, but given the overhead of running `genjavadoc` on every compile (which I don't know much about, but it's enough to warrant the Akka...

Currently multijvm just does a straight copy of jars from the classpath list to the jars directory. The problem with this is that when the classpath changes, any jars that...

bug

I've found myself needing this many times before, and have needed it on two separate occasions today. When a certain message passes through my flow, I want the flow to...

1 - triaged
help wanted
t:docs
t:stream
discuss

Docker buildkit can be enabled by setting the environment variable `DOCKER_BUILDKIT` to `1`. Sometimes, someone might be using buildkit features as part of the build, and need this to always...

feature request
docker

The current credential repository interface requires that all the invoked methods are handled synchronously. This doesn't work if you're using an asynchronous database driver in an asynchronous web framework, such...

enhancement

In multi-tenant cloud setups, the same Fluent Bit process may need to access AWS using different tenant provided AWS accounts. For example, we may want logs for tenant A's services...

Skuber assumes that watch events will always contain the object that is being watched, but if the event type is error, this isn't true, here's an example payload for error...