Skip to content

Commit

Permalink
RHINENG-9505: candlepin API can't handle uppercase keys
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelMraka committed Sep 12, 2024
1 parent 1571a99 commit 58cd16f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base/candlepin/candlepin.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package candlepin

type ConsumersUpdateRequest struct {
Environments []ConsumersUpdateEnvironment
Environments []ConsumersUpdateEnvironment `json:"environments"`
}

type ConsumersUpdateEnvironment struct {
ID string
ID string `json:"id"`
}

type ConsumersUpdateResponse struct {
Expand Down

0 comments on commit 58cd16f

Please sign in to comment.