From d4206de8e0f04e88aaf4d4abb378fef7ec1e9db2 Mon Sep 17 00:00:00 2001 From: Phin Jensen Date: Mon, 1 Dec 2025 12:04:32 -0700 Subject: [PATCH] docs: fix formatting of BaseCache import statement in docs (#36278) --- docs/docs/configuration/async-queries-celery.mdx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/docs/configuration/async-queries-celery.mdx b/docs/docs/configuration/async-queries-celery.mdx index 621d66bd369..10afa02a31a 100644 --- a/docs/docs/configuration/async-queries-celery.mdx +++ b/docs/docs/configuration/async-queries-celery.mdx @@ -52,11 +52,11 @@ To start a job which schedules periodic background jobs, run the following comma celery --app=superset.tasks.celery_app:app beat ``` -To setup a result backend, you need to pass an instance of a derivative of from -from flask_caching.backends.base import BaseCache to the RESULTS_BACKEND configuration key in your superset_config.py. You can -use Memcached, Redis, S3 (https://pypi.python.org/pypi/s3werkzeugcache), memory or the file system -(in a single server-type setup or for testing), or to write your own caching interface. Your -`superset_config.py` may look something like: +To setup a result backend, you need to pass an instance of a derivative of `BaseCache` (`from +flask_caching.backends.base import BaseCache`) to the RESULTS_BACKEND configuration key in your +superset_config.py. You can use Memcached, Redis, S3 (https://pypi.python.org/pypi/s3werkzeugcache), +memory or the file system (in a single server-type setup or for testing), or to write your own +caching interface. Your `superset_config.py` may look something like: ```python # On S3