Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
shreyas-goenka committed Feb 21, 2024
1 parent 22623ab commit 7cd61e9
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions internal/helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -484,9 +484,10 @@ func TemporaryRepo(t *testing.T, w *databricks.WorkspaceClient) string {
func GetNodeTypeId(env string) string {
if env == "gcp" {
return "n1-standard-4"
} else if env == "azure" {
return "Standard_DS4_v2"
}
// We default to AWS because our "aws-prod-ucws" test environment has CLOUD_ENV set to "ucws"
return "i3.xlarge"
// aws-prod-ucws has CLOUD_ENV set to "ucws"
else if env == "aws" || env == "ucws" {
return "i3.xlarge"
}
return "Standard_DS4_v2"
}

0 comments on commit 7cd61e9

Please sign in to comment.