claude-task-worker 0.22.0 → 0.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1024,7 +1024,7 @@ import { spawn } from "node:child_process";
|
|
|
1024
1024
|
init_table();
|
|
1025
1025
|
|
|
1026
1026
|
// src/task-result.ts
|
|
1027
|
-
var TASK_TIMEOUT_MS =
|
|
1027
|
+
var TASK_TIMEOUT_MS = 120 * 60 * 1e3;
|
|
1028
1028
|
var STDERR_TAIL_LIMIT = 8 * 1024;
|
|
1029
1029
|
function buildTaskResult(code, timedOut, stdout, stderrTail) {
|
|
1030
1030
|
const emptyOutput = stdout.trim() === "";
|