Skip to content
This repository has been archived by the owner on Oct 25, 2024. It is now read-only.

chore: nice errors on failed forc-index-deploy #1408

Merged
merged 3 commits into from
Oct 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions plugins/forc-index/src/ops/forc_index_deploy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,13 +130,16 @@ pub async fn init(command: DeployCommand) -> anyhow::Result<()> {
.headers(headers)
.send()
.await
.expect("Failed to deploy indexer.");
.unwrap_or_else(|e| {
error!("❌ Failed to deploy indexer: {e}");
std::process::exit(1);
});

let status = res.status();
let res_json = res
.json::<Map<String, Value>>()
.await
.expect("Failed to read JSON response.");
let res_json = res.json::<Map<String, Value>>().await.unwrap_or_else(|e| {
error!("❌ Failed to read indexer's response as JSON: {e}");
std::process::exit(1);
});

if status != StatusCode::OK {
if verbose {
Expand Down