remove get event transport arg

This commit is contained in:
cmcmarrow 2023-06-12 11:21:37 -05:00 committed by Pedro Algarvio
parent 60086b0fa0
commit 0f4c789349

View file

@ -106,7 +106,6 @@ TAGS = {
def get_event(
node,
sock_dir=None,
transport=None,
opts=None,
listen=True,
io_loop=None,
@ -121,13 +120,6 @@ def get_event(
set_event_handler() API. Otherwise, operation
will be synchronous.
"""
if transport:
salt.utils.versions.warn_until(
"Chlorine",
"The 'transport' kwarg has been deprecated and it will be removed "
"in the Chlorine release, as such, its usage is no longer required.",
)
sock_dir = sock_dir or opts["sock_dir"]
# TODO: AIO core is separate from transport
if node == "master":