File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff 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" )
Original file line number Diff line number Diff 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 {
You can’t perform that action at this time.
0 commit comments