Hapi js throwing Error: Already closed

Hapi js throwing Error: Already closed

我正在使用 Hapi.js 作为我们 API 开发的框架,但在极少数情况下我会遇到以下错误。

2015-02-08T12:32:38.073Z - verbose: err.stack >  Error: Already closed
    at Object.exports.create (/var/www/ragchewAppServerSrc/ragchew_prod/ragchews/node_modules/hapi/node_modules/boom/lib/index.js:21:17)
    at Object.exports.internal (/var/www/ragchewAppServerSrc/ragchew_prod/ragchews/node_modules/hapi/node_modules/boom/lib/index.js:252:92)
    at /var/www/ragchewAppServerSrc/ragchew_prod/ragchews/node_modules/hapi/lib/request.js:297:34
    at iterate (/var/www/ragchewAppServerSrc/ragchew_prod/ragchews/node_modules/hapi/node_modules/items/lib/index.js:35:13)
    at done (/var/www/ragchewAppServerSrc/ragchew_prod/ragchews/node_modules/hapi/node_modules/items/lib/index.js:27:25)
    at validate (/var/www/ragchewAppServerSrc/ragchew_prod/ragchews/node_modules/hapi/lib/auth.js:283:20)
    at finish (/var/www/ragchewAppServerSrc/ragchew_prod/ragchews/node_modules/hapi/lib/protect.js:45:21)
    at wrapped (/var/www/ragchewAppServerSrc/ragchew_prod/ragchews/node_modules/hapi/node_modules/hoek/lib/index.js:798:20)
    at root (/var/www/ragchewAppServerSrc/ragchew_prod/ragchews/node_modules/hapi/lib/auth.js:198:50)
    at /var/www/ragchewAppServerSrc/ragchew_prod/ragchews/src/middlewares/auth/ragchew_auth_strategy.js:75:28
2015-02-08T12:32:38.073Z - verbose: err >  {"isBoom":true,"output":{"statusCode":500,"payload":{"statusCode":500,"error":"Internal Server 

我无法在我们的测试环境中重现此问题,我也不了解此错误的根本原因。

如果有人强调why/when这个错误是由框架产生的,那将是很大的帮助。

在我们的代码中,当我们尝试从 'Authentication plugin' 发回回复时会发生此错误。我们正在使用基本身份验证方案。

出现问题的示例片段是:

exports.register = function (plugin, options, next) {
    plugin.auth.scheme('basic', function (server, options) {
        var settings = options;
        // some code here
        var scheme = {
            authenticate: function (request, reply) {
                // some code here
                // assign access token value to token here.

                settings.validateFunc.call(request, token, function (err, isValid, credentials) {
                    // handle error here.
                    return reply(null, { credentials: credentials });   // error occurs on this line
                });
            }
        };
        return scheme;
    });

    next();
};

你能尝试 return reply.continue({credentials: credentials}); 成功吗?

参考 hapi-auth-basic 中的这一行:

https://github.com/hapijs/hapi-auth-basic/blob/master/lib/index.js#L83