()
| 81 | } |
| 82 | |
| 83 | func (t *Task) Start() { |
| 84 | t.Cloud.Start() |
| 85 | |
| 86 | t.startDomainRefreshMonitor() |
| 87 | if t.Cloud.GetBasicInfo().Type != common.KUBERNETES { |
| 88 | t.startSubDomainRefreshMonitor() |
| 89 | } |
| 90 | } |
| 91 | |
| 92 | func (t *Task) startDomainRefreshMonitor() { |
| 93 | go func() { |
nothing calls this directly
no test coverage detected