Skip to content

Commit 2ac7f45

Browse files
committed
fix typo on port in example. closes bitly#6
1 parent 5e50210 commit 2ac7f45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Usage
2323
@property
2424
def db(self):
2525
if not hasattr(self, '_db'):
26-
self._db = asyncmongo.Client(pool_id='mydb', host='127.0.0.1', port=27107, maxcached=10, maxconnections=50, dbname='test')
26+
self._db = asyncmongo.Client(pool_id='mydb', host='127.0.0.1', port=27017, maxcached=10, maxconnections=50, dbname='test')
2727
return self._db
2828

2929
@tornado.web.asynchronous

0 commit comments

Comments
 (0)