Index: benchmark/io/http/worker.cfa
===================================================================
--- benchmark/io/http/worker.cfa	(revision 8c43d057d111f2fcf5e0f249ebd90796a8a2fa2d)
+++ benchmark/io/http/worker.cfa	(revision 9715567d8a7b3060d34ab49ff1d8da8ac6d4bd44)
@@ -97,4 +97,14 @@
 			}
 
+			if( !options.file_cache.path ) {
+				if( options.log ) {
+					sout | "=== File Not Found (" | nonl;
+					write(sout, file, name_size);
+					sout | ") ===";
+				}
+				answer_error(fd, E405);
+				continue REQUEST;
+			}
+
 			// Get the fd from the file cache
 			int ans_fd;
@@ -104,7 +114,9 @@
 			// If we can't find the file, return 404
 			if( ans_fd < 0 ) {
-				sout | "=== File Not Found (" | nonl;
-				write(sout, file, name_size);
-				sout | ") ===";
+				if( options.log ) {
+					sout | "=== File Not Found (" | nonl;
+					write(sout, file, name_size);
+					sout | ") ===";
+				}
 				answer_error(fd, E404);
 				continue REQUEST;
