This commit is contained in:
iamqizhao 2015-03-05 01:47:08 -08:00
Родитель 59cf05b4f5 8dd67cb297
Коммит ac2cbeb2e7
1 изменённых файлов: 1 добавлений и 5 удалений

Просмотреть файл

@ -213,11 +213,7 @@ type serviceAccount struct {
} }
func (s serviceAccount) GetRequestMetadata(ctx context.Context) (map[string]string, error) { func (s serviceAccount) GetRequestMetadata(ctx context.Context) (map[string]string, error) {
c, ok := ctx.(oauth2.Context) token, err := s.config.TokenSource(ctx).Token()
if !ok {
return nil, fmt.Errorf("credentials: the context %v is invalid", ctx)
}
token, err := s.config.TokenSource(c).Token()
if err != nil { if err != nil {
return nil, err return nil, err
} }