From 47a5a2a56027962298839e49371c13685355df2f Mon Sep 17 00:00:00 2001 From: Matthew Fisher Date: Fri, 1 Dec 2023 15:10:47 -0800 Subject: [PATCH] add more context to certain errors Signed-off-by: Matthew Fisher --- src/commands/deploy.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/commands/deploy.rs b/src/commands/deploy.rs index ba00a1e..70e8dc4 100644 --- a/src/commands/deploy.rs +++ b/src/commands/deploy.rs @@ -253,7 +253,8 @@ impl DeployCommand { client .add_revision(storage_id.clone(), version.clone()) - .await?; + .await + .context("Unable to add revision")?; for kv in self.key_values { client