Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix fast notify watcher error warning typos #594

Merged
merged 1 commit into from
Oct 6, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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