snwbr commented on issue #20244: URL: https://github.com/apache/superset/issues/20244#issuecomment-1178970935
I had the same problem lately with Apache Airflow, but turns out Flask 1.1.4 was expecting a version of [`cachelib`](https://cachelib.readthedocs.io/en/stable/changes/) that I didn't installed. After version `0.6.0` cachelib started supporting a `hash_method` for the `FileSystemCache` backend. For my Airflow instance, installing `cachelib==0.9.0` resolved my problem with `FileSystemCache` backend. [This is the change](https://github.com/pallets-eco/cachelib/commit/104b5a2d501c96b3162038cae5f0fe394553aaf3#diff-d92af092facd98c08cffc0c3b3d548daccee2fd0bc290f0c93b91f2471f39906) that introduced such `hash_method` change. -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
