Skip to content

Commit

Permalink
Merge pull request #894 from JordanGunn/autoscalerspec-minmax-int
Browse files Browse the repository at this point in the history
Fix: Mismatch between declared CRDs and struct for DaskAutoscalers
  • Loading branch information
bstadlbauer committed Jun 12, 2024
2 parents 3ff7989 + 9bf00f6 commit 6d3d9b2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,9 @@ type DaskAutoscalerSpec struct {
// Name of the cluster to associate this autoscaler with
Cluster string `json:"cluster"`
// Minimum number of workers
Minimum string `json:"minimum"`
Minimum int `json:"minimum"`
// Maximum number of workers
Maximum string `json:"maximum"`
Maximum int `json:"maximum"`
}

// +genclient
Expand Down

0 comments on commit 6d3d9b2

Please sign in to comment.