Skip to content

Commit

Permalink
Changed min and max data members in DaskAutoscalerSpec struct from 's…
Browse files Browse the repository at this point in the history
…tring' to 'int'
  • Loading branch information
Jordan Godau committed Jun 11, 2024
1 parent 3ff7989 commit 9bf00f6
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 9bf00f6

Please sign in to comment.