File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,8 @@ our $HttpConfig = <<_EOC_;
32
32
-- jit.opt.start("hotloop=1")
33
33
-- jit.opt.start("loopunroll=1000000")
34
34
-- jit.off()
35
+
36
+ ngx.re.opt("jit_stack_size", 128 * 1024)
35
37
';
36
38
_EOC_
37
39
@@ -269,7 +271,7 @@ qr/\[TRACE \d+ content_by_lua\(nginx\.conf:\d+\):4 loop\]/
269
271
location = /re {
270
272
access_log off;
271
273
content_by_lua '
272
- ngx.re.opt("jit_stack_size", 128 * 1024)
274
+ -- ngx.re.opt("jit_stack_size", 128 * 1024)
273
275
local from, to, err
274
276
local find = ngx.re.find
275
277
local s = "a"
@@ -309,7 +311,7 @@ bad argument type
309
311
location = /re {
310
312
access_log off;
311
313
content_by_lua '
312
- ngx.re.opt("jit_stack_size", 128 * 1024)
314
+ -- ngx.re.opt("jit_stack_size", 128 * 1024)
313
315
local from, to, err
314
316
local find = ngx.re.find
315
317
local s = "a"
You can’t perform that action at this time.
0 commit comments