File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,8 @@ class ArangoClient(object):
24
24
:param username: ArangoDB username (default: ``"root"``)
25
25
:type username: str | unicode
26
26
:param password: ArangoDB password (default: ``""``)
27
- :param verify: check the connection during initialization
27
+ :param verify: check the connection during initialization. Root privileges
28
+ are required to use this check.
28
29
:type verify: bool
29
30
:param http_client: the HTTP client object
30
31
:type http_client: arango.http_clients.base.BaseHTTPClient
@@ -83,6 +84,10 @@ def verify(self):
83
84
:rtype: bool
84
85
:raises arango.exceptions.ServerConnectionError: if the connection to
85
86
the ArangoDB server fails
87
+
88
+ .. note::
89
+ Root privileges (i.e. access to the ``_system`` database) are
90
+ required to use this method.
86
91
"""
87
92
res = self ._conn .head ('/_api/version' )
88
93
if res .status_code not in HTTP_OK :
Original file line number Diff line number Diff line change 1
- VERSION = '3.7.0 '
1
+ VERSION = '3.7.1 '
You can’t perform that action at this time.
0 commit comments