Skip to content

Commit

Permalink
fix(core): use fresh statuses in get status cmd
Browse files Browse the repository at this point in the history
Before this fix, the get status command was using force: false for its
GetServiceStatus tasks, which resulted in the overview tab of the
dashboard displaying stale service statuses.

After this fix, refreshing the dashboard once all services are deployed
will show their statuses as "ready", which is the expected/correct
behavior.
  • Loading branch information
thsig authored and edvald committed Dec 18, 2019
1 parent 5152dde commit b0ebf22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion garden-service/src/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ export class ActionRouter implements TypeGuard {
const tasks = services.map(
(service) =>
new GetServiceStatusTask({
force: false,
force: true,
garden: this.garden,
graph,
log,
Expand Down

0 comments on commit b0ebf22

Please sign in to comment.