From 45f4252f19f595923bd7daa036099e61e0fec7f6 Mon Sep 17 00:00:00 2001 From: Nicolas Ruflin Date: Wed, 30 Oct 2019 09:57:47 +0100 Subject: [PATCH] [EPM] Rename registry url to new path (#49598) The integrations-registry repository was renamed to package-registry and with it also all the assets inside. The url under which the service is served will also be changed (not done yet). As soon as this is done, this PR should be merged. --- .../integrations_manager/public/components/package_card.tsx | 2 +- x-pack/legacy/plugins/integrations_manager/server/config.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/x-pack/legacy/plugins/integrations_manager/public/components/package_card.tsx b/x-pack/legacy/plugins/integrations_manager/public/components/package_card.tsx index cb1b8caa215383..6c4a0e0d575b15 100644 --- a/x-pack/legacy/plugins/integrations_manager/public/components/package_card.tsx +++ b/x-pack/legacy/plugins/integrations_manager/public/components/package_card.tsx @@ -46,7 +46,7 @@ export function PackageCard({ // {`${name} // ); diff --git a/x-pack/legacy/plugins/integrations_manager/server/config.ts b/x-pack/legacy/plugins/integrations_manager/server/config.ts index 3ee1d6154e9598..4076b906a360a1 100644 --- a/x-pack/legacy/plugins/integrations_manager/server/config.ts +++ b/x-pack/legacy/plugins/integrations_manager/server/config.ts @@ -34,7 +34,7 @@ export const getConfigSchema = (Joi: typeof JoiNamespace) => { const DEFAULT_CONFIG = { enabled: true, - registryUrl: 'http://integrations-registry.app.elstc.co', + registryUrl: 'http://package-registry.app.elstc.co', }; // As of 2019, this is a Singleton because of the way JavaScript modules are specified.