From 0f1f832ddd31ed9fcc49c841cc996e110d16ea82 Mon Sep 17 00:00:00 2001 From: "M. Mert Yildiran" Date: Mon, 3 Jul 2023 23:26:18 +0300 Subject: [PATCH] :bug: Add the missing `json` struct tags to `ResourcesConfig` --- config/configStructs/tapConfig.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/configStructs/tapConfig.go b/config/configStructs/tapConfig.go index e44b2d560..da4dbd55c 100644 --- a/config/configStructs/tapConfig.go +++ b/config/configStructs/tapConfig.go @@ -76,8 +76,8 @@ type DockerConfig struct { } type ResourcesConfig struct { - Worker ResourceRequirements `yaml:"worker"` - Hub ResourceRequirements `yaml:"hub"` + Worker ResourceRequirements `yaml:"worker" json:"worker"` + Hub ResourceRequirements `yaml:"hub" json:"hub"` } type AuthConfig struct {