We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b64edc commit 38f0cd7Copy full SHA for 38f0cd7
src/lib.rs
@@ -15,8 +15,7 @@ use resources::{
15
StacksDevnetResource,
16
};
17
use serde::{de::DeserializeOwned, Deserialize, Serialize};
18
-use std::thread::sleep;
19
-use std::{collections::BTreeMap, str::FromStr, time::Duration};
+use std::{collections::BTreeMap, str::FromStr};
20
use strum::IntoEnumIterator;
21
use tower::BoxError;
22
@@ -171,10 +170,8 @@ impl StacksDevnetApiK8sManager {
171
170
});
172
}
173
174
- self.deploy_bitcoin_node_pod(&config).await?;
175
-
176
- sleep(Duration::from_secs(5));
177
+ self.deploy_bitcoin_node_pod(&config).await?;
178
self.deploy_stacks_node_pod(&config).await?;
179
180
if !config.disable_stacks_api {
0 commit comments