瀏覽代碼

Disable keepalive

Which causes problems when our trivial loggers are used
where delay between messages cannot be predicted (e.g. testing)
Alois Mahdal 11 年之前
父節點
當前提交
8c86bee78b
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2
    1
      cgi-bin/htlog/htlog.cgi

+ 2
- 1
cgi-bin/htlog/htlog.cgi 查看文件

52
 print $q->header(
52
 print $q->header(
53
     -type               => 'text/plain',
53
     -type               => 'text/plain',
54
     -expires            => 'now',
54
     -expires            => 'now',
55
-    -content_lentgth    => length $out
55
+    -content_lentgth    => length $out,
56
+    -connection         => 'close'
56
 );
57
 );
57
 
58
 
58
 print $out;
59
 print $out;