client: Disable the sleeps on the wasm target for now.

master
Damir Jelić 2020-05-12 14:23:57 +02:00 committed by stoically
parent ef6104bc53
commit 19b8a1686d
1 changed files with 13 additions and 7 deletions

View File

@ -847,12 +847,13 @@ impl Client {
let response = if let Ok(r) = response {
r
} else {
sleep::new(Duration::from_secs(1)).await;
continue;
#[cfg(not(target_arch = "wasm32"))]
{
sleep::new(Duration::from_secs(1)).await;
continue;
}
};
callback(response).await;
// TODO send out to-device messages here
#[cfg(feature = "encryption")]
@ -874,14 +875,19 @@ impl Client {
}
}
callback(response).await;
let now = Instant::now();
// If the last sync happened less than a second ago, sleep for a
// while to not hammer out requests if the server doesn't respect
// the sync timeout.
if let Some(t) = last_sync_time {
if now - t <= Duration::from_secs(1) {
sleep::new(Duration::from_secs(1)).await;
#[cfg(not(target_arch = "wasm32"))]
{
if let Some(t) = last_sync_time {
if now - t <= Duration::from_secs(1) {
sleep::new(Duration::from_secs(1)).await;
}
}
}