Kevin Valk
Kevin Valk
This was via https://github.com/haiwen/seafile-docker/issues/396 and hence this PR can be closed.
After reading https://github.com/kubernetes/kubernetes/issues/62872 I see the problem... Namely, you cannot use $refs to custom types nor to K8s native types. That sucks! Going through https://kubernetes.io/docs/concepts/storage/volumes/#volume-types you could argue that `local`...
Same here,in my case I dynamically connect via hostnames and my DNS server randomly decides to return WiFi IP or Ethernet IP where I would obviously prefer Ethernet (obviously many...
> Do you have a specific example that worked in 1.26.0 and fails in 1.27.0? It would help to have an exact case to understand what broke. Will create a...
**TL;DR; Make sure to provide a single address to `bind-address` and in the case of dual-stack ensure it is IPv4** For anyone else facing hours debugging this. In the case...
> Hmm, I'm using an ipv6 bind address without issue. I think that is intended if you provide node-ip, CIDRs ranges, etc with IPv6 family first and second entry is...
Super ugly monkey patch to get `certificate_check` working in version 1.13.3 of pygit2 ```python class MyCallbacks(pygit2.RemoteCallbacks): def certificate_check(testrepo, certificate, valid, host): logging.error("Yes I bypass stuff") return True def __setattr__(self, name:...
You can work around this by eating the `redis.exceptions.TimeoutError` yourself (NOTE: this is not a normal `TimeoutError` so please make sure you use `redis.exceptions.TimeoutError`). However, you get around a maximum...
This just bit me as well...
Yes I was also concerned as positive for me reads as >= 1. Luckily it is implemented as >= 0 which I verified by setting the id to zero (and...