@@ -40,9 +40,6 @@ __DATA__
40
40
host = "127.0.0.1",
41
41
port = 29999,
42
42
flush_limit = 1,
43
- pool_size = 5,
44
- retry_interval = 1,
45
- timeout = 100,
46
43
}
47
44
end
48
45
79
76
local ok, err = logger.init{
80
77
flush_limit = 1,
81
78
path = "$TEST_NGINX_HTML_DIR/logger_test.sock",
82
- retry_interval = 1,
83
- timeout = 100,
84
79
}
85
80
if not ok then
86
81
ngx.log(ngx.ERR, err)
122
117
host = "127.0.0.1",
123
118
port = 29999,
124
119
flush_limit = 1,
125
- retry_interval = 1,
126
- timeout = 100,
127
120
}
128
121
end
129
122
161
154
host = "127.0.0.1",
162
155
port = 29999,
163
156
flush_limit = 500,
164
- retry_interval = 1,
165
- timeout = 100,
166
157
}
167
158
end
168
159
236
227
host = "127.0.0.1",
237
228
port = 29999,
238
229
flush_limit = 6,
239
- retry_interval = 1,
240
- timeout = 100,
241
230
}
242
231
end
243
232
290
279
host = "127.0.0.1",
291
280
port = 29999,
292
281
flush_limit = 1,
293
- retry_interval = 1,
294
- timeout = 1000,
295
282
}
296
283
end
297
284
339
326
host = "127.0.0.1",
340
327
port = 29999,
341
328
flush_limit = 1,
342
- log_subrequest = false,
343
- retry_interval = 1,
344
- timeout = 100,
345
329
}
346
330
end
347
331
444
428
flush_limit = 2,
445
429
drop_limit = 1,
446
430
path = "$TEST_NGINX_HTML_DIR/logger_test.sock",
447
- retry_interval = 1,
448
- timeout = 100,
449
431
}
450
432
if not ok then
451
433
ngx.log(ngx.ERR, err)
480
462
path = "$TEST_NGINX_HTML_DIR/logger_test.sock",
481
463
drop_limit = 6,
482
464
flush_limit = 4,
483
- retry_interval = 1,
484
- timeout = 1,
485
465
}
486
466
end
487
467
529
509
host = "127.0.0.1",
530
510
port = 29999,
531
511
flush_limit = 1,
532
- pool_size = 5,
533
- retry_interval = 1,
534
- timeout = 100,
535
512
}
536
513
end
537
514
@@ -570,9 +547,6 @@ wrote bytes: 10
570
547
port = 29999,
571
548
flush_limit = 10,
572
549
drop_limit = 11,
573
- pool_size = 5,
574
- retry_interval = 1,
575
- timeout = 100,
576
550
}
577
551
end
578
552
@@ -616,9 +590,6 @@ wrote bytes: 10
616
590
port = 29999,
617
591
flush_limit = 1,
618
592
drop_limit = 10000,
619
- pool_size = 5,
620
- retry_interval = 1,
621
- timeout = 50,
622
593
max_buffer_reuse = 1,
623
594
}
624
595
end
@@ -664,9 +635,6 @@ wrote bytes: 15
664
635
port = 29999,
665
636
flush_limit = 1000,
666
637
drop_limit = 10000,
667
- retry_interval = 1,
668
- timeout = 50,
669
- max_buffer_reuse = 100,
670
638
periodic_flush = 0.03, -- 0.03s
671
639
}
672
640
end
@@ -733,9 +701,6 @@ wrote bytes: 3
733
701
local ok, err = logger.init{
734
702
path = "$TEST_NGINX_HTML_DIR/ssl.sock",
735
703
flush_limit = 1,
736
- drop_limit = 10000,
737
- retry_interval = 1,
738
- timeout = 50,
739
704
ssl = true,
740
705
ssl_verify = false,
741
706
sni_host = "test.com",
@@ -791,9 +756,6 @@ SNI Host: test.com
791
756
local ok, err = logger.init{
792
757
path = "$TEST_NGINX_HTML_DIR/ssl.sock",
793
758
flush_limit = 1,
794
- drop_limit = 10000,
795
- retry_interval = 1,
796
- timeout = 50,
797
759
ssl = true,
798
760
ssl_verify = true,
799
761
sni_host = "test.com",
@@ -852,9 +814,6 @@ lua ssl certificate verify error
852
814
local ok, err = logger.init{
853
815
path = "$TEST_NGINX_HTML_DIR/ssl.sock",
854
816
flush_limit = 1,
855
- drop_limit = 10000,
856
- retry_interval = 1,
857
- timeout = 50,
858
817
ssl = true,
859
818
ssl_verify = false,
860
819
}
0 commit comments