Skip to content

Commit e9b6d2b

Browse files
committed
Change default host to 127.0.0.1 from localhost
1 parent 7825d7b commit e9b6d2b

File tree

6 files changed

+8
-4
lines changed

6 files changed

+8
-4
lines changed

README.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
.. image:: https://cloud.githubusercontent.com/assets/2701938/17761717/892d37c0-64d7-11e6-84a8-665adc9f4cfc.png
1+
.. image:: https://cloud.githubusercontent.com/assets/2701938/18018900/668e15d2-6ba7-11e6-85a9-7997b3c6218a.png
2+
3+
|
24
35
.. image:: https://travis-ci.org/joowani/python-arango.svg?branch=master
46
:target: https://travis-ci.org/joowani/python-arango

arango/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class ArangoClient(object):
3434

3535
def __init__(self,
3636
protocol='http',
37-
host='localhost',
37+
host='127.0.0.1',
3838
port=8529,
3939
username='root',
4040
password='',

arango/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = '3.2.0'
1+
VERSION = '3.2.2'

docs/intro.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
66
.. image:: /static/logo.png
77

8+
|
9+
810
Welcome to the documentation for **python-arango**, a Python driver for
911
`ArangoDB <https://www.arangodb.com/>`__.
1012

docs/static/logo.png

-70 KB
Loading

tests/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def test_verify():
3434

3535
def test_properties():
3636
assert arango_client.protocol == 'http'
37-
assert arango_client.host == 'localhost'
37+
assert arango_client.host == '127.0.0.1'
3838
assert arango_client.port == 8529
3939
assert arango_client.username == 'root'
4040
assert arango_client.password == ''

0 commit comments

Comments
 (0)