Skip to content

Commit aecda3c

Browse files
committed
Clarify standard path scheduling helper
1 parent 79f5be4 commit aecda3c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

comp/networkpath/npcollector/impl/npcollector.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ func (s *npCollectorImpl) scheduleNetworkPathTests(origin payload.PathOrigin, co
331331
continue
332332
}
333333

334-
if err := s.scheduleNetworkPathTest(pathtest, evaluation); err != nil {
334+
if err := s.scheduleStandardNetworkPathTest(pathtest, evaluation); err != nil {
335335
s.logger.Errorf("Error scheduling pathtests: %s", err)
336336
}
337337
}
@@ -342,7 +342,7 @@ func (s *npCollectorImpl) scheduleNetworkPathTests(origin payload.PathOrigin, co
342342
_ = s.statsdClient.Gauge(common.NetworkPathCollectorMetricPrefix+"schedule.duration", s.TimeNowFn().Sub(startTime).Seconds(), nil, 1)
343343
}
344344

345-
func (s *npCollectorImpl) scheduleNetworkPathTest(pathtest common.Pathtest, evaluation pathEvaluation) error {
345+
func (s *npCollectorImpl) scheduleStandardNetworkPathTest(pathtest common.Pathtest, evaluation pathEvaluation) error {
346346
pathtest.TestConfigID = evaluation.testConfigID
347347
pathtest.Tags = evaluation.tags
348348
if evaluation.testConfigID != "" {

0 commit comments

Comments
 (0)