From 92c0a66b343547a5756c3399eab3f76a94a222df Mon Sep 17 00:00:00 2001 From: Khaleel Al-Adhami Date: Thu, 13 Feb 2025 17:00:32 -0800 Subject: [PATCH] fix comment --- reflex/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reflex/app.py b/reflex/app.py index d4c831868..e25ccd805 100644 --- a/reflex/app.py +++ b/reflex/app.py @@ -1173,8 +1173,8 @@ class App(MiddlewareMixin, LifespanMixin): executor_type = environment.REFLEX_COMPILE_EXECUTOR.get() - # Use a forking process pool, if possible. Much faster, especially for large sites. - # Fallback to ThreadPoolExecutor as something that will always work. + # By default, use the main thread. Unless the user has specified a different executor. + # Using a process pool is much faster, but not supported on all platforms. It's gated behind a flag. if executor_type is None: reflex_compile_processes = environment.REFLEX_COMPILE_PROCESSES.get() reflex_compile_threads = environment.REFLEX_COMPILE_THREADS.get()