stackdriver: add default value for authentication type

This commit is contained in:
Erik Sundell
2018-10-09 16:36:45 +02:00
parent 823838a839
commit cd7b454e25
2 changed files with 2 additions and 2 deletions

View File

@@ -17,7 +17,7 @@ import (
)
func (e *StackdriverExecutor) executeTestDataSource(ctx context.Context, tsdbQuery *tsdb.TsdbQuery) (*tsdb.Response, error) {
authenticationType := e.dsInfo.JsonData.Get("authenticationType").MustString()
authenticationType := e.dsInfo.JsonData.Get("authenticationType").MustString("jwt")
if authenticationType == "gce" {
defaultProject, err := e.getDefaultProject(ctx)
if err != nil {