Skip to content

Commit

Permalink
Fix deletion order for unseen resources
Browse files Browse the repository at this point in the history
  • Loading branch information
spearki committed Jun 14, 2022
1 parent 98de8a4 commit 8436eac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/syncer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,10 +140,10 @@ export class Syncer {
}

async deleteUnseen() {
await this.state.synthetics.deleteUnseen();
await this.state.dashboards.deleteUnseen();
await this.state.slos.deleteUnseen();
await this.state.synthetics.deleteUnseen();
await this.state.monitors.deleteUnseen();
await this.state.dashboards.deleteUnseen();
}

get lock(): LockFile {
Expand Down

0 comments on commit 8436eac

Please sign in to comment.