From b4cb488597727e85e0344994ae2b97d3cd4e6b61 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Fri, 26 Jun 2020 16:56:46 +0200 Subject: [PATCH] Fix reva public link service command + changelog Add missing changelog for the eos config change. Fixed the reva public link service command to register properly. --- changelog/unreleased/update-reva-config | 8 ++++++++ pkg/command/revastoragepubliclink.go | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 changelog/unreleased/update-reva-config diff --git a/changelog/unreleased/update-reva-config b/changelog/unreleased/update-reva-config new file mode 100644 index 000000000..f5be8ecef --- /dev/null +++ b/changelog/unreleased/update-reva-config @@ -0,0 +1,8 @@ +Change: Update reva config + +- EOS homes are not configured with an enable-flag anymore, but with a dedicated storage driver. +- We're using it now and adapted default configs of storages + +https://github.com/owncloud/ocis/pull/336 +https://github.com/owncloud/ocis/pull/337 +https://github.com/owncloud/ocis-reva/pull/891 diff --git a/pkg/command/revastoragepubliclink.go b/pkg/command/revastoragepubliclink.go index a93f3b347..5b4885dff 100644 --- a/pkg/command/revastoragepubliclink.go +++ b/pkg/command/revastoragepubliclink.go @@ -38,5 +38,5 @@ func configureRevaStoragePublicLink(cfg *config.Config) *svcconfig.Config { } func init() { - register.AddCommand(RevaStorageOCCommand) + register.AddCommand(RevaStoragePublicLinkCommand) }