summaryrefslogtreecommitdiff
path: root/examples/test.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/test.rs')
-rw-r--r--examples/test.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/test.rs b/examples/test.rs
index 7e38c66..111c8c8 100644
--- a/examples/test.rs
+++ b/examples/test.rs
@@ -45,4 +45,19 @@ async fn main() {
.unwrap()
);
}
+
+ println!("== LIST PREFIX ==");
+ let prefix = consul
+ .kv_get_prefix("diplonat/autodiscovery", None)
+ .await
+ .unwrap();
+ println!("{:?}", prefix);
+ for i in 0..3 {
+ println!("-- wait for update... --");
+ let prefix = consul
+ .kv_get_prefix("diplonat/autodiscovery", Some(prefix.index()))
+ .await
+ .unwrap();
+ println!("{:?}", prefix);
+ }
}