change resampling policy points

This commit is contained in:
Aditya Ujeniya
2026-07-20 09:43:18 +02:00
parent 662e86b45d
commit c509a0104b
+3 -3
View File
@@ -183,12 +183,12 @@ func Init(mainConfig json.RawMessage) {
func targetPointsForPolicy(policy string) int {
switch policy {
case "low":
return 200
return 300
case "medium":
return 500
return 600
case "high":
return 1000
default:
return 500
return 600
}
}