mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2024-10-01 01:45:40 -04:00
Logging for different scenarios when reading from rate stream
This commit is contained in:
parent
fc2c08c7c9
commit
1f1b3a95bc
@ -7,7 +7,8 @@ use serde::{Deserialize, Serialize};
|
|||||||
use serde_json::Value;
|
use serde_json::Value;
|
||||||
use std::convert::TryFrom;
|
use std::convert::TryFrom;
|
||||||
use tokio::sync::watch;
|
use tokio::sync::watch;
|
||||||
use tokio_tungstenite::tungstenite::Message;
|
use tokio_tungstenite::tungstenite::{protocol::CloseFrame, Message};
|
||||||
|
use tracing::{error, trace};
|
||||||
use watch::Receiver;
|
use watch::Receiver;
|
||||||
|
|
||||||
const KRAKEN_WS_URL: &str = "wss://ws.kraken.com";
|
const KRAKEN_WS_URL: &str = "wss://ws.kraken.com";
|
||||||
@ -77,14 +78,27 @@ impl RateService {
|
|||||||
while let Some(msg) = rate_stream.next().await {
|
while let Some(msg) = rate_stream.next().await {
|
||||||
let msg = match msg {
|
let msg = match msg {
|
||||||
Ok(Message::Text(msg)) => msg,
|
Ok(Message::Text(msg)) => msg,
|
||||||
Ok(Message::Close(..)) => {
|
Ok(Message::Close(close_frame)) => {
|
||||||
|
if let Some(CloseFrame { code, reason }) = close_frame {
|
||||||
|
error!(
|
||||||
|
"Kraken rate stream was closed with code {} and reason: {}",
|
||||||
|
code, reason
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
error!("Kraken rate stream was closed without code and reason");
|
||||||
|
}
|
||||||
let _ = rate_update.send(Err(Error::CloseMessage));
|
let _ = rate_update.send(Err(Error::CloseMessage));
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
Ok(_) => {
|
Ok(msg) => {
|
||||||
|
trace!(
|
||||||
|
"Kraken rate stream returned non text message that will be ignored: {}",
|
||||||
|
msg
|
||||||
|
);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
|
error!("Error when reading from Kraken rate stream: {}", e);
|
||||||
let _ = rate_update.send(Err(e.into()));
|
let _ = rate_update.send(Err(e.into()));
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user