Skip to content

Commit

Permalink
Fix mispelling (#365)
Browse files Browse the repository at this point in the history
  • Loading branch information
ronensc authored Jan 23, 2023
1 parent a24686a commit eff379a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pkg/pipeline/extract/aggregate/aggregate.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ func getInitValue(operation string) float64 {
// Actually, in OperationRawValues the value is ignored.
return 0
default:
log.Panicf("unkown operation %v", operation)
log.Panicf("unknown operation %v", operation)
return 0
}
}
Expand Down
2 changes: 1 addition & 1 deletion pkg/pipeline/extract/timebased/filters.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ func getInitValue(operation string) float64 {
case api.FilterOperationName("FilterOperationMin"):
return math.MaxFloat64
default:
log.Panicf("unkown operation %v", operation)
log.Panicf("unknown operation %v", operation)
return 0
}
}
Expand Down
2 changes: 1 addition & 1 deletion pkg/pipeline/transform/kubernetes/kubernetes.go
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ func (k *KubeData) initInformers(client kubernetes.Interface) error {
return err
}

log.Debugf("starting kubernetes informers, waiting for syncronization")
log.Debugf("starting kubernetes informers, waiting for synchronization")
informerFactory.Start(k.stopChan)
informerFactory.WaitForCacheSync(k.stopChan)
log.Debugf("kubernetes informers started")
Expand Down
2 changes: 1 addition & 1 deletion pkg/pipeline/transform/location/location.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ func InitLocationDB() error {
return fmt.Errorf("failed http.Get %v ", getErr)
}

log.Infof("Got reponse %s", resp.Status)
log.Infof("Got response %s", resp.Status)

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

0 comments on commit eff379a

Please sign in to comment.