Remove unneeded log messages in randomized test
This commit is contained in:
parent
00e8625037
commit
e04d0be853
1 changed files with 0 additions and 2 deletions
|
@ -799,7 +799,6 @@ async fn apply_client_operation(
|
||||||
anyhow::Ok(())
|
anyhow::Ok(())
|
||||||
});
|
});
|
||||||
if detach {
|
if detach {
|
||||||
log::info!("{}: detaching save request", client.username);
|
|
||||||
cx.update(|cx| save.detach_and_log_err(cx));
|
cx.update(|cx| save.detach_and_log_err(cx));
|
||||||
} else {
|
} else {
|
||||||
save.await?;
|
save.await?;
|
||||||
|
@ -900,7 +899,6 @@ async fn apply_client_operation(
|
||||||
.map_err(|err| anyhow!("search request failed: {:?}", err))
|
.map_err(|err| anyhow!("search request failed: {:?}", err))
|
||||||
});
|
});
|
||||||
if detach {
|
if detach {
|
||||||
log::info!("{}: detaching save request", client.username);
|
|
||||||
cx.update(|cx| search.detach_and_log_err(cx));
|
cx.update(|cx| search.detach_and_log_err(cx));
|
||||||
} else {
|
} else {
|
||||||
search.await?;
|
search.await?;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue