File tree Expand file tree Collapse file tree 7 files changed +5
-14
lines changed
security_solution/public/detections/components/value_lists_management_modal
test/functional/apps/monitoring/cluster Expand file tree Collapse file tree 7 files changed +5
-14
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ export interface MapsConfigType {
1111 showMapVisualizationTypes : boolean ;
1212 showMapsInspectorAdapter : boolean ;
1313 preserveDrawingBuffer : boolean ;
14- enableVectorTiles : boolean ;
1514}
1615
1716export 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
2825export type MapsXPackConfig = TypeOf < typeof configSchema > ;
Original file line number Diff line number Diff line change @@ -27,7 +27,6 @@ import { mvtVectorSourceWizardConfig } from '../sources/mvt_single_layer_vector_
2727import { ObservabilityLayerWizardConfig } from './solution_layers/observability' ;
2828import { SecurityLayerWizardConfig } from './solution_layers/security' ;
2929import { choroplethLayerWizardConfig } from './choropleth_layer_wizard' ;
30- import { getEnableVectorTiles } from '../../kibana_services' ;
3130
3231let registered = false ;
3332export 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}
Original file line number Diff line number Diff line change @@ -47,7 +47,6 @@ export function getEnabled(): boolean;
4747export function getShowMapVisualizationTypes ( ) : boolean ;
4848export function getShowMapsInspectorAdapter ( ) : boolean ;
4949export function getPreserveDrawingBuffer ( ) : boolean ;
50- export function getEnableVectorTiles ( ) : boolean ;
5150export function getProxyElasticMapsServiceInMaps ( ) : boolean ;
5251export function getIsGoldPlus ( ) : boolean ;
5352
Original file line number Diff line number Diff line change @@ -152,7 +152,6 @@ export const getEnabled = () => getMapAppConfig().enabled;
152152export const getShowMapVisualizationTypes = ( ) => getMapAppConfig ( ) . showMapVisualizationTypes ;
153153export const getShowMapsInspectorAdapter = ( ) => getMapAppConfig ( ) . showMapsInspectorAdapter ;
154154export 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
158157let kibanaCommonConfig ;
Original file line number Diff line number Diff 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 ,
Original file line number Diff line number Diff line change @@ -11,7 +11,8 @@ import { TestProviders } from '../../../common/mock';
1111import { ValueListsModal } from './modal' ;
1212import { 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 >
Original file line number Diff line number Diff line change @@ -10,7 +10,8 @@ import { getLifecycleMethods } from '../_get_lifecycle_methods';
1010export 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
You can’t perform that action at this time.
0 commit comments