We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2069137 + 247b8a8 commit f02924dCopy full SHA for f02924d
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