mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
AddDataSourceConfig: Remove deprecated checkHealth prop (#50296)
This commit is contained in:
parent
c96fa4c77d
commit
e9fac9ee03
@ -8,10 +8,6 @@ export interface AddDataSourceConfig {
|
||||
basicAuth: boolean;
|
||||
basicAuthPassword: string;
|
||||
basicAuthUser: string;
|
||||
/**
|
||||
* @deprecated check health request is no longer supported
|
||||
*/
|
||||
checkHealth: boolean;
|
||||
expectedAlertMessage: string | RegExp;
|
||||
form: () => void;
|
||||
name: string;
|
||||
@ -26,7 +22,6 @@ export const addDataSource = (config?: Partial<AddDataSourceConfig>) => {
|
||||
basicAuth: false,
|
||||
basicAuthPassword: '',
|
||||
basicAuthUser: '',
|
||||
checkHealth: false,
|
||||
expectedAlertMessage: 'Data source is working',
|
||||
form: () => {},
|
||||
name: `e2e-${uuidv4()}`,
|
||||
|
Loading…
Reference in New Issue
Block a user