diff options
author | Andrey Zelenkov <zelenkov@nginx.com> | 2017-12-12 18:54:27 +0300 |
---|---|---|
committer | Andrey Zelenkov <zelenkov@nginx.com> | 2017-12-12 18:54:27 +0300 |
commit | f7c386ece3791ec20412a1010287527f2b4ffc56 (patch) | |
tree | 8ef6e4896d72c8dd10264e0a3a54b55843faf266 /test/test_configuration.py | |
parent | 67d72d46f77771ddb7886e4ea83bb292802ea8d5 (diff) | |
download | unit-f7c386ece3791ec20412a1010287527f2b4ffc56.tar.gz unit-f7c386ece3791ec20412a1010287527f2b4ffc56.tar.bz2 |
Tests: fixed "negative workers" test.
Diffstat (limited to 'test/test_configuration.py')
-rw-r--r-- | test/test_configuration.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_configuration.py b/test/test_configuration.py index 8d913077..7853bb21 100644 --- a/test/test_configuration.py +++ b/test/test_configuration.py @@ -132,7 +132,7 @@ class TestUnitConfiguration(unit.TestUnitControl): {
"app": {
"type": "python",
- "workers": 1,
+ "workers": -1,
"path": "/app",
"module": "wsgi"
}
|