Andreas Ahlenstorf

Results 17 issues of Andreas Ahlenstorf

The umbrella issue is #205. We need to tests whether Linux packages can be installed at all. Things we have to check: * **Does the package install at all?** This...

enhancement

[setMultiplier()](https://github.com/spring-projects/spring-retry/blob/main/src/main/java/org/springframework/retry/backoff/ExponentialBackOffPolicy.java#L140) in ExponentialBackoffPolicy allows a minimum multiplier of 1.0. However, the [corresponding builder method in RestTemplateBuilder](https://github.com/spring-projects/spring-retry/blob/main/src/main/java/org/springframework/retry/support/RetryTemplateBuilder.java#L202) insists on a minimum multiplier greater than 1.0. There's even a test for it....

bug

It would be nice if all kinds of intervals and durations could be expressed as [java.time.Duration](https://docs.oracle.com/en/java/javase/20/docs/api/java.base/java/time/Duration.html) in addition to a `long` of milliseconds. It would make it easier to understand...

https://github.com/AdoptOpenJDK/jlink.online/blob/e0b932e90aef03350e1a757b62d5b6c6c64fe530/jlink_test.go#L106 fails on Windows. The reason is that the tar.gz for Linux contains symlinks. Those cause `archiver.Unarchive()` to fail (as well as 7zip, so not archiver's fault) with the following...

bug

Explicitly discuss the event lifecycle and some of its consequences that are not obvious, at least based on my experience and some of the issues. Feel free to take what...

The chapter documentation "Working with Application Events" is vague about what happens when events are published without an ongoing transaction or when event handlers are solely annotated with `@EventListener`. While...

`@SpringBootTest` (as of Spring Boot 3.4.0 M3) defines additional parameters not present in `@ApplicationModuleTest`: `properties`, `useMainMethod`, and `args`. I especially miss `properties`. For example, I use it to tell Flyway...

in: test support
meta: waiting for feedback
type: improvement