From 68c1ede6308464de708282e93492111e8af66676 Mon Sep 17 00:00:00 2001 From: sarao Date: Sun, 23 Jul 2023 11:28:13 +0300 Subject: [PATCH] check tests on jfrog-client-go changes --- artifactory/commands/replication/create.go | 1 + artifactory/commands/replication/template.go | 2 ++ 2 files changed, 3 insertions(+) diff --git a/artifactory/commands/replication/create.go b/artifactory/commands/replication/create.go index 506113b61..efe3418f6 100644 --- a/artifactory/commands/replication/create.go +++ b/artifactory/commands/replication/create.go @@ -161,4 +161,5 @@ var writersMap = map[string]utils.AnswerWriter{ PathPrefix: utils.WriteStringAnswer, IncludePathPrefixPattern: utils.WriteStringAnswer, SocketTimeoutMillis: utils.WriteIntAnswer, + DisableProxy: utils.WriteBoolAnswer, } diff --git a/artifactory/commands/replication/template.go b/artifactory/commands/replication/template.go index 950988933..b7dd01f93 100644 --- a/artifactory/commands/replication/template.go +++ b/artifactory/commands/replication/template.go @@ -37,6 +37,7 @@ const ( PathPrefix = "pathPrefix" IncludePathPrefixPattern = "includePathPrefixPattern" SocketTimeoutMillis = "socketTimeoutMillis" + DisableProxy = "disableProxy" ) type ReplicationTemplateCommand struct { @@ -218,4 +219,5 @@ var suggestionMap = map[string]prompt.Suggest{ PathPrefix: {Text: PathPrefix}, IncludePathPrefixPattern: {Text: IncludePathPrefixPattern}, SocketTimeoutMillis: {Text: SocketTimeoutMillis}, + DisableProxy: {Text: DisableProxy}, }