oggers commented on issue #11165: URL: https://github.com/apache/incubator-superset/issues/11165#issuecomment-704789744
In my case I had the same error yesterday. The problem was a postgresql instance running on the same host. I ended up changing the port on docker-compose.yml file and it worked: ` db:` ` env_file: docker/.env` ` image: postgres:10` ` container_name: superset_db` ` restart: unless-stopped` ` ports:` ` - "127.0.0.1:5433:5432"` ` volumes:` ` - db_home:/var/lib/postgresql/data` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
