Skip to content

Commit c487739

Browse files
Merge branch '7.x' into backport/7.x/pr-71794
2 parents ca63513 + 8305e62 commit c487739

File tree

7 files changed

+5
-14
lines changed

7 files changed

+5
-14
lines changed

x-pack/plugins/maps/config.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ export interface MapsConfigType {
1111
showMapVisualizationTypes: boolean;
1212
showMapsInspectorAdapter: boolean;
1313
preserveDrawingBuffer: boolean;
14-
enableVectorTiles: boolean;
1514
}
1615

1716
export const configSchema = schema.object({
@@ -21,8 +20,6 @@ export const configSchema = schema.object({
2120
showMapsInspectorAdapter: schema.boolean({ defaultValue: false }),
2221
// flag used in functional testing
2322
preserveDrawingBuffer: schema.boolean({ defaultValue: false }),
24-
// flag used to enable/disable vector-tiles
25-
enableVectorTiles: schema.boolean({ defaultValue: false }),
2623
});
2724

2825
export type MapsXPackConfig = TypeOf<typeof configSchema>;

x-pack/plugins/maps/public/classes/layers/load_layer_wizards.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ import { mvtVectorSourceWizardConfig } from '../sources/mvt_single_layer_vector_
2727
import { ObservabilityLayerWizardConfig } from './solution_layers/observability';
2828
import { SecurityLayerWizardConfig } from './solution_layers/security';
2929
import { choroplethLayerWizardConfig } from './choropleth_layer_wizard';
30-
import { getEnableVectorTiles } from '../../kibana_services';
3130

3231
let registered = false;
3332
export function registerLayerWizards() {
@@ -60,10 +59,6 @@ export function registerLayerWizards() {
6059
// @ts-ignore
6160
registerLayerWizard(wmsLayerWizardConfig);
6261

63-
if (getEnableVectorTiles()) {
64-
// eslint-disable-next-line no-console
65-
console.warn('Vector tiles are an experimental feature and should not be used in production.');
66-
registerLayerWizard(mvtVectorSourceWizardConfig);
67-
}
62+
registerLayerWizard(mvtVectorSourceWizardConfig);
6863
registered = true;
6964
}

x-pack/plugins/maps/public/kibana_services.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ export function getEnabled(): boolean;
4747
export function getShowMapVisualizationTypes(): boolean;
4848
export function getShowMapsInspectorAdapter(): boolean;
4949
export function getPreserveDrawingBuffer(): boolean;
50-
export function getEnableVectorTiles(): boolean;
5150
export function getProxyElasticMapsServiceInMaps(): boolean;
5251
export function getIsGoldPlus(): boolean;
5352

x-pack/plugins/maps/public/kibana_services.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,6 @@ export const getEnabled = () => getMapAppConfig().enabled;
152152
export const getShowMapVisualizationTypes = () => getMapAppConfig().showMapVisualizationTypes;
153153
export const getShowMapsInspectorAdapter = () => getMapAppConfig().showMapsInspectorAdapter;
154154
export const getPreserveDrawingBuffer = () => getMapAppConfig().preserveDrawingBuffer;
155-
export const getEnableVectorTiles = () => getMapAppConfig().enableVectorTiles;
156155

157156
// map.* kibana.yml settings from maps_legacy plugin that are shared between OSS map visualizations and maps app
158157
let kibanaCommonConfig;

x-pack/plugins/maps/server/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ export const config: PluginConfigDescriptor<MapsXPackConfig> = {
1515
enabled: true,
1616
showMapVisualizationTypes: true,
1717
showMapsInspectorAdapter: true,
18-
enableVectorTiles: true,
1918
preserveDrawingBuffer: true,
2019
},
2120
schema: configSchema,

x-pack/plugins/security_solution/public/detections/components/value_lists_management_modal/modal.test.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ import { TestProviders } from '../../../common/mock';
1111
import { ValueListsModal } from './modal';
1212
import { waitForUpdates } from '../../../common/utils/test_utils';
1313

14-
describe('ValueListsModal', () => {
14+
// TODO: These are occasionally timing out
15+
describe.skip('ValueListsModal', () => {
1516
it('renders nothing if showModal is false', () => {
1617
const container = mount(
1718
<TestProviders>

x-pack/test/functional/apps/monitoring/cluster/overview.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ import { getLifecycleMethods } from '../_get_lifecycle_methods';
1010
export default function ({ getService, getPageObjects }) {
1111
const overview = getService('monitoringClusterOverview');
1212

13-
describe('Cluster overview', () => {
13+
// https://github.com/elastic/kibana/issues/71796
14+
describe.skip('Cluster overview', () => {
1415
describe('for Green cluster with Gold license', () => {
1516
const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects);
1617

0 commit comments

Comments
 (0)