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. (#2401)

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-04-01 04:27:46 -10:00 committed by GitHub
parent 584e191326
commit 48ea877cd5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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