Christian Köhn

Results 5 issues of Christian Köhn

Environment: - python (3.4.2) - django (1.8.16) - mysqlclient (1.3.7) - MariaDB (10.0.30) Steps to reproduce: - `CREATE DATABASE utf8mb4_test DEFAULT CHARACTER SET utf8mb4 DEFAULT COLLATE utf8mb4_unicode_ci;` - `python manage.py...

bug

Currently the certificate rotation cronjob for the clients and nodes is rendered even if `tls.enabled` is disabled. https://github.com/cockroachdb/helm-charts/blob/da0ac4372c7b34144a904c4999fbc1fb17676895/cockroachdb/templates/cronjob-client-node-certSelfSigner.yaml#L1 The check should be similar to https://github.com/cockroachdb/helm-charts/blob/da0ac4372c7b34144a904c4999fbc1fb17676895/cockroachdb/templates/cronjob-ca-certSelfSigner.yaml#L1

Based on the report in https://github.com/emissary-ingress/emissary/issues/4155 the API version `v3alpha1` only accepts an `object`. `string` and `bool` are not accepted anymore and should be removed from the documentation and the...

This change will gracefully handle invalid authorization parameters. fixes #2955

### Steps to reproduce ``` >>> from werkzeug.datastructures import Authorization >>> Authorization.from_header("Digest =foo") --------------------------------------------------------------------------- IndexError Traceback (most recent call last) Cell In[2], line 1 ----> 1 Authorization.from_header("Digest =foo") File ~/Downloads/.venv/lib/python3.12/site-packages/werkzeug/datastructures/auth.py:114,...