Skip to content

Commit d5c76c6

Browse files
authored
Update README.md
1 parent b493ca9 commit d5c76c6

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -353,9 +353,9 @@ Example
353353

354354
tnt_pass_http_request
355355
------------------
356-
**syntax:** *tnt_pass_http_request [on|off]*
356+
**syntax:** *tnt_pass_http_request [on|off|parse_args]*
357357

358-
**default:** *no*
358+
**default:** *off*
359359

360360
**context:** *location, location if*
361361

@@ -378,6 +378,14 @@ Examples
378378
req.query -- string
379379
return { 'OK' }
380380
end
381+
382+
-- With parse_args
383+
function tarantool_stored_procedure_name_1(req, ...)
384+
req.headers -- lua table
385+
req.query -- string
386+
req.args -- query args as lua table
387+
return { 'OK' }
388+
end
381389
```
382390
```bash
383391
# Call tarantool_stored_procedure_name()

0 commit comments

Comments
 (0)