We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e4b6d9 commit b63cae6Copy full SHA for b63cae6
src/comm_manager.jl
@@ -47,7 +47,7 @@ comm_target(comm :: Comm{target}) where {target} = target
47
function comm_info_request(sock, msg)
48
reply = if haskey(msg.content, "target_name")
49
t = Symbol(msg.content["target_name"])
50
- filter((k, v) -> comm_target(v) == t, comms)
+ filter(kv -> comm_target(kv.second) == t, comms)
51
else
52
# reply with all comms.
53
comms
0 commit comments