This commit is contained in:
Ryan Dahl 2010-08-12 10:06:52 -07:00
Родитель 72e4a49cac
Коммит 9acd76ed6e
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -433,7 +433,8 @@ OutgoingMessage.prototype.write = function (chunk, encoding) {
}
if (!this._hasBody) {
throw new Error("This type of response MUST NOT have a body.");
console.error("This type of response MUST NOT have a body. Ignoring write() calls.");
return true;
}
if (typeof chunk !== "string"