From: Willy Tarreau Date: Thu, 27 Aug 2015 12:57:04 +0000 (+0200) Subject: DOC: lua: replace txn:close with txn:done in lua-api X-Git-Tag: v1.6-dev4~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=99a36dddf53520c669f5a825770d72bb966f0742;p=thirdparty%2Fhaproxy.git DOC: lua: replace txn:close with txn:done in lua-api It was missed in the last patch. --- diff --git a/doc/lua-api/index.rst b/doc/lua-api/index.rst index 595239872c..f8cfee26bc 100644 --- a/doc/lua-api/index.rst +++ b/doc/lua-api/index.rst @@ -88,7 +88,7 @@ HAProxy Lua file (`hello_world.lua`): function hello_world(txn) txn.res:send("hello world\n") - txn:close() + txn:done() end How to start HAProxy for testing this configuration: