diff options
Diffstat (limited to '')
-rw-r--r-- | src/nxt_http_static.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/nxt_http_static.c b/src/nxt_http_static.c index e51ba6b0..c4caab3c 100644 --- a/src/nxt_http_static.c +++ b/src/nxt_http_static.c @@ -879,12 +879,7 @@ complete_buf: n = nxt_file_read(fb->file, b->mem.start, size, fb->file_pos); - if (n != size) { - if (n >= 0) { - nxt_log(task, NXT_LOG_ERR, "file \"%FN\" has changed " - "while sending response to a client", fb->file->name); - } - + if (nxt_slow_path(n == NXT_ERROR)) { nxt_http_request_error_handler(task, r, r->proto.any); goto clean; } |