Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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
Loading