From c22f2d499de4573fbe2e42055a4f240d7553e58d Mon Sep 17 00:00:00 2001 From: FZambia Date: Thu, 2 Jan 2025 12:36:42 +0200 Subject: [PATCH] latest changes --- internal/configtypes/engine.go | 2 +- internal/configtypes/namespace.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/configtypes/engine.go b/internal/configtypes/engine.go index c182090159..3aaab0ad88 100644 --- a/internal/configtypes/engine.go +++ b/internal/configtypes/engine.go @@ -8,7 +8,7 @@ type Engine struct { } type RedisBrokerCommon struct { - UseLists bool `mapstructure:"use_lists" json:"use_lists" envconfig:"use_lists" yaml:"use_lists" toml:"use_lists"` + UseLists bool `mapstructure:"history_use_lists" json:"history_use_lists" envconfig:"history_use_lists" yaml:"history_use_lists" toml:"history_use_lists"` } type RedisBroker struct { diff --git a/internal/configtypes/namespace.go b/internal/configtypes/namespace.go index 6efd72cd45..4e3c6065d0 100644 --- a/internal/configtypes/namespace.go +++ b/internal/configtypes/namespace.go @@ -165,7 +165,7 @@ type ChannelOptions struct { // SubscribeStreamProxyName of proxy to use for subscribe stream operations in namespace. SubscribeStreamProxyName string `mapstructure:"subscribe_stream_proxy_name" default:"default" json:"subscribe_stream_proxy_name" envconfig:"subscribe_stream_proxy_name" yaml:"subscribe_stream_proxy_name" toml:"subscribe_stream_proxy_name"` // SubscribeStreamBidirectional enables using bidirectional stream proxy for the namespace. - SubscribeStreamBidirectional bool `mapstructure:"subscribe_stream_bidirectional" json:"subscribe_stream_bidirectional" envconfig:"subscribe_stream_bidirectional" yaml:"subscribe_stream_bidirectional" toml:"subscribe_stream_bidirectional"` + SubscribeStreamBidirectional bool `mapstructure:"subscribe_stream_proxy_bidirectional" json:"subscribe_stream_proxy_bidirectional" envconfig:"subscribe_stream_proxy_bidirectional" yaml:"subscribe_stream_proxy_bidirectional" toml:"subscribe_stream_proxy_bidirectional"` Compiled `json:"-" yaml:"-" toml:"-"` }