willbarrett edited a comment on issue #10055: URL: https://github.com/apache/incubator-superset/issues/10055#issuecomment-654435317
@syazwan0913 we discovered that the dependency issue was due to an unnamed Docker volume that carried the older dependency forward. We've run this to blow away our docker volumes locally and resolve the issue: ``` docker stop $(docker ps -aq) docker rm $(docker ps -aq) docker system prune -a ``` This does blow away all of the data in the dockerized database volume, so it's not a perfect solution. Leaving this open in case a better solution presents itself. ---------------------------------------------------------------- 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]
