Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions internal/app/connectconformance/server_runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,10 @@ func runTestCasesForServer(
results.failedToStart(testCases, fmt.Errorf("error reading server response: %w", err))
return
}
if meta.useTLS && len(resp.PemCert) == 0 {
results.failedToStart(testCases, errors.New("server config uses TLS, but server response did not indicate a certificate"))
return
}

// Send all test cases to the client.
var wg sync.WaitGroup
Expand Down