File tree Expand file tree Collapse file tree 3 files changed +2
-5
lines changed
Expand file tree Collapse file tree 3 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 2121from esrally import config
2222from esrally .utils import convert
2323
24- SystemBase = Literal ["multiprocQueueBase" , "multiprocTCPBase" , "multiprocUDPBase" ]
24+ SystemBase = Literal ["multiprocQueueBase" , "multiprocTCPBase" ]
2525
2626DEFAULT_SYSTEM_BASE : SystemBase = "multiprocTCPBase"
2727DEFAULT_FALLBACK_SYSTEM_BASE : SystemBase = "multiprocQueueBase"
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ class FromConfigCase:
4949@cases .cases (
5050 default = FromConfigCase (),
5151 with_name = FromConfigCase (name = "some_name" , want_name = "some_name" ),
52- system_base = FromConfigCase (system_base = "multiprocUDPBase " ),
52+ system_base = FromConfigCase (system_base = "multiprocQueueBase " ),
5353 fallback_system_base = FromConfigCase (fallback_system_base = "multiprocTCPBase" ),
5454 fallback_system_base_none = FromConfigCase (fallback_system_base = None ),
5555 ip = FromConfigCase (ip = "some_ip" ),
Original file line number Diff line number Diff line change @@ -106,9 +106,6 @@ class SystemCase:
106106 multiprocTCPBase = SystemCase (
107107 system_base = "multiprocTCPBase" , want_capabilities = {"Thespian ActorSystem Name" : "multiprocTCPBase" , "ip" : DEFAULT_IP }
108108 ),
109- multiprocUDPBase = SystemCase (
110- system_base = "multiprocUDPBase" , want_capabilities = {"Thespian ActorSystem Name" : "multiprocUDPBase" , "ip" : DEFAULT_IP }
111- ),
112109 fallback_system_base = SystemCase (
113110 system_base = "invalid-value" ,
114111 want_capabilities = {"Thespian ActorSystem Name" : "multiprocQueueBase" },
You can’t perform that action at this time.
0 commit comments