From f71a00114e2c1ff2bbf9cf9000791e007740630e Mon Sep 17 00:00:00 2001 From: Benedikt Kulmann Date: Thu, 20 Aug 2020 16:02:14 +0200 Subject: [PATCH] Remove empty external apps config There is nothing that would activate ocis-hello as an external app, so this can be just removed. Also it blocks the new default apps in ocis-phoenix. --- pkg/command/phoenix_ocis.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkg/command/phoenix_ocis.go b/pkg/command/phoenix_ocis.go index 82a61d5ba3..5f2ebc0a1d 100644 --- a/pkg/command/phoenix_ocis.go +++ b/pkg/command/phoenix_ocis.go @@ -20,8 +20,5 @@ func configurePhoenix(cfg *config.Config) *svcconfig.Config { cfg.Phoenix.Tracing.Service = cfg.Tracing.Service } - // disable ocis-hello extension - cfg.Phoenix.Phoenix.Config.ExternalApps = []svcconfig.ExternalApp{} - return cfg.Phoenix }