To use pooling the current usage is: ```elixir {:ok, conn} = Mongo.start_link(database: "test", pool: DBConnection.Poolboy) Mongo.find(:mongo, "collection", %{}, limit: 20, pool: DBConnection.Poolboy) ``` Having to repeat ```pool: DBConnection.Poolboy``` at query time should not be necessary.