From 18614344caea9f24fcca3d3dfe484bf4d6f71198 Mon Sep 17 00:00:00 2001 From: Alfred Landrum Date: Mon, 11 Jul 2022 09:34:09 -0700 Subject: [PATCH] change custom datastore config map type --- common/config/config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/config/config.go b/common/config/config.go index 45687ff3a10..08a8d524a0a 100644 --- a/common/config/config.go +++ b/common/config/config.go @@ -329,8 +329,8 @@ type ( CustomDatastoreConfig struct { // Name of the custom datastore Name string `yaml:"name"` - // Options is a set of key-value attributes that can be used by AbstractDatastoreFactory implementation - Options map[string]string `yaml:"options"` + // Options to be used by AbstractDatastoreFactory implementation + Options map[string]any `yaml:"options"` } // Replicator describes the configuration of replicator