Update pkg/doctor/doctor.go

Co-authored-by: John Gibb <johngibb@gmail.com>
This commit is contained in:
MrBeanDev 2026-02-15 14:23:13 +05:30 committed by GitHub
parent 8770a15fa6
commit 63226be170
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -265,7 +265,7 @@ func (d *Doctor) testProviderConnectivity() {
check.Details = append(check.Details, fmt.Sprintf("✓ %s: Reachable", name))
passed++
} else {
check.Details = append(check.Details, fmt.Sprintf("⚠️ %s: HTTP %d", name, resp.StatusCode))
check.Details = append(check.Details, fmt.Sprintf("⚠️ %s: HTTP %d %s", name, resp.StatusCode, resp.Status))
failed++
}
}