diff options
author | Steven Barth <steven@midlink.org> | 2009-07-31 19:57:07 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2009-07-31 19:57:07 +0000 |
commit | 9827e9110582aa90e145da120f8ed2e1c1ed157a (patch) | |
tree | 622b8077d3ad1e8a4112a97d590c675a64d65e6c /libs/lucid-http/luasrc/lucid | |
parent | 4e534b50e502add811c4d44796546b3a9deeaf20 (diff) |
Performance improvements, where did that get lost?
Diffstat (limited to 'libs/lucid-http/luasrc/lucid')
-rw-r--r-- | libs/lucid-http/luasrc/lucid/http/handler/luci.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libs/lucid-http/luasrc/lucid/http/handler/luci.lua b/libs/lucid-http/luasrc/lucid/http/handler/luci.lua index d816aae13b..b6d92deec2 100644 --- a/libs/lucid-http/luasrc/lucid/http/handler/luci.lua +++ b/libs/lucid-http/luasrc/lucid/http/handler/luci.lua @@ -33,6 +33,7 @@ Luci = util.class(srv.Handler) function Luci.__init__(self, name, prefix) srv.Handler.__init__(self, name) self.prefix = prefix + dsp.indexcache = "/tmp/luci-indexcache" end --- Handle a HEAD request. |