diff options
author | Andrei Zeliankou <zelenkov@nginx.com> | 2020-03-12 17:14:16 +0000 |
---|---|---|
committer | Andrei Zeliankou <zelenkov@nginx.com> | 2020-03-12 17:14:16 +0000 |
commit | baf92303987582d226fb90175f51c4cf8457cb96 (patch) | |
tree | 8858941a6492cf2853eff7e2ba1fae8918c970f5 /test/test_proxy.py | |
parent | b3c8a7b33a29208e75dfe4f670cf81dac7b99ccc (diff) | |
download | unit-baf92303987582d226fb90175f51c4cf8457cb96.tar.gz unit-baf92303987582d226fb90175f51c4cf8457cb96.tar.bz2 |
Tests: skip "close failed" alert in test_proxy_parallel test.
Diffstat (limited to 'test/test_proxy.py')
-rw-r--r-- | test/test_proxy.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test_proxy.py b/test/test_proxy.py index 74bd0873..5568550a 100644 --- a/test/test_proxy.py +++ b/test/test_proxy.py @@ -196,6 +196,8 @@ Content-Length: 10 self.assertEqual(resp['body'], payload, 'body') def test_proxy_parallel(self): + self.skip_alerts.append(r'close\(\d+\) failed') + payload = 'X' * 4096 * 257 buff_size = 4096 * 258 |