()
| 627 | } |
| 628 | |
| 629 | func (s *StatusGetter) HasAuthErrors() bool { |
| 630 | s.authErrorsMu.Lock() |
| 631 | defer s.authErrorsMu.Unlock() |
| 632 | |
| 633 | return s.authErrors != nil && s.authErrors.Len() > 0 |
| 634 | } |
| 635 | |
| 636 | func statusRun(opts *StatusOptions) error { |
| 637 | client, err := opts.HttpClient() |