mongoengine.errors.OperationError: Update failed (BSON field ‘no_cursor_timeout‘ is an unknown field

wangjinyu124419發表於2020-11-11

mongo4.2環境下,

執行這句程式碼報錯:

        updated_obj = cls.objects(prefix=id_prefix).modify(set__prefix=id_prefix, inc__current=1, upsert=True, new=True)

錯誤資訊:

mongoengine.errors.OperationError: Update failed (BSON field 'no_cursor_timeout' is an unknown field., full error: {'ok': 0.0, 'errmsg': "BSON field 'no_cursor_timeout' is an unknown field.", 'code': 51177, 'codeName': 'Location51177'})

版本降級可破,降到了3.2

https://github.com/MongoEngine/mongoengine/issues/2148

相關文章