Skip to content

Commit ab1eb75

Browse files
committed
Review feedback
1 parent 28a35fa commit ab1eb75

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/core/server/config/deprecation/core_deprecations.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,10 @@ const cspRulesDeprecation: ConfigDeprecation = (settings, fromPath, log) => {
9494
const mapManifestServiceUrlDeprecation: ConfigDeprecation = (settings, fromPath, log) => {
9595
if (has(settings, 'map.manifestServiceUrl')) {
9696
log(
97-
`You should no longer use the map.manifestServiceUrl setting in kibana.yml to configure Elastic Maps Service settings. Use "map.emsTileApiUrl" and "map.emsFileApiUrl" instead.`
97+
'You should no longer use the map.manifestServiceUrl setting in kibana.yml to configure the location ' +
98+
'of the Elastic Maps Service settings. These settings have moved to the "map.emsTileApiUrl" and ' +
99+
'"map.emsFileApiUrl" settings instead. These settings are for development use only and should not be ' +
100+
'modified for use in production environments.'
98101
);
99102
}
100103
return settings;
@@ -106,6 +109,7 @@ export const coreDeprecationProvider: ConfigDeprecationProvider = ({
106109
}) => [
107110
unusedFromRoot('savedObjects.indexCheckTimeout'),
108111
unusedFromRoot('server.xsrf.token'),
112+
unusedFromRoot('maps.manifestServiceUrl'),
109113
renameFromRoot('optimize.lazy', 'optimize.watch'),
110114
renameFromRoot('optimize.lazyPort', 'optimize.watchPort'),
111115
renameFromRoot('optimize.lazyHost', 'optimize.watchHost'),

0 commit comments

Comments
 (0)