aboutsummaryrefslogtreecommitdiff
path: root/scripts/test_scripts/hub_load_test.py
diff options
context:
space:
mode:
authorDan Engelbrecht <[email protected]>2026-04-20 15:53:22 +0200
committerGitHub Enterprise <[email protected]>2026-04-20 15:53:22 +0200
commit28a61b12d302e9e0d37d52bf1aa5d19069f3411b (patch)
tree07cd367f4933364781ea69c350025b1b6b703174 /scripts/test_scripts/hub_load_test.py
parentzen-test: add CLI integration harness + TestArtifactProvider + CI host stats ... (diff)
downloadarchived-zen-28a61b12d302e9e0d37d52bf1aa5d19069f3411b.tar.xz
archived-zen-28a61b12d302e9e0d37d52bf1aa5d19069f3411b.zip
zen history command (#987)
- Feature: Per-user invocation history for `zen` and `zenserver`; each startup appends a record to a JSONL file capped at the most recent 100 entries. Location: `%LOCALAPPDATA%\Epic\Zen\History\invocations.jsonl` on Windows, `~/.zen/History/invocations.jsonl` on POSIX - `zen history` opens an interactive picker; selecting a zen row re-runs it inline and forwards the exit code, selecting a zenserver row spawns it detached - `zen history --list` (`-l`) prints the table to stdout instead of showing the picker - `zen history --filter zen|zenserver` restricts the listing to one executable - `zen history --print` prints the reconstructed command line of the selected row instead of launching it - `--enable-execution-history` global option on both binaries (default `true`) to opt out per invocation - The history file is attached to Sentry crash reports (alongside the existing zenserver log)
Diffstat (limited to 'scripts/test_scripts/hub_load_test.py')
-rw-r--r--scripts/test_scripts/hub_load_test.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/test_scripts/hub_load_test.py b/scripts/test_scripts/hub_load_test.py
index 7bff1eb37..33f05d90f 100644
--- a/scripts/test_scripts/hub_load_test.py
+++ b/scripts/test_scripts/hub_load_test.py
@@ -183,6 +183,7 @@ def _start_hub(
cmd = [
str(zenserver_exe),
"hub",
+ "--enable-execution-history=false",
f"--data-dir={data_dir}",
f"--port={port}",
"--hub-instance-http-threads=8",