Joo-Won Jung

Results 2 comments of Joo-Won Jung

When using not only the mongoDB, even memory DB, PUT operation with simple string on array object make server CRASH! Is there any way to make server not to crash?...

I found a workaround to avoid server crash. In, for example, doc-model.js: ```js docModel.observe('before save', function(ctx, next) { if (ctx.data && ctx.data.versions && !Array.isArray(ctx.data.versions)) { var err = new Error();...