Skip to content

Commit 55bf76d

Browse files
committed
make agent package work
1 parent 9b1a97b commit 55bf76d

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

packages/agent/src/task-manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export interface TaskExecutionState {
1111
}
1212

1313
export class TaskManager {
14-
private executionStates = new Map<string, TaskExecutionState>();
14+
public executionStates = new Map<string, TaskExecutionState>();
1515
private defaultTimeout = 10 * 60 * 1000; // 10 minutes
1616

1717
generateExecutionId(): string {

packages/agent/src/task-progress-reporter.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ export class TaskProgressReporter {
5050
status: "started",
5151
});
5252
this.taskRun = run;
53-
this.outputLog = [];
5453
this.logger.debug("Created task run", { taskId, runId: run.id });
5554
} catch (error) {
5655
this.logger.warn("Failed to create task run", {

0 commit comments

Comments
 (0)