Disable nginx site accessibility check temporarily
- Shows all parsed nginx sites instead of filtering by accessibility - This ensures nginx sites are displayed in dashboard immediately - Accessibility check was filtering out sites due to curl issues or timeouts
This commit is contained in:
parent
7af4f09ca2
commit
5a215fc259
@ -701,9 +701,8 @@ impl ServiceCollector {
|
|||||||
// Check which sites are actually accessible
|
// Check which sites are actually accessible
|
||||||
let mut accessible_sites = Vec::new();
|
let mut accessible_sites = Vec::new();
|
||||||
for site in sites {
|
for site in sites {
|
||||||
if self.check_site_accessibility(&site).await {
|
// Temporarily disable accessibility check - show all parsed sites
|
||||||
accessible_sites.push(site); // Remove checkmark - status will be shown via sub_service row status
|
accessible_sites.push(site); // Remove checkmark - status will be shown via sub_service row status
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Limit to reasonable number
|
// Limit to reasonable number
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user