Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
66ee6b4
Refactor AppHarness to use reflex run subprocess instead of threads
devin-ai-integration[bot] Jul 10, 2025
b7442dc
Fix subprocess implementation issues in AppHarness
devin-ai-integration[bot] Jul 10, 2025
bb9b67f
Fix subprocess implementation with shell=True approach
devin-ai-integration[bot] Jul 10, 2025
aa3bb78
run prod servers with `python -m` to avoid PATH issues
masenf Jul 12, 2025
e20c257
human fixups
masenf Jul 12, 2025
2daaad3
Fix darglint error by adding docstring to consume_output function
devin-ai-integration[bot] Jul 12, 2025
6186d1b
Merge remote changes and fix all darglint errors
devin-ai-integration[bot] Jul 12, 2025
295f037
Fix pre-commit
masenf Jul 14, 2025
acbe9d0
Fix test_lifespan import error
masenf Jul 14, 2025
7d4bb92
Fix test_input against timing race
masenf Jul 14, 2025
1fdfc06
Add REFLEX_ERROR_LOG_FILE
masenf Jul 14, 2025
2617c67
AppHarness: simplify subprocess output handling
masenf Jul 14, 2025
bc3049a
test_exception_handlers use new-style methods to get reflex output
masenf Jul 14, 2025
02c3d69
Remove unused fields from AppHarness
masenf Jul 15, 2025
8132833
test_deploy_url: check url via sitemap.xml
masenf Jul 15, 2025
9da5526
test_large_state: disable 10k
masenf Jul 15, 2025
a88e9f0
test_stateless_app: update check URLs
masenf Jul 15, 2025
42e2093
Unset REFLEX_REACT_STRICT_MODE after harness exits
masenf Jul 15, 2025
50e5a5c
Merge remote-tracking branch 'origin/main' into devin/ENG-6317-175218…
masenf Jul 15, 2025
8b3b2e9
also ignore AccessDenied and keep trying
masenf Jul 15, 2025
45819bc
fix missing rx import
masenf Jul 15, 2025
3ca7990
extra delay before bringing backend back up
masenf Jul 15, 2025
e7c6b39
test_connection_banner: wait for backend port to free up
masenf Jul 15, 2025
874d14d
test_connection_banner: wait longer for port to free up
masenf Jul 15, 2025
a709884
test_connection_banner: wait even longer (120s) for the port to free up
masenf Jul 16, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions reflex/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -650,6 +650,9 @@ class EnvironmentVariables:
# Enable full logging of debug messages to reflex user directory.
REFLEX_ENABLE_FULL_LOGGING: EnvVar[bool] = env_var(False)

# The path to the reflex errors log file. If not set, no separate error log will be used.
REFLEX_ERROR_LOG_FILE: EnvVar[Path | None] = env_var(None)


environment = EnvironmentVariables()

Expand Down
Loading