We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For "postgres//..." it is possible to configure an alternative socket path. This is handled here: https://github.com/joke2k/django-environ/blob/master/environ/environ.py#L405
But this option is not enabled for postgist, making it not possible to configure a non standard socket path.
I guess it should be: if url.scheme == 'postgres' or url.scheme == 'postgis' and path.startswith('/'):
if url.scheme == 'postgres' or url.scheme == 'postgis' and path.startswith('/'):
The text was updated successfully, but these errors were encountered:
This is resolved in develop branch. Thank you for the report, and for helping us make django-environ better. And I am sorry about the delay.
develop
Sorry, something went wrong.
sergeyklay
No branches or pull requests
For "postgres//..." it is possible to configure an alternative socket path.
This is handled here: https://github.com/joke2k/django-environ/blob/master/environ/environ.py#L405
But this option is not enabled for postgist, making it not possible to configure a non standard socket path.
I guess it should be:
if url.scheme == 'postgres' or url.scheme == 'postgis' and path.startswith('/'):
The text was updated successfully, but these errors were encountered: