Skip to content

Commit

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

Fixes: #18145
(cherry picked from commit 5b1927e)
  • Loading branch information
ph authored May 13, 2020
1 parent 4345e93 commit 8eabfee
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 8eabfee

Please sign in to comment.