Merge pull request #144 from caligin/master

fix: missing overload in :arglists, was causing eastwood to complain about correct calls
This commit is contained in:
Michael Klishin 2016-11-20 19:43:27 +03:00 committed by GitHub
commit 5b5425c402

View file

@ -70,9 +70,10 @@
:host (\"127.0.0.1\" by default)
:port (27017 by default)"
{:arglists '([]
[server-address options]
[[server-address & more] options]
[{:keys [host port uri] :or { host *mongodb-host* port *mongodb-port*}}])}
[server-address options]
[server-address options credentials]
[[server-address & more] options]
[{:keys [host port uri] :or { host *mongodb-host* port *mongodb-port*}}])}
([]
(MongoClient.))
([server-address ^MongoClientOptions options]