You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description of the problem, including code/CLI snippet
Some arguments expect a boolean value but these are not actually parsed as the Config Parser only looks at the sections in the config file and expect the value
Trying to disable ssl-verify by argument:
# docker run --rm -it registry.gitlab.com/python-gitlab/python-gitlab:latest --ssl-verify false --debug user list
Impossible to list objects (Could not find a suitable TLS CA certificate bundle, invalid path: false)
By env. var:
# docker run --rm -it -e GITLAB_SSL_VERIFY=false registry.gitlab.com/python-gitlab/python-gitlab:latest user list
Impossible to list objects (Could not find a suitable TLS CA certificate bundle, invalid path: false)
Expected Behavior
Expected SSL/TLS cert. verification to be turned off.
Actual Behavior
The string "false" is used as a path.
Specifications
python-gitlab version: 4.1.0
API version you are using (v3/v4): not applicable
Gitlab server version (or gitlab.com): not applicable