Skip to content

Document CRUD operations #41

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Mar 27, 2025
Merged
2 changes: 1 addition & 1 deletion arangoasync/aql.py
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ def response_handler(resp: Response) -> Cursor:
if not resp.is_success:
raise AQLQueryExecuteError(resp, request)
if self._executor.context == "async":
# We cannot have a cursor getting back async jobs
# We cannot have a cursor giving back async jobs
executor: NonAsyncExecutor = DefaultApiExecutor(
self._executor.connection
)
Expand Down
Loading
Loading