Openstatus www.openstatus.dev

chore: scheduling strategy (#1245)

authored by

Maximilian Kaske and committed by
GitHub
031f14a2 0a32aa13

+11 -1
+11 -1
apps/web/src/config/alternatives.ts
··· 27 27 features: [ 28 28 opensource(), 29 29 bootstrap(), 30 - global(), 30 + multiregion(4), 31 + schedulingStrategy(), 31 32 incident(), 32 33 otelexport(), 33 34 githubaction(), ··· 208 209 alternative, 209 210 }; 210 211 } 212 + 213 + function schedulingStrategy(alternative = "round-robin"): Feature { 214 + return { 215 + label: "Scheduling strategy", 216 + description: "Choose your scheduling strategy.", 217 + openstatus: "parallel", 218 + alternative, 219 + }; 220 + }