Jaakko Kantojärvi
Jaakko Kantojärvi
I'll allocate time this autumn for this. I'll include the nested route part, but I'll drop the hyperlink stuff for now. Crawlable APIs aren't a good solutions. OpenAPI/Swagger is way...
See https://github.com/drone/drone/pull/2994
Two ideas: 1. Ensure those compiled / cached files are really under `target` and not e.g. `$HOME/.cache/foobar`. I.e., are you really caching the data you assume you should? Note that...
I do think that distroless environment should not include `os.system` as it's not supposed to be full POSIX environment. Hence, I don't see reason to support that. If someone was...
Also present in `base-debian11`.
@davidjgraph thanks. It's perfect now :+1: I close this as fixed in 20.7.4 or before.
I noticed that the ansible-lint includes it's own yamllint config. The `min-space-from-content: 1` comes from it: https://github.com/ansible/ansible-lint/blob/main/src/ansiblelint/yaml_utils.py#L49-L70
I stumbled on this too. We have drone pipeline building set of images to ECR repo (using `drone-ecr`). To test that pipeline locally, I replace the steps with `drone-docker` and...
Stumbled on your issue and it baffled me. Looking at the code, your v5 example should work, as it should hot the `socket.connect`, which defines that `port` is a required...
I think you are misconfiguring axios. The code here loads the proxy variable from the environment: https://github.com/axios/axios/blob/v1.x/lib/adapters/http.js#L77 You need to use `false`, i.e., `request.proxy = false`. Please note that "proxy"...