数据库可以手工清理

This commit is contained in:
GoEdgeLab
2021-01-19 16:13:04 +08:00
parent 5d021ec0b5
commit f71103c259
5 changed files with 126 additions and 2 deletions

View File

@@ -105,7 +105,7 @@ func (this *ServerAccessLogCleaner) cleanDB(db *dbs.DB, endDay string) error {
if len(tableName) == 0 {
continue
}
ok, err := regexp.MatchString(`^edgeHTTPAccessLogs_(\d{8})$`, tableName)
ok, err := regexp.MatchString(`^(?i)edgeHTTPAccessLogs_(\d{8})$`, tableName)
if err != nil {
return err
}