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 { func targetPointsForPolicy(policy string) int {
switch policy { switch policy {
case "low": case "low":
return 200 return 300
case "medium": case "medium":
return 500 return 600
case "high": case "high":
return 1000 return 1000
default: default:
return 500 return 600
} }
} }