1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Use a POST with a form body when querying Prometheus.

Fixes: https://github.com/lensapp/lens/issues/1352
Signed-off-by: Patrick J McNerthney <pat@mcnerthney.com>
This commit is contained in:
Patrick J McNerthney 2021-03-26 13:55:18 -10:00
parent 4856fdda2f
commit f526713a52

View File

@ -518,7 +518,8 @@ export class Cluster implements ClusterModel, ClusterState {
timeout: 0,
resolveWithFullResponse: false,
json: true,
qs: queryParams,
method: "POST",
form: queryParams,
});
}