Make swssion pass on any additional information.

This commit is contained in:
2025-04-15 09:53:38 -04:00
parent 744f2077f4
commit a5b4398eab
6 changed files with 105 additions and 50 deletions

View File

@@ -58,7 +58,7 @@ mod clocks {
fn sends_timestamp() {
let rx = start_clock([MsgType::Time].to_vec());
let msg = rx.recv_timeout(TIMEOUT).unwrap();
match msg.get_class() {
match msg.get_msg_type() {
MsgType::Time => {
msg.get_data("time").unwrap().to_datetime().unwrap();
}