Skip to content

Commit

Permalink
Don't fetch GraphQL schema for CI overview
Browse files Browse the repository at this point in the history
It's not needed, but occasionally fails, so just skip it.
  • Loading branch information
TimoWilken committed Nov 20, 2023
1 parent d4ab67b commit 43fb3c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci-status-overview
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ def main(args: argparse.Namespace) -> None:
output = TextOutput(args.recent_hours)
with Client(transport=RequestsHTTPTransport(url=API_URL, headers={
'Authorization': 'bearer ' + os.environ['GITHUB_TOKEN'],
}), fetch_schema_from_transport=True) as session:
}), fetch_schema_from_transport=False) as session:
output.document(session, get_all_checks(
args.definitions_dir, args.roles, args.containers, args.repos,
args.checks))
Expand Down

0 comments on commit 43fb3c1

Please sign in to comment.