cloudcms-server 3.2.312 → 3.2.313
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -346,7 +346,7 @@ exports = module.exports = function()
|
|
|
346
346
|
if (doesNotExist)
|
|
347
347
|
{
|
|
348
348
|
// are we being spoofed? kill the connection
|
|
349
|
-
console.log("[BLACKLIST KILL: " + req.virtualHost + "]");
|
|
349
|
+
console.log("[BLACKLIST KILL: " + req.virtualHost + " > " + req.method + " " + req.url + "]");
|
|
350
350
|
return res.end();
|
|
351
351
|
}
|
|
352
352
|
|
|
@@ -383,7 +383,7 @@ exports = module.exports = function()
|
|
|
383
383
|
if (cachedValue === SENTINEL_NOT_FOUND_VALUE)
|
|
384
384
|
{
|
|
385
385
|
// null means there verifiably isn't anything on disk (null used as sentinel marker)
|
|
386
|
-
completionFunction();
|
|
386
|
+
completionFunction(null, null, true);
|
|
387
387
|
}
|
|
388
388
|
else
|
|
389
389
|
{
|