Skip to content

Commit

Permalink
Add gpu + instance types (#4310)
Browse files Browse the repository at this point in the history
  • Loading branch information
Feroze Mohideen authored Feb 21, 2024
1 parent 505b9ec commit 84d482c
Show file tree
Hide file tree
Showing 10 changed files with 424 additions and 51 deletions.
3 changes: 3 additions & 0 deletions api/server/handlers/project_integration/preflight_check.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package project_integration

import (
"fmt"
"net/http"

"connectrpc.com/connect"
Expand Down Expand Up @@ -109,6 +110,8 @@ func (p *CreatePreflightCheckHandler) ServeHTTP(w http.ResponseWriter, r *http.R
return
}

fmt.Printf("here is the checkResp: %v\n", checkResp.Msg.PreflightChecks)

errors := []PreflightCheckError{}
for key, val := range checkResp.Msg.PreflightChecks {
if val.Message == "" || !contains(recognizedPreflightCheckKeys, key) {
Expand Down
Loading

0 comments on commit 84d482c

Please sign in to comment.