From 13e6b66243110fb37602f051a2e6b4df2ac80ee2 Mon Sep 17 00:00:00 2001 From: Marcin Maciaszczyk Date: Tue, 24 Oct 2023 11:11:02 +0200 Subject: [PATCH] update config file --- build/docker/config.yaml | 2 +- pkg/kascfg/kascfg.pb.go | 4 ++-- pkg/kascfg/kascfg.proto | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build/docker/config.yaml b/build/docker/config.yaml index c0d560c5..74f128e2 100644 --- a/build/docker/config.yaml +++ b/build/docker/config.yaml @@ -71,4 +71,4 @@ api: # key_file: /server-key.pem max_connection_age: "7200s" listen_grace_period: "5s" -plural_url: https://console.cd-demo.onplural.sh/gql +plural_url: "https://console.cd-demo.onplural.sh/gql" diff --git a/pkg/kascfg/kascfg.pb.go b/pkg/kascfg/kascfg.pb.go index e0ec9264..1589db26 100644 --- a/pkg/kascfg/kascfg.pb.go +++ b/pkg/kascfg/kascfg.pb.go @@ -1905,7 +1905,7 @@ type ConfigurationFile struct { // Private API for kas->kas communication. PrivateApi *PrivateApiCF `protobuf:"bytes,5,opt,name=private_api,proto3" json:"private_api,omitempty"` // Plural URL address - PluralUrl string `protobuf:"bytes,7,opt,name=plural_url,proto3" json:"plural_url,omitempty"` + PluralUrl string `protobuf:"bytes,6,opt,name=plural_url,proto3" json:"plural_url,omitempty"` } func (x *ConfigurationFile) Reset() { @@ -2392,7 +2392,7 @@ var file_pkg_kascfg_kascfg_proto_rawDesc = []byte{ 0x63, 0x66, 0x67, 0x2e, 0x50, 0x72, 0x69, 0x76, 0x61, 0x74, 0x65, 0x41, 0x70, 0x69, 0x43, 0x46, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x8a, 0x01, 0x02, 0x10, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x69, 0x76, 0x61, 0x74, 0x65, 0x5f, 0x61, 0x70, 0x69, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6c, 0x75, 0x72, 0x61, - 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x6c, 0x75, + 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x6c, 0x75, 0x72, 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x2a, 0x3a, 0x0a, 0x0e, 0x6c, 0x6f, 0x67, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x12, 0x08, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x64, 0x65, 0x62, 0x75, 0x67, 0x10, 0x01, 0x12, 0x08, diff --git a/pkg/kascfg/kascfg.proto b/pkg/kascfg/kascfg.proto index 7c74165f..f0376b90 100644 --- a/pkg/kascfg/kascfg.proto +++ b/pkg/kascfg/kascfg.proto @@ -336,5 +336,5 @@ message ConfigurationFile { // Private API for kas->kas communication. PrivateApiCF private_api = 5 [json_name = "private_api", (validate.rules).message.required = true]; // Plural URL address - string plural_url = 7 [json_name = "plural_url"]; + string plural_url = 6 [json_name = "plural_url"]; }