()
| 620 | } |
| 621 | |
| 622 | func (s *StatusGetter) HasAuthErrors() bool { |
| 623 | s.authErrorsMu.Lock() |
| 624 | defer s.authErrorsMu.Unlock() |
| 625 | |
| 626 | return s.authErrors != nil && s.authErrors.Len() > 0 |
| 627 | } |
| 628 | |
| 629 | func statusRun(opts *StatusOptions) error { |
| 630 | client, err := opts.HttpClient() |