From 92376d10868fc1b848b1d6544ecb2b834312c237 Mon Sep 17 00:00:00 2001 From: Javier Solana Date: Fri, 3 May 2024 11:06:56 +0200 Subject: [PATCH] fix comment Signed-off-by: Javier Solana --- reposerver/repository/repository.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reposerver/repository/repository.go b/reposerver/repository/repository.go index 5096f68ecc403b..5ea539de074a29 100644 --- a/reposerver/repository/repository.go +++ b/reposerver/repository/repository.go @@ -1931,7 +1931,7 @@ func runConfigManagementPluginSidecars(ctx context.Context, appPath, repoPath, p // generate manifests using commands provided in plugin config file in detected cmp-server sidecar var cmpManifests *pluginclient.ManifestResponse if pluginName != "" { - // In this case, we using use appPath instead of repoPath to only send app resources when app configure plugin by its name + // In this case, we are using appPath instead of repoPath to only send app resources when app configures the plugin by name cmpManifests, err = generateManifestsCMP(ctx, appPath, appPath, env, cmpClient, tarDoneCh, tarExcludedGlobs) } else { cmpManifests, err = generateManifestsCMP(ctx, appPath, repoPath, env, cmpClient, tarDoneCh, tarExcludedGlobs)