diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-07-21 09:54:59 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-07-21 09:54:59 +0100 |
commit | b60ceaa506146607db40afd006ef70a17d8d8aff (patch) | |
tree | 0224f6c20c4bf4c56d9e842f7ae9b994a6269fe3 /test | |
parent | 40df5a7d2c66ee42daba6f98afc07cbb3f3223e5 (diff) | |
download | rspamd-b60ceaa506146607db40afd006ef70a17d8d8aff.tar.gz rspamd-b60ceaa506146607db40afd006ef70a17d8d8aff.zip |
[Fix] Lua_tcp: Various fixes and debugging improvements
Diffstat (limited to 'test')
-rw-r--r-- | test/functional/lua/tcp.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/lua/tcp.lua b/test/functional/lua/tcp.lua index 925a18913..a43fcf2f0 100644 --- a/test/functional/lua/tcp.lua +++ b/test/functional/lua/tcp.lua @@ -78,7 +78,7 @@ local function http_large_tcp_ssl_symbol(task) if task:get_queue_id() == 'SSL Large TCP request' then logger.errx(task, 'ssl_large_tcp_symbol: begin') - for i = 1,10000000 do + for i = 1,2000 do data[i] = 'test\n' end |