Skip to content

Commit

Permalink
feat: Mongodb local validation (#1633)
Browse files Browse the repository at this point in the history
feat: Mongodb local validation (#1633)
  • Loading branch information
noahmmcgivern authored Jul 23, 2024
1 parent d547bed commit 2e9982a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions internal/install/validation/integration_validator.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ func ValidateIntegration(integrationName string) (string, error) {

cmd := exec.Command(binPath)

if integrationName == "mongodb3" {
cmd = exec.Command(binPath, "-short_running")
}

for k, v := range integration.Env {
env := fmt.Sprintf("%s=%s", k, v)

Expand Down

0 comments on commit 2e9982a

Please sign in to comment.