fix(core): use session-specific temp directory for task tracker (#22382)

This commit is contained in:
anj-s
2026-03-13 16:35:26 -07:00
committed by GitHub
parent f75bdba568
commit 604d4ded8d
2 changed files with 22 additions and 0 deletions
+3
View File
@@ -302,6 +302,9 @@ export class Storage {
}
getProjectTempTrackerDir(): string {
if (this.sessionId) {
return path.join(this.getProjectTempDir(), this.sessionId, 'tracker');
}
return path.join(this.getProjectTempDir(), 'tracker');
}