aboutsummaryrefslogtreecommitdiff
path: root/src/consul.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/consul.rs')
-rw-r--r--src/consul.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/consul.rs b/src/consul.rs
index 6750ba0..ee1935c 100644
--- a/src/consul.rs
+++ b/src/consul.rs
@@ -114,7 +114,7 @@ impl Consul {
};
let resp: ConsulNodeCatalog = http.json().await?;
- return Ok((resp, new_idx));
+ Ok((resp, new_idx))
}
// ---- KV get and put ----