Michèl Breevoort

Results 5 comments of Michèl Breevoort

We used the autoincrement with JdbcEventStore and got gaps of 2 ids every insert. With a memory usage of more than 900MB of EventStore objects. In a post Allard says...

> Interesting... trying to add the host through the UI I get the above error. Using this command adds it and works for future connection: > virt-manager -c 'qemu+ssh://user@libvirthost/system?socket=/var/run/libvirt/libvirt-sock' With...

with the latest trivy image **no problems** anymore: docker.io/aquasec/trivy With option --vuln-type os https://hub.tekton.dev/tekton/task/trivy-scanner uses `docker.io/aquasec/trivy@sha256:dea76d4b50c75125cada676a87ac23de2b7ba4374752c6f908253c3b839201d9` and will hang until timeout with option --vuln-type os So probably a version problem?...

I got UnrecognizedBrokerVersion problems connecting today with kafka version `2.1.0` and security_protocol='SASL_SSL'. My solution was to disable TLSv1 ``` context = ssl.create_default_context() context.options &= ssl.OP_NO_TLSv1 context.options &= ssl.OP_NO_TLSv1_1 context.load_verify_locations(cafile=/secure/cacerts) context.check_hostname...