Skip to content

Commit

Permalink
Wait for proxy container to stop before removing it
Browse files Browse the repository at this point in the history
  • Loading branch information
Jurre Stender committed Aug 11, 2021
1 parent c899f28 commit c61313c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/updater.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ export class Updater {
// TODO: report job runner_error?
core.error(`Error ${e}`)
} finally {
this.proxy.container?.stop()
this.proxy.container?.remove()
await this.proxy.container?.stop()
await this.proxy.container?.remove()
}
}

Expand Down

0 comments on commit c61313c

Please sign in to comment.