From 4fecbe820d0e6491598df42156373e8935adeb3b Mon Sep 17 00:00:00 2001 From: Christoph Kluge Date: Tue, 3 Dec 2024 17:11:32 +0100 Subject: [PATCH] change order to match docs --- pkg/schema/config.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/schema/config.go b/pkg/schema/config.go index 0a30d86..f9116cf 100644 --- a/pkg/schema/config.go +++ b/pkg/schema/config.go @@ -164,13 +164,13 @@ type ProgramConfig struct { // Defines time X in seconds in which jobs are considered to be "short" and will be filtered in specific views. ShortRunningJobsDuration int `json:"short-running-jobs-duration"` - // Array of Clusters - Clusters []*ClusterConfig `json:"clusters"` - // Energy Mix CO2 Emission Constant [g/kWh] // If entered, displays estimated CO2 emission for job based on jobs totalEnergy EmissionConstant int `json:"emission-constant"` // Frequency of cron job workers CronFrequency *CronFrequency `json:"cron-frequency"` + + // Array of Clusters + Clusters []*ClusterConfig `json:"clusters"` }