瀏覽代碼

Merge pull request #860 from kitianFresh/bugfix/fix-ServiceAccountCheck-missed-json-tag-quota

fix ServiceAccountCheck struct missing json tag quote
Ajay Tripathy 5 年之前
父節點
當前提交
c24acb49c6
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      pkg/cloud/provider.go

+ 1 - 1
pkg/cloud/provider.go

@@ -185,7 +185,7 @@ type ServiceAccountStatus struct {
 type ServiceAccountCheck struct {
 type ServiceAccountCheck struct {
 	Message        string `json:"message"`
 	Message        string `json:"message"`
 	Status         bool   `json:"status"`
 	Status         bool   `json:"status"`
-	AdditionalInfo string `json:additionalInfo`
+	AdditionalInfo string `json:"additionalInfo"`
 }
 }
 
 
 type PricingSources struct {
 type PricingSources struct {