Skip to content

Commit

Permalink
apigateway: include targetUrl in output (#1072)
Browse files Browse the repository at this point in the history
Add targetUrl to output of the service check command
  • Loading branch information
evans authored and trevor-scheer committed Mar 5, 2019
1 parent af17dbf commit c1599de
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 33 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- Remove default `--tag=current` for some client commands that used it [#1062](https://github.com/apollographql/apollo-tooling/pull/1062)
- Add missing dependency `@oclif/errors` [#1068](https://github.com/apollographql/apollo-tooling/pull/1068)
- The keyword "type" is escaped when generating scala.js via client:codegen [#1066](https://github.com/apollographql/apollo-tooling/pull/1066)
- Include targetUrl in the output of the `service:check` command [#1072](https://github.com/apollographql/apollo-tooling/pull/1072)

# `[email protected]`

Expand Down
47 changes: 14 additions & 33 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions packages/apollo/src/commands/service/check.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ export default class ServiceCheck extends ProjectCommand {
]
});
this.log("\n");
this.log(`View full details at: ${targetUrl}`);
// exit with failing status if we have failures
if (failures.length > 0) {
this.exit();
Expand Down

0 comments on commit c1599de

Please sign in to comment.