Browse Source
🔊 Log GraphQL errors in FastAPI People, because it returns 200, with a payload with an error (#9171)
pull/9181/head
Sebastián Ramírez
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
0 deletions
-
.github/actions/people/app/main.py
|
|
@ -381,6 +381,10 @@ def get_graphql_response( |
|
|
|
logging.error(response.text) |
|
|
|
raise RuntimeError(response.text) |
|
|
|
data = response.json() |
|
|
|
if "errors" in data: |
|
|
|
logging.error(f"Errors in response, after: {after}, category_id: {category_id}") |
|
|
|
logging.error(response.text) |
|
|
|
raise RuntimeError(response.text) |
|
|
|
return data |
|
|
|
|
|
|
|
|
|
|
|