Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion torchci/clickhouse_queries/queued_jobs_aggregate/query.sql
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ queued_jobs AS (
WHERE
job.id IN (SELECT id FROM possible_queued_jobs)
AND workflow.id IN (SELECT run_id FROM possible_queued_jobs)
AND workflow.repository.owner.login IN ('pytorch', 'pytorch-labs')
AND workflow.repository.owner.login IN (
'pytorch', 'pytorch-labs', 'meta-pytorch'
)
AND job.status = 'queued'
/* These two conditions are workarounds for GitHub's broken API. Sometimes */
/* jobs get stuck in a permanently "queued" state but definitely ran. We can */
Expand Down