Noam Rathaus
Noam Rathaus
Trying the OWASP one - https://owasp.org/www-project-web-security-testing-guide/latest/4-Web_Application_Security_Testing/12-API_Testing/01-Testing_GraphQL: ``` query IntrospectionQuery { __schema { queryType { name } mutationType { name } subscriptionType { name } types { ...FullType } directives {...
I think the bug is here: ``` diff --git a/src/gqlspection/introspection_query.py b/src/gqlspection/introspection_query.py index 601f7b0..9b9e467 100644 --- a/src/gqlspection/introspection_query.py +++ b/src/gqlspection/introspection_query.py @@ -10,7 +10,6 @@ query IntrospectionQuery { queryType { name } -...
I don't think this bug is related to python 3.11, as I am able to recreate this also on 3.10.12
I think the issue is related to `acquired_until` value getting "freed"
The value of `30` seems to arrive from `self.lock_expiration_delay`
Do jobs need to finish within 30 seconds?
Unfortunately the extensive use of `requests` package prevent implementation of HTTP/2 as `urllib3` which `requests` uses doesn't have nor plans to add HTTP/2 An alternative could be to migrate to:...
`allTokens` is not a `set()` `uniqueTokens` is a `set(allTokens)` `allTokens` is built from the `dataset` which is `allForms` (its source is from this) Therefore there is no issue as you...
Can you clarify what isn't working? Are you seeing errors? Can you share the keyword you are using?
I have found the underlying cause, a pathless query to an S3 will always return unknown bucket, I made a minor fix to the code to fix this issue: https://github.com/initstring/cloud_enum/pull/72...