mirror of
https://github.com/taylanbakircioglu/haproxy-openmanager.git
synced 2026-09-18 16:45:19 +00:00
86298b911f
🐛 Critical Bug Fix: - Fixed 'list' object has no attribute 'strip' error - Error occurred in _validate_parsed_config() at line 847 - use_backend_rules is now a list, not a string 🔧 Technical Details: - Changed from: frontend.use_backend_rules.strip() - Changed to: bool(frontend.use_backend_rules) - Simple boolean check works for both list and None types ✅ Impact: - Bulk import parsing now works without errors - Config validation properly handles list-based use_backend_rules - All warning messages display correctly Error was: 'list' object has no attribute 'strip' at _validate_parsed_config line 847 Fix applied: Line 847-848: Use bool() instead of .strip() for list validation