QA Session
Use this workflow when QA needs stable, repeatable runtime behavior for bug validation.
Session design
- freeze one known config revision
- avoid mid-session config edits
- keep test data setup explicit (oneshot services or scripts)
Example launch:
flowlayer-server -c ./flowlayer.qa.jsonc -s 127.0.0.1:6999 -token qa-token
During the session
- QA validates service states in TUI.
- QA reproduces the scenario.
- Team captures relevant logs with
get_logsandafter_seq. - Team restarts only impacted services (
restart_service) to keep context stable.
Why this helps
- one shared runtime view avoids conflicting local assumptions
- sequence numbers make log continuity explicit
- selective restart reduces rework during investigation
For log continuity details, see Logs and Snapshot vs Live Events.