Skip to content

Commit 8f9d301

Browse files
authored
[ez][disablebot] Lower threshold for creating aggregate flaky issues 10 -> 4 (#6849)
10 is kind of high, IMO lowering it would be ok since its still annoying if there are >4 issues created at once that all seem related. The restriction that they all be from the same file is strict enough so that lowering is ok i think See the successfully created disable issues here: https://github.com/pytorch/pytorch/issues?q=state%3Aopen%20label%3A%22aggregate%20flaky%20test%20issue%22 (Now we just have to see if they also get updated automatically too)
1 parent 66a282f commit 8f9d301

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

torchci/pages/api/flaky-tests/disable.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { Octokit } from "octokit";
1414

1515
export const NUM_HOURS = 3;
1616
const PYTORCH = "pytorch";
17-
const THRESHOLD = 10;
17+
const THRESHOLD = 4;
1818

1919
export default async function handler(
2020
req: NextApiRequest,

0 commit comments

Comments
 (0)