tail/watch/polling_linux.go

10 lines
216 B
Go
Raw Normal View History

// Copyright (c) 2013 ActiveState Software Inc. All rights reserved.
// +build linux
package watch
func permissionErrorRetry(err error, retry *int) bool {
// No need for this on linux, don't retry
return false
}