Skip to content

Commit

Permalink
[Elastic Agent] fix a typo in the ACK message. (elastic#18396)
Browse files Browse the repository at this point in the history
Small typo in the ACK message

Fixes: elastic#18145
  • Loading branch information
ph authored May 11, 2020
1 parent 1e2ec4e commit 5b1927e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x-pack/elastic-agent/pkg/agent/application/fleet_acker.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ func constructEvent(action fleetapi.Action, agentID string) fleetapi.AckEvent {
Timestamp: time.Now().Format(fleetTimeFormat),
ActionID: action.ID(),
AgentID: agentID,
Message: fmt.Sprintf("Action '%s' ot type '%s' acknowledged.", action.ID(), action.Type()),
Message: fmt.Sprintf("Action '%s' of type '%s' acknowledged.", action.ID(), action.Type()),
}
}

Expand Down

0 comments on commit 5b1927e

Please sign in to comment.