From 1a7c829bb4d85f109d3fc34ccf55cf1f685b453f Mon Sep 17 00:00:00 2001 From: Willy Kloucek <34452982+wkloucek@users.noreply.github.com> Date: Thu, 23 Sep 2021 17:05:30 +0200 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Benedikt Kulmann --- storage/pkg/flagset/frontend.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/storage/pkg/flagset/frontend.go b/storage/pkg/flagset/frontend.go index 1431dd9b20..93212bc9bf 100644 --- a/storage/pkg/flagset/frontend.go +++ b/storage/pkg/flagset/frontend.go @@ -230,14 +230,14 @@ func FrontendWithConfig(cfg *config.Config) []cli.Flag { &cli.StringFlag{ Name: "appprovider-apps-url", Value: flags.OverrideDefaultString(cfg.Reva.AppProvider.AppsURL, "/app/list"), - Usage: "URL where the archiver is reachable", + Usage: "URL where the app listing of the app provider is reachable", EnvVars: []string{"STORAGE_FRONTEND_APP_PROVIDER_APPS_URL"}, Destination: &cfg.Reva.AppProvider.AppsURL, }, &cli.StringFlag{ Name: "appprovider-open-url", Value: flags.OverrideDefaultString(cfg.Reva.AppProvider.OpenURL, "/app/open"), - Usage: "URL where the archiver is reachable", + Usage: "URL where files can be handed over to an application from the app provider", EnvVars: []string{"STORAGE_FRONTEND_APP_PROVIDER_OPEN_URL"}, Destination: &cfg.Reva.AppProvider.OpenURL, },