Skip to content

Commit

Permalink
fmt, interf -> any
Browse files Browse the repository at this point in the history
  • Loading branch information
wiardvanrij committed Oct 11, 2024
1 parent 0ede00d commit f85647e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion receiver/datadogreceiver/receiver.go
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ func (ddr *datadogReceiver) handleV2Series(w http.ResponseWriter, req *http.Requ

w.Header().Set("Content-Type", "application/json")
w.WriteHeader(http.StatusAccepted)
response := map[string]interface{}{
response := map[string]any{
"errors": []string{},
}
_ = json.NewEncoder(w).Encode(response)
Expand Down

0 comments on commit f85647e

Please sign in to comment.