diff --git a/backend/crates/common/src/network_subgraph.rs b/backend/crates/common/src/network_subgraph.rs index 7f4b025..e044b43 100644 --- a/backend/crates/common/src/network_subgraph.rs +++ b/backend/crates/common/src/network_subgraph.rs @@ -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,