Skip to content

Commit

Permalink
Fix typos in error-messages.
Browse files Browse the repository at this point in the history
Fixes typo in error message; daemaon -> daemon

Signed-off-by: Sebastiaan van Stijn <[email protected]>
  • Loading branch information
thaJeztah committed Dec 8, 2014
1 parent 2a6cccc commit cd6cf25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker-gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ func generateFromEvents(client *docker.Client, configs ConfigFile) {

client, err = NewDockerClient(endpoint)
if err != nil {
log.Printf("Unable to connect to docker daemaon: %s", err)
log.Printf("Unable to connect to docker daemon: %s", err)
time.Sleep(10 * time.Second)
continue
}
Expand All @@ -283,7 +283,7 @@ func generateFromEvents(client *docker.Client, configs ConfigFile) {
}
err := client.Ping()
if err != nil {
log.Printf("Unable to ping docker daemaon: %s", err)
log.Printf("Unable to ping docker daemon: %s", err)
if watching {
client.RemoveEventListener(eventChan)
watching = false
Expand Down

0 comments on commit cd6cf25

Please sign in to comment.