Index: TODO =================================================================== diff -u -rad4acf8e7b3c2279b4711aa9cfd5aed6d86e2b98 -r7c10b8187153bffacc90607079a382f5ff98727d --- TODO (.../TODO) (revision ad4acf8e7b3c2279b4711aa9cfd5aed6d86e2b98) +++ TODO (.../TODO) (revision 7c10b8187153bffacc90607079a382f5ff98727d) @@ -3250,7 +3250,10 @@ - improved error message for invalid parameter specs (with leading colons) - extended regression test +- library/mongodb:updated to current interface in git HEAD + + TODO: - strange refcounting bug in 8.6b2 bug-is-86.tcl Index: library/mongodb/nsfmongo.c =================================================================== diff -u -rcdfb4e87948587d1550d49ed943a4aafb33cefb3 -r7c10b8187153bffacc90607079a382f5ff98727d --- library/mongodb/nsfmongo.c (.../nsfmongo.c) (revision cdfb4e87948587d1550d49ed943a4aafb33cefb3) +++ library/mongodb/nsfmongo.c (.../nsfmongo.c) (revision 7c10b8187153bffacc90607079a382f5ff98727d) @@ -401,12 +401,9 @@ case MONGO_CONN_BAD_SET_NAME: return "Given replica set name doesn't match this replica set"; case MONGO_CONN_NO_PRIMARY: return "Can't find primary in replica set"; - case MONGO_IO_ERROR: return "An error occurred while reading or writing on socket"; + case MONGO_IO_ERROR: return "An error occurred while reading or writing on the socket"; case MONGO_READ_SIZE_ERROR: return "The response is not the expected length"; case MONGO_COMMAND_FAILED: return "The command returned with 'ok' value of 0"; - case MONGO_CURSOR_EXHAUSTED: return "The cursor has no more results"; - case MONGO_CURSOR_INVALID: return "The cursor has timed out or is not recognized"; - case MONGO_CURSOR_PENDING: return "Tailable cursor still alive but no data"; case MONGO_BSON_INVALID: return "BSON not valid for the specified op"; case MONGO_BSON_NOT_FINISHED: return "BSON object has not been finished";