David Leonhart
David Leonhart
As the title says. 1. is this already supported by diplomat and I am just to dumb to find it? 2. otherwise would it be possible to implement it without...
Also includes one additional commit which fixes a typespec
**Is your feature request related to a problem? Please describe.** With cloudflow 2.0.22 it is not possible to configure the `imagePullPolicy` for images when deploying to k8s. This makes it...
I haven't found a good comparison of blitz4j vs the new log4j2 async logger. Can somebody give me a short answer if it is worth to change to blitz4j if...
First of all, thank u so much for sharing this! It really saved me sooo much trouble! Thank you. This is a question rather than an issue. As the title...
I think its prevered to have a Map to be able to use anything as a key. Especially existing value types or enums are good keys. In my case I...
We have code like this in one of our saga base classes: ``` @EventHandler public final void handleTimeout(final Timeout timeout) { if (state().removePendingTimeoutId(timeout.getId())) { onTimeout(timeout.getId(), timeout.getName(), timeout.getData()); } else {...