Skip to content

Commit 38f0cd7

Browse files
committed
remove sleep
1 parent 9b64edc commit 38f0cd7

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/lib.rs

+2-5
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ use resources::{
1515
StacksDevnetResource,
1616
};
1717
use serde::{de::DeserializeOwned, Deserialize, Serialize};
18-
use std::thread::sleep;
19-
use std::{collections::BTreeMap, str::FromStr, time::Duration};
18+
use std::{collections::BTreeMap, str::FromStr};
2019
use strum::IntoEnumIterator;
2120
use tower::BoxError;
2221

@@ -171,10 +170,8 @@ impl StacksDevnetApiK8sManager {
171170
});
172171
}
173172
}
174-
self.deploy_bitcoin_node_pod(&config).await?;
175-
176-
sleep(Duration::from_secs(5));
177173

174+
self.deploy_bitcoin_node_pod(&config).await?;
178175
self.deploy_stacks_node_pod(&config).await?;
179176

180177
if !config.disable_stacks_api {

0 commit comments

Comments
 (0)