fix client IP handling behind proxies
Deployment Config CI / Deployment Config (push) Successful in 27s
Frontend CI / Frontend (push) Successful in 3m2s
Backend CI / Backend (push) Successful in 14m8s

This commit is contained in:
2026-05-05 23:01:25 +08:00
parent ffb7d179c6
commit 3c912949e4
20 changed files with 272 additions and 16 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ func Diff(previous, current *Config) []FieldChange {
changes = append(changes, FieldChange{Path: path, Hot: hot})
}
if previous.Server != current.Server {
if !reflect.DeepEqual(previous.Server, current.Server) {
addChange("server", false)
}
if previous.Database != current.Database {