InfluxDB: Fix HTTP method should default to GET (#16949)
Fixes #16929
(cherry picked from commit e7a9afe983)
This commit is contained in:
committed by
Torkel Ödegaard
parent
7374aafb90
commit
6e9a395063
@@ -34,7 +34,7 @@ export default class InfluxDatasource {
|
||||
this.withCredentials = instanceSettings.withCredentials;
|
||||
this.interval = (instanceSettings.jsonData || {}).timeInterval;
|
||||
this.responseParser = new ResponseParser();
|
||||
this.httpMode = instanceSettings.jsonData.httpMode;
|
||||
this.httpMode = instanceSettings.jsonData.httpMode || 'GET';
|
||||
}
|
||||
|
||||
query(options) {
|
||||
|
||||
Reference in New Issue
Block a user