Explorar el Código

fixed error formatting

jabray5 hace 4 años
padre
commit
2f3c2f1bc7
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      pkg/provider/azure/keyvault/keyvault.go

+ 1 - 1
pkg/provider/azure/keyvault/keyvault.go

@@ -151,7 +151,7 @@ func (a *Azure) GetSecretMap(ctx context.Context, ref esv1alpha1.ExternalSecretD
 	kv := make(map[string]string)
 	kv := make(map[string]string)
 	err = json.Unmarshal(data, &kv)
 	err = json.Unmarshal(data, &kv)
 	if err != nil {
 	if err != nil {
-		return nil, fmt.Errorf("Error unmarshalling json data: %w", err)
+		return nil, fmt.Errorf("error unmarshalling json data: %w", err)
 	}
 	}
 
 
 	secretData := make(map[string][]byte)
 	secretData := make(map[string][]byte)