DOC: lua: replace txn:close with txn:done in lua-api
It was missed in the last patch.
This commit is contained in:
parent
4bb375ca18
commit
99a36dddf5
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue