ollofx
ollofx
``` echo "hello {{ toto }}, I'm {{ titi }}" > input.file jinja2 --strict -D "titi=test" -o output.file input.file ``` then jinja2cli issues exception which is the expected behavior, but...
https://github.com/requests/requests-oauthlib/commit/9188065809f0a783af4c6d83c4562e1be112114b this is an issue, as it sends to the request_token url anything passed to a regular request and add it to the body of refresh_token is there any justification...
I had full queue issue: [SplunkHandler] Log queue full; log data will be dropped. so I investigate the reason because I didn't find anything excessive from my logging bandwidth specifically...
when any script in /docker-entrypoint-initdb.d/* fails the whole docker-entrypoint.sh fails but without shutting down the temporary forked mongod https://github.com/docker-library/mongo/blob/9db9e3d4704f5d963e424a3894fa740b8ce4ea70/4.4/docker-entrypoint.sh#L304 ``` function shutdown { "${mongodHackedArgs[@]}" --shutdown rm -f "$pidfile" } #...
```yaml container_env: mongo_servers: '{{ mongo_servers | to_json }}' ``` consider creation of ENV variable on into Docker Container, couldn't pass object but a serialized json string. ```json "mongo_servers": [ {...
add_resource method of Api class searches for declared methods ['GET','POST'...] inside: f = resource.dict.get(method, None) dict only reflect the local class methods to be able to reflect base class method...