You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PostgreSQL 17 Support (Commit: 87a6f0f)
postgres/check.go: Added new checks for PostgreSQL 17 across multiple categories
postgres/installation/installation.go: Added systemd service verification for PostgreSQL 17
SSL Handling and Structure Improvements (Commit: 830c261)
Configuration: Updated config handling for SSL and ping check flags
Database Connections: Enhanced PostgreSQL and MySQL connection handling
Log Parser: Improved log parsing with better SSL handling
Templates: Updated HTML report templates
Integration Tests: Enhanced test case structure
ifstrings.Contains(out, "In logline prefix, please set '%u' and '%d'") ||strings.Contains(out, "Please set log_line_prefix to '%h' or '%r' or enable log_connections") {
191
+
ifstrings.Contains(out, "In logline prefix, please set '%u' and '%d'") ||strings.Contains(out, "please set log_line_prefix") {
192
192
fmt.Println("skipping test for unused files as required details are not available in prefix:", prefix)
ifstrings.Contains(out, `Unused lines found from given log file: [11 23 28]`) {
202
+
ifstrings.Contains(out, `Unused lines found from given log file: [11 23 28]`) ||strings.Contains(out, `Unused lines found from given log file: [11 16 17 23 28]`) {
203
203
fmt.Println("unused lines test is working fine for prefix:", prefix)
0 commit comments