Oliver Blaha

Results 10 issues of Oliver Blaha

## Describe the bug Auto-balancing keeps adding and removing replicas even though there are no other destinations to balance them to. Apparently, this happens if - number of nodes with...

kind/bug
area/manager
feature/scheduling

Newer versions of raspbian have a kernel8.img, which won't get removed when running the installation. When installing an older version than buster, e.g. stretch incorrectly boots the 64bit kernel for...

Background: - I have a helm-installed application that needs persistent storage. - I would like to store its data in a PV that is retained if the pod and its...

See https://github.com/kotest/kotest/issues/3877. This slightly changes current behavior, as exceptional years (can be divided by four, but are not leap years, like 1900 or 2100) will also have an edge case...

Hi, `Arb.localDate(LocalDate.MIN, LocalDate.MAX)` tries to build a list of all February 28s/29s, which would be approximately 1 billion dates. That's not only horribly slow, but easily leads to OutOfMemoryError. I'm...

bug 🐛
good-first-issue 👶
assertions 🔍

Hi, From the docs of Arb.localDate(): > This generator creates randomly generated LocalDates, in the range [minDate, maxDate] However, it only generates [minDate, maxDate), means maxDate will never be among...

Newer versions of Raspberry OS enforce interactive user setup, breaking headless setup. It's possible to opt out by having a userconf or userconf.txt file present (similar to ssh/ssh.txt for enabling...

Test case: `Arb.list(Arb.constant(null), 1..100).edgecases().forAll { }` Expected: Passes and generates lists of null with a variable length. Actual: `java.util.NoSuchElementException: Collection is empty.` in collections.kt, Line 108. Note: This passes if...

This would address https://github.com/kotest/kotest/issues/4029 and make return types of edgecase and sample consistent. Caveat: it requires any edgecaseFn (e.g., in arbitrary calls) to define a function that returns a Sample...

This shall pass the regression test for https://github.com/kotest/kotest/issues/4016 while avoiding the original problem from https://github.com/kotest/kotest/issues/3981. For proper support of nullability in edge cases, see https://github.com/kotest/kotest/issues/4029.