go-bongo / bongo

Go ODM for MongoDB
MIT License
487 stars 40 forks source link

can not auto connection ? #30

Open 3rduncle opened 6 years ago

talhaHavadar commented 6 years ago

It would be better to explain the question a bit. Are you getting an error message or what?

xian-zx commented 6 years ago

about Collection struct, in func (c *Collection) Save(doc Document) error ,i find the codesess := c.Connection.Session.Clone(). But in func (c *Collection) Find(query interface{}) *ResultSet , don't have the code sess := c.Connection.Session.Clone(). When the connection has been disconnected,use the func Find() will failed. why don't add the code sess := c.Connection.Session.Clone() ?