(ctx context.Context)
| 150 | } |
| 151 | |
| 152 | func (f *Frontend) starting(ctx context.Context) error { |
| 153 | f.subservicesWatcher.WatchManager(f.subservices) |
| 154 | |
| 155 | if err := services.StartManagerAndAwaitHealthy(ctx, f.subservices); err != nil { |
| 156 | return errors.Wrap(err, "unable to start frontend subservices") |
| 157 | } |
| 158 | |
| 159 | return nil |
| 160 | } |
| 161 | |
| 162 | func (f *Frontend) running(ctx context.Context) error { |
| 163 | for { |
nothing calls this directly
no test coverage detected