We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e00b315 commit 247b8a8Copy full SHA for 247b8a8
prometheus/src/components/Settings/Settings.tsx
@@ -116,7 +116,10 @@ export function Settings(props: SettingsProps) {
116
}
117
118
const proxyUrl = `/clusters/${selectedCluster}/api/v1/namespaces/${namespace}/services/${service}:${port}/proxy${subPath}/-/healthy`;
119
- await request(proxyUrl);
+ await request(proxyUrl, {
120
+ method: 'GET',
121
+ isJSON: false,
122
+ });
123
124
setTestStatus('success');
125
setTestMessage(t('Connection successful!'));
0 commit comments