Skip to content

Commit

Permalink
fix: solve scale restreamer
Browse files Browse the repository at this point in the history
  • Loading branch information
Allan-Nava authored Nov 17, 2023
1 parent 8ab922e commit b4ea704
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions compress/api_restreamer.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,7 @@ func (o *compress) ScaleRestreamer(instanceName string, scale int) (*ResponseSer
requestBody := &scaleRestreamerRequest{
BaseModel: BaseModel{ClientId: o.GetCliendId(), ApiKey: o.apiKey},
InstanceName: instanceName,
Scale: scale

Scale: scale,
}
if errs := validator.Validate(requestBody); errs != nil {
// values not valid, deal with errors here
Expand Down

0 comments on commit b4ea704

Please sign in to comment.