OpenBD / openbd-core

The original open source Java powered GPL CFML runtime engine

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MongoDB mongouri

mgrandb opened this issue · comments

Something that has confused me for over two years, say I make a standard connection to mongodb

MongoRegister( name="mongo", server="127.0.0.1", db="testdb" );

everything works fine, the pool closes after five mins of no activity and reconnects with a new call like it should, but if I add a mongouri

MongoRegister( name="mongo", server="127.0.0.1", db="testdb", mongouri="mongodb://127.0.0.1:27017/testdb" );

when the pool closes after five mins of no activity it will not reconnect! throwing an error

java.lang.IllegalStateException: state should be: open.

OpenBD nightly, ready to run on windows, latest Java 1.8

Does anyone else have this problem or am I doing something wrong?
Any help figuring this out would be greatly appreciated.

Mark.

Looks like you have found a bug with the mongouri way.

Thanks for taking notice Alan.
a couple other points is that if you call MongoDeregister() before OpenBD closes the connection then it does reconnect fine, also OpenBD 3.1 with mongo java driver 2.14.3 and mongodb 3.0 works with no errors.