From 21c0471876e20d77626a8dae1763ba1aab709a1d Mon Sep 17 00:00:00 2001 From: Leonid Bugaev Date: Thu, 11 Jan 2018 18:24:33 +0200 Subject: [PATCH] Rename config value to be squashed --- config/config.go | 2 +- lint/schema.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/config.go b/config/config.go index 91cf32a27a7..e5d86d23798 100644 --- a/config/config.go +++ b/config/config.go @@ -126,7 +126,7 @@ type HttpServerOptionsConfig struct { MinVersion uint16 `json:"min_version"` FlushInterval int `json:"flush_interval"` SkipURLCleaning bool `json:"skip_url_cleaning"` - Ciphers []string `json:"ciphers"` + Ciphers []string `json:"ssl_ciphers"` } type AuthOverrideConf struct { diff --git a/lint/schema.go b/lint/schema.go index c99ee51c17b..454341aa85d 100644 --- a/lint/schema.go +++ b/lint/schema.go @@ -346,7 +346,7 @@ const confSchema = `{ "type": "string" } }, - "ciphers":{ + "ssl_ciphers":{ "type": ["array", "null"], "items": { "type": "string"