mirror of
https://github.com/kubernetes-sigs/node-feature-discovery.git
synced 2025-03-28 02:37:11 +00:00
Merge pull request #69 from asifdxtreme/patch-2
Automatic merge from submit-queue Fix Typo to improve GoReportCard
This commit is contained in:
commit
e8059c2f65
1 changed files with 3 additions and 3 deletions
6
main.go
6
main.go
|
@ -76,7 +76,7 @@ func main() {
|
|||
// Configure the parameters for feature discovery.
|
||||
sources, labelWhiteList, err := configureParameters(sourcesArg, whiteListArg)
|
||||
if err != nil {
|
||||
stderrLogger.Fatalf("error occured while configuring parameters: %s", err.Error())
|
||||
stderrLogger.Fatalf("error occurred while configuring parameters: %s", err.Error())
|
||||
}
|
||||
|
||||
// Get the set of feature labels.
|
||||
|
@ -86,7 +86,7 @@ func main() {
|
|||
// Update the node with the feature labels.
|
||||
err = updateNodeWithFeatureLabels(helper, noPublish, labels)
|
||||
if err != nil {
|
||||
stderrLogger.Fatalf("error occured while updating node with feature labels: %s", err.Error())
|
||||
stderrLogger.Fatalf("error occurred while updating node with feature labels: %s", err.Error())
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -211,7 +211,7 @@ func updateNodeWithFeatureLabels(helper APIHelpers, noPublish bool, labels Label
|
|||
func getFeatureLabels(source FeatureSource) (labels Labels, err error) {
|
||||
defer func() {
|
||||
if r := recover(); r != nil {
|
||||
stderrLogger.Printf("panic occured during discovery of source [%s]: %v", source.Name(), r)
|
||||
stderrLogger.Printf("panic occurred during discovery of source [%s]: %v", source.Name(), r)
|
||||
err = fmt.Errorf("%v", r)
|
||||
}
|
||||
}()
|
||||
|
|
Loading…
Add table
Reference in a new issue