From faa7194daf345ef35a67e7ffa3d239fc8226d4f1 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Fri, 12 Apr 2024 11:47:10 -0400 Subject: [PATCH] TOSQUASH 322e015d Fix `mk_codec()` input arg --- tractor/msg/_codec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tractor/msg/_codec.py b/tractor/msg/_codec.py index e117457..82fd201 100644 --- a/tractor/msg/_codec.py +++ b/tractor/msg/_codec.py @@ -420,7 +420,7 @@ def mk_codec( # instance of the default `msgspec.msgpack` codec settings, i.e. # no custom structs, hooks or other special types. -_def_msgspec_codec: MsgCodec = mk_codec(ipc_msg_spec=Any) +_def_msgspec_codec: MsgCodec = mk_codec(ipc_pld_spec=Any) # The built-in IPC `Msg` spec. # Our composing "shuttle" protocol which allows `tractor`-app code