We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26683ef commit 96e4219Copy full SHA for 96e4219
crates/dips/src/ipfs.rs
@@ -50,7 +50,7 @@ impl IpfsFetcher for IpfsClient {
50
.map_ok(|chunk| chunk.to_vec())
51
.try_concat()
52
.await
53
- .map_err(|_| DipsError::SubgraphManifestUnavailable(file.to_string()))?;
+ .map_err(|e| DipsError::SubgraphManifestUnavailable(format!("{}: {}", file, e)))?;
54
55
let manifest: GraphManifest = serde_yaml::from_slice(&content)
56
.map_err(|_| DipsError::InvalidSubgraphManifest(file.to_string()))?;
0 commit comments