Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
properly parse NO_SSL env var (#126)
Bug fix: The default for `NO_SSL` environment variable is `False`. When the actual value, in runtime, is `True`, the code "ignores" it. The reason: the code does not parse the given string. So it evaluates a non empty string as "True". To resolve this, the suggested code parses the given string to a boolean value.
- Loading branch information