story-kit: merge 141_story_improve_server_logging_with_timestamps_and_error_visibility
This commit is contained in:
@@ -838,14 +838,16 @@ mod tests {
|
||||
assert!(args.as_object().unwrap().is_empty());
|
||||
}
|
||||
|
||||
fn make_channels() -> (
|
||||
type Channels = (
|
||||
tokio::sync::mpsc::UnboundedSender<String>,
|
||||
tokio::sync::mpsc::UnboundedReceiver<String>,
|
||||
tokio::sync::mpsc::UnboundedSender<String>,
|
||||
tokio::sync::mpsc::UnboundedReceiver<String>,
|
||||
std::sync::mpsc::Sender<Message>,
|
||||
std::sync::mpsc::Receiver<Message>,
|
||||
) {
|
||||
);
|
||||
|
||||
fn make_channels() -> Channels {
|
||||
let (tok_tx, tok_rx) = tokio::sync::mpsc::unbounded_channel();
|
||||
let (act_tx, act_rx) = tokio::sync::mpsc::unbounded_channel();
|
||||
let (msg_tx, msg_rx) = std::sync::mpsc::channel();
|
||||
|
||||
Reference in New Issue
Block a user