Skip to content

Commit eff379a

Browse files
authored
Fix mispelling (#365)
1 parent a24686a commit eff379a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

pkg/pipeline/extract/aggregate/aggregate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ func getInitValue(operation string) float64 {
116116
// Actually, in OperationRawValues the value is ignored.
117117
return 0
118118
default:
119-
log.Panicf("unkown operation %v", operation)
119+
log.Panicf("unknown operation %v", operation)
120120
return 0
121121
}
122122
}

pkg/pipeline/extract/timebased/filters.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ func getInitValue(operation string) float64 {
112112
case api.FilterOperationName("FilterOperationMin"):
113113
return math.MaxFloat64
114114
default:
115-
log.Panicf("unkown operation %v", operation)
115+
log.Panicf("unknown operation %v", operation)
116116
return 0
117117
}
118118
}

pkg/pipeline/transform/kubernetes/kubernetes.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ func (k *KubeData) initInformers(client kubernetes.Interface) error {
377377
return err
378378
}
379379

380-
log.Debugf("starting kubernetes informers, waiting for syncronization")
380+
log.Debugf("starting kubernetes informers, waiting for synchronization")
381381
informerFactory.Start(k.stopChan)
382382
informerFactory.WaitForCacheSync(k.stopChan)
383383
log.Debugf("kubernetes informers started")

pkg/pipeline/transform/location/location.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ func InitLocationDB() error {
9494
return fmt.Errorf("failed http.Get %v ", getErr)
9595
}
9696

97-
log.Infof("Got reponse %s", resp.Status)
97+
log.Infof("Got response %s", resp.Status)
9898

9999
written, copyErr := io.Copy(out, resp.Body)
100100
if copyErr != nil {

0 commit comments

Comments
 (0)