Skip to content

Commit 71cd136

Browse files
chore: bump to 0.5.1
Signed-off-by: Brooks Townsend <brooks@cosmonic.com> removed wait for washboard Signed-off-by: Brooks Townsend <brooks@cosmonic.com> removed wait for washboard Signed-off-by: Brooks Townsend <brooks@cosmonic.com>
1 parent 54f1bbd commit 71cd136

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wadm"
33
description = "wasmCloud Application Deployment Manager: A tool for running Wasm applications in wasmCloud"
4-
version = "0.5.0"
4+
version = "0.5.1"
55
edition = "2021"
66
authors = ["wasmCloud Team"]
77
keywords = ["webassembly", "wasmcloud", "wadm"]
@@ -11,7 +11,14 @@ repository = "https://github.com/wasmcloud/wadm"
1111

1212
[features]
1313
default = []
14-
cli = ["clap", "tracing-opentelemetry", "tracing-subscriber", "opentelemetry", "opentelemetry-otlp", "atty"]
14+
cli = [
15+
"clap",
16+
"tracing-opentelemetry",
17+
"tracing-subscriber",
18+
"opentelemetry",
19+
"opentelemetry-otlp",
20+
"atty",
21+
]
1522
# internal feature for e2e tests
1623
_e2e_tests = []
1724

tests/helpers.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -127,11 +127,8 @@ async fn start_wash_instance(cfg: &TestWashConfig) -> Result<CleanupGuard> {
127127

128128
assert!(output.success(), "Error trying to start host",);
129129

130-
// Make sure we can connect to washboard
131-
wait_for_server(&cfg.washboard_url()).await;
132-
133130
// Give the host just a bit more time to get totally ready
134-
tokio::time::sleep(std::time::Duration::from_secs(2)).await;
131+
tokio::time::sleep(std::time::Duration::from_secs(10)).await;
135132

136133
Ok(guard)
137134
}

0 commit comments

Comments
 (0)