Skip to content

Commit

Permalink
Merge pull request #594 from jayjun/fix-watcher-typos
Browse files Browse the repository at this point in the history
Fix fast notify watcher error warning typos
  • Loading branch information
glinton authored Oct 6, 2017
2 parents e2e8003 + 307229f commit d5a3019
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions util/watch/watch.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ func Watch(container, path string) error {

// print the warning
// we added /r because this message often appears in a raw terminal which requires
// carrage returns
// carriage returns
fmt.Printf("\n\r---------------------------------------------------------------------\n\r\n\r")
fmt.Printf("An error occured in the fast notify watcher: '%s'\n\r\n\r", err.Error())
fmt.Printf("Generally, having too low of a ulimit causes these issues.\n\r")
fmt.Printf("Consiser upping your ulimit to resolve (`ulimit -n 2048`).\n\r")
fmt.Printf("Consider upping your ulimit to resolve (`ulimit -n 2048`).\n\r")
fmt.Printf("Until then, we'll go ahead and rollover to a slower polling solution.\n\r")
fmt.Printf("\n\r---------------------------------------------------------------------\n\r\n\r")

Expand Down

0 comments on commit d5a3019

Please sign in to comment.