Vivien Maisonneuve
Vivien Maisonneuve
I beg to differ: JWTs are typically sent by clients, and should be considered as untrusted input. I agree the JWT is invalid, but I think a proper exception should...
I am running into a very similar issue with Python 3, running New Relic with Flask's demo app Flaskr (https://github.com/pallets/flask/tree/0.12.2/examples/flaskr), both in a Docker container and directly on the host....
As a workaround, I wrote the following script `python3.x`: ```bash #!/usr/bin/env bash set -euo pipefail SCRIPT_NAME="$(basename "${BASH_SOURCE[0]}")" if [[ "${SCRIPT_NAME}" =~ ^python3\.[0-9]+$ ]]; then PYTHON_VERSION="${SCRIPT_NAME#python}" else 2>&1 echo "Error: Invalid...
There is a neat workaround used in Litestar: * A `full` extra includes all other extras (https://github.com/litestar-org/litestar/blob/f31ef97d6cb725bf9898f55abbb5150b36823f27/pyproject.toml#L85-L87) * `litestar[full]` is part of the `dev` dependency group (https://github.com/litestar-org/litestar/blob/f31ef97d6cb725bf9898f55abbb5150b36823f27/pyproject.toml#L119-L121) This way, the...
Also, I had to add this to my zshrc to prevent zsh from changing the order of suggestions: ```zsh zstyle ':completion:*:*:my-program:*:*' sort false ``` Not necessarily a problem, but it...
> We generally want things sorted according to our order. We tweaked bash to ensure this. If you know how to do insert this in our script to be respected,...