Skip to content

Commit

Permalink
temporary fix in nym_server until queue worker pool is added
Browse files Browse the repository at this point in the history
  • Loading branch information
idky137 committed Jul 16, 2024
1 parent f930039 commit ccaf2c8
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions zingo-proxyd/src/nym_server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,19 @@ impl NymServer {
.path_and_query("/")
.build()
.unwrap(),
zebrad_uri: test_node_and_return_uri(
&zebrad_port,
Some("xxxxxx".to_string()),
Some("xxxxxx".to_string()),
)
.await
.unwrap(),
zebrad_uri: http::Uri::builder()
.scheme("http")
.authority(format!("localhost:{zebrad_port}"))
.path_and_query("/")
.build()
.unwrap(),
// zebrad_uri: test_node_and_return_uri(
// &zebrad_port,
// Some("xxxxxx".to_string()),
// Some("xxxxxx".to_string()),
// )
// .await
// .unwrap(),
online: self.online.clone(),
};
while self.online.load(Ordering::SeqCst) {
Expand Down

0 comments on commit ccaf2c8

Please sign in to comment.