From 8ceb77e66a9234dc460f28234390a5896a96a584 Mon Sep 17 00:00:00 2001 From: Sergey Romanov Date: Sat, 2 Feb 2019 18:41:19 +0500 Subject: [PATCH] Config: Fix quotes at Readonly method (#360) --- config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.go b/config/config.go index 6d021d5..31652be 100644 --- a/config/config.go +++ b/config/config.go @@ -118,7 +118,7 @@ type Config struct { SlaveOf string `toml:"slaveof"` - Readonly bool `toml:readonly` + Readonly bool `toml:"readonly"` DataDir string `toml:"data_dir"`