Skip to content

Commit

Permalink
Update kelvin.go to fix typo in error message
Browse files Browse the repository at this point in the history
initialze vs initialize
  • Loading branch information
flmessier authored and stefanwichmann committed Nov 19, 2020
1 parent aa4d032 commit 2f166ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kelvin.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ func main() {
for {
err = bridge.InitializeBridge(configuration)
if err != nil {
log.Errorf("Could not initialze bridge: %v - Retrying...", err)
log.Errorf("Could not initialize bridge: %v - Retrying...", err)
time.Sleep(10 * time.Second)
} else {
break
Expand Down

0 comments on commit 2f166ea

Please sign in to comment.