[Ingest Manager] Log a warning if registryUrl is set in non gold (#71514)

This commit is contained in:
Nicolas Chaulet 2020-07-13 17:02:09 -04:00 committed by GitHub
parent f86c0792a1
commit 3ac8e367f8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,5 +20,9 @@ export const getRegistryUrl = (): string => {
return customUrl;
}
if (customUrl) {
appContextService.getLogger().warn('Gold license is required to use a custom registry url.');
}
return DEFAULT_REGISTRY_URL;
};