8000 new: `get/put /_admin/log/structured` by aMahanna · Pull Request #307 · arangodb/python-arango · GitHub
[go: up one dir, main page]

Skip to content

new: get/put /_admin/log/structured #307

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 2 commits into from
Jan 26, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix lint
  • Loading branch information
aMahanna committed Dec 29, 2023
commit bb48a50ba41f24cf12c0cf0bb616a6716f2d90d8
6 changes: 3 additions & 3 deletions arango/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from datetime import datetime
from numbers import Number
from typing import Any, List, Optional, Sequence, Union, Dict
from typing import Any, Dict, List, Optional, Sequence, Union
from warnings import warn

from arango.api import ApiGroup
Expand Down Expand Up @@ -48,6 +48,8 @@
ServerLicenseSetError,
ServerLogLevelError,
ServerLogLevelSetError,
ServerLogSettingError,
ServerLogSettingSetError,
ServerMetricsError,
ServerReadLogError,
ServerReloadRoutingError,
Expand Down Expand Up @@ -81,8 +83,6 @@
ViewRenameError,
ViewReplaceError,
ViewUpdateError,
ServerLogSettingError,
ServerLogSettingSetError,
)
from arango.executor import (
AsyncApiExecutor,
Expand Down
0