Skip to content

Commit

Permalink
Merge pull request #115 from lumigo-io/clear-event-bridge
Browse files Browse the repository at this point in the history
Clear eventBridge first
  • Loading branch information
efimk-lu authored Feb 25, 2021
2 parents 9b2a2be + 45f5381 commit cf8243d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2
jobs:
build:
docker:
- image: circleci/node:10.16.0
- image: circleci/node:14.3
working_directory: ~/lumigo-cli
steps:
- checkout
Expand All @@ -13,7 +13,7 @@ jobs:

deploy:
docker:
- image: circleci/node:10.16.0
- image: circleci/node:14.3
working_directory: ~/lumigo-cli
steps:
- checkout
Expand Down
4 changes: 2 additions & 2 deletions src/commands/clear-account.js
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,8 @@ class ClearAccountCommand extends Command {
async clearEnvironment(AWS) {
await this.clearS3(AWS);
console.info("");
await this.clearEventBridges(AWS);
console.info("");
await this.clearCF(AWS);
console.info("");
await this.clearApiGw(AWS);
Expand All @@ -243,8 +245,6 @@ class ClearAccountCommand extends Command {
console.info("");
await this.clearPolicies(AWS);
console.info("");
await this.clearEventBridges(AWS);
console.info("");
}
}

Expand Down

0 comments on commit cf8243d

Please sign in to comment.