Skip to content

Commit

Permalink
chore: try lowering concurrency
Browse files Browse the repository at this point in the history
  • Loading branch information
kuhe committed Oct 9, 2024
1 parent 5b00e14 commit 25e096a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/turbo/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const { spawnProcess } = require("../utils/spawn-process");
const path = require("path");

const runTurbo = async (task, args, { apiSecret, apiEndpoint, apiSignatureKey } = {}) => {
const command = ["turbo", "run", task, "--concurrency=100%", "--output-logs=hash-only"];
const command = ["turbo", "run", task, "--concurrency=10", "--output-logs=hash-only"];
command.push(...args);
const turboRoot = path.join(__dirname, "..", "..");
try {
Expand Down

0 comments on commit 25e096a

Please sign in to comment.