Skip to content

Commit 30732d2

Browse files
Remove support for UDP actor system base.
1 parent 15ddc82 commit 30732d2

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

esrally/actors/_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
from esrally import config
2222
from esrally.utils import convert
2323

24-
SystemBase = Literal["multiprocQueueBase", "multiprocTCPBase", "multiprocUDPBase"]
24+
SystemBase = Literal["multiprocQueueBase", "multiprocTCPBase"]
2525

2626
DEFAULT_SYSTEM_BASE: SystemBase = "multiprocTCPBase"
2727
DEFAULT_FALLBACK_SYSTEM_BASE: SystemBase = "multiprocQueueBase"

tests/actors/config_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"),

tests/actors/system_test.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff 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"},

0 commit comments

Comments
 (0)