Skip to content

Commit

Permalink
common: Stop forcing http instead of https
Browse files Browse the repository at this point in the history
  • Loading branch information
leoyvens committed Aug 3, 2023
1 parent 83ac7df commit 6e30bbb
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions backend/crates/common/src/network_subgraph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -238,10 +238,6 @@ fn indexer_allocation_data_to_real_indexer(
.url
.ok_or_else(|| anyhow!("Indexer without URL"))?
.parse()?;
// FIXME: we're unable to connect to indexers over HTTPS inside
// docker-compose for now.
url.set_scheme("http")
.map_err(|_| anyhow::anyhow!("unable to set scheme"))?;
url.set_path("/status");
let config = IndexerConfig {
name: indexer.id,
Expand Down

0 comments on commit 6e30bbb

Please sign in to comment.