Stefan Berger

Results 26 comments of Stefan Berger

Just so I understand correctly: The rate limiting issues are fixed on OSS Index so a user account is not needed anymore? By the way, after I specified a user...

What I did to solve my problem for now is to forward anything from the request to a `Subscriber` with a `Sinks.many().multicast().onBackpressureBuffer(3000)` inside. Then I override the request Flux with...

@tmzk1005 Your `modifiedBody.then(mono1)` waits until the whole request is done, which is the same as caching the request. At that point, using `ServerWebExchangeUtils.cacheRequestBody()` and then reading the bytes from `exchange.getAttribute(CACHED_REQUEST_BODY_ATTR)`...

@robert-gdv The SOAP action can be read from the `Content-Type` HTTP header. It should look like this, normally: `Content-Type: application/soap+xml;action="urn:ihe:iti:2007:ProvideAndRegisterDocumentSet-b"` The action part of the Content-Type is optional, though. So...

This bug not only affects `findAll()`, all the other query methods will also return incorrect data. For example, `findAll(example, PageRequest.ofSize(1))` will often return an empty `Page` with `getTotal()` returning a...

I was interested in this issue myself, since my company also embeds Balana and logs would be nice to have. After much trial and error I found the solution. Since...

If you want log4j logging, you need to include the log4j jar in the classpath and define one of the files log4j looks for: https://logging.apache.org/log4j/2.x/manual/configuration.html If the file is not...

Except for a few typos and the TODO parts I think it's fine but why are you asking me?

Seems like your Jenkins provides the feature of using the status check API so it should be even easier to set up.

Here is a guide on how to set it up in Jenkins https://wiki.jenkins-ci.org/display/JENKINS/GitHub+Plugin