diff options
author | Florin Coras <fcoras@cisco.com> | 2021-05-18 00:28:59 -0700 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2021-05-18 18:14:53 +0000 |
commit | fb50bc31bfd54902231925749cacbbcd6dfccc96 (patch) | |
tree | 125bc081d141c3478ff8f3d6dad7a314726c1aeb /test/test_vcl.py | |
parent | a48dffeed3d5182d1faa41f2ba64beb20bf10ea0 (diff) |
tls: fix dtls with no workers
Type: fix
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: Iecc33fda7f28c037289775ffe0525a50f89a2b8c
Diffstat (limited to 'test/test_vcl.py')
-rw-r--r-- | test/test_vcl.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_vcl.py b/test/test_vcl.py index 8bff4be8e16..7977c1d4e77 100644 --- a/test/test_vcl.py +++ b/test/test_vcl.py @@ -466,9 +466,9 @@ class VCLThruHostStackDTLS(VCLTestCase): self.thru_host_stack_setup() self.client_uni_dir_dtls_timeout = 20 - self.server_dtls_args = ["-p dtls", self.server_port] + self.server_dtls_args = ["-p", "dtls", self.server_port] self.client_uni_dir_dtls_test_args = ["-N", "1000", "-U", "-X", - "-p dtls", "-T 1400", + "-p", "dtls", "-T 1400", self.loop0.local_ip4, self.server_port] |