Constellation, Spacedust, Slingshot, UFOs: atproto crates and services for microcosm

jetstream: handle server ping

Changed files
+4
constellation
src
consumer
+4
constellation/src/consumer/jetstream.rs
···
println!("jetstream: closing the connection: {f:?}");
continue;
}
+
Ok(Message::Ping(bytes)) => {
+
let _ = socket.send(Message::Pong(bytes));
+
continue;
+
}
Ok(m) => {
counter!("jetstream_read_fail", "url" => stream.clone(), "reason" => "unexpected message", "message" => format!("{m:?}")).increment(1);
eprintln!("jetstream: unexpected from read (ignoring): {m:?}");