From 202437dd8e7f57ec911332fd7d26e08dd1bb637f Mon Sep 17 00:00:00 2001 From: Vignesh Raman Date: Thu, 12 Feb 2026 13:33:05 +0530 Subject: [PATCH] ci/gitlab_gql: disable schema fetch When running ci_run_n_monitor, the following error is seen, gql.transport.exceptions.TransportQueryError: Error while fetching schema: {'message': 'Internal server error'} If you don't need the schema, you can try with: "fetch_schema_from_transport=False" Set fetch_schema_from_transport=False to avoid this failure. Signed-off-by: Vignesh Raman Part-of: --- bin/ci/gitlab_gql.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/ci/gitlab_gql.py b/bin/ci/gitlab_gql.py index 50be52fa6e8..50a95be5894 100755 --- a/bin/ci/gitlab_gql.py +++ b/bin/ci/gitlab_gql.py @@ -74,7 +74,7 @@ class GitlabGQL: self._transport = RequestsHTTPTransport(url=self.url, headers=headers) # Create a GraphQL client using the defined transport - self.client = Client(transport=self._transport, fetch_schema_from_transport=True) + self.client = Client(transport=self._transport, fetch_schema_from_transport=False) def query( self,