From a5eaf40a9c7b8671b286bdc56bba9ceb6b2bc53f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Tue, 28 Jan 2025 17:27:50 +0100 Subject: [PATCH] update docs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jörn Friedrich Dreyer --- services/proxy/pkg/proxy/policy/selector.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/proxy/pkg/proxy/policy/selector.go b/services/proxy/pkg/proxy/policy/selector.go index f5af26c3a8..42203c046e 100644 --- a/services/proxy/pkg/proxy/policy/selector.go +++ b/services/proxy/pkg/proxy/policy/selector.go @@ -117,7 +117,7 @@ func NewStaticSelector(cfg *config.StaticSelectorConf) Selector { // } // }, // -// This selector can be used in migration-scenarios where some users have already migrated from ownCloud10 to OpenCloud and +// This selector can be used in migration-scenarios or to set up sharded deployments func NewClaimsSelector(cfg *config.ClaimsSelectorConf) Selector { return func(r *http.Request) (s string, err error) { @@ -171,7 +171,7 @@ func NewClaimsSelector(cfg *config.ClaimsSelectorConf) Selector { // } // }, // -// This selector can be used in migration-scenarios where some users have already migrated from ownCloud10 to OpenCloud and +// This selector can be used in migration-scenarios or to set up sharded deployments func NewRegexSelector(cfg *config.RegexSelectorConf) Selector { regexRules := []*regexRule{} sort.Slice(cfg.MatchesPolicies, func(i, j int) bool {