Skip to content

Commit

Permalink
[bugfix] correct error message when app version is not found
Browse files Browse the repository at this point in the history
  • Loading branch information
ayys authored and theduke committed May 14, 2024
1 parent b19a1e1 commit b663584
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/backend-api/src/query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -884,7 +884,7 @@ fn get_app_logs(
.run_graphql(types::GetDeployAppLogs::build(variables.clone()))
.await?
.get_deploy_app_version
.context("unknown package version")?;
.context("app version not found")?;

let page: Vec<_> = deploy_app_version
.logs
Expand Down

0 comments on commit b663584

Please sign in to comment.