File tree Expand file tree Collapse file tree
cli/internal/agent/workerprobe Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ the optional security scans no longer make the workflow invalid when their
1111secrets are unset. The frontend dependency graph also overrides ` devalue ` to a
1212patched version so the high-severity Bun audit finding is cleared. Command test
1313fixtures now suppress background update checks so CI temp-directory cleanup is
14- not racing asynchronous network/cache work. The workerprobe integration test
15- also isolates server state before constructing its test server , preventing CI's
14+ not racing asynchronous network/cache work. Workerprobe integration tests also
15+ isolate server state before constructing test servers , preventing CI's
1616state-pollution guard from seeing worker fixture projects.
1717
1818### Fixed: autonomous provider-connectivity recovery
Original file line number Diff line number Diff line change @@ -30,6 +30,10 @@ func TestWorkerProbe_PeriodicHeartbeatRefreshesServerLastEventAt(t *testing.T) {
3030
3131 projectRoot := t .TempDir ()
3232
33+ // Isolate server state before constructing the server. New() registers
34+ // the project immediately.
35+ t .Setenv ("XDG_DATA_HOME" , t .TempDir ())
36+
3337 srv := serverpkg .New (":0" , projectRoot )
3438 ts := httptest .NewServer (srv .Handler ())
3539 defer ts .Close ()
You can’t perform that action at this time.
0 commit comments