Skip to content

Commit

Permalink
accounts: disable file system watcher on windows
Browse files Browse the repository at this point in the history
The watcher is unreliable and causes test failures on Windows.
Disable it until we have a better solution.
  • Loading branch information
fjl committed Nov 28, 2016
1 parent 4c8c5e2 commit 5df83e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion accounts/watch.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.

// +build darwin,!ios freebsd linux,!arm64 netbsd solaris windows
// +build darwin,!ios freebsd linux,!arm64 netbsd solaris

package accounts

Expand Down
2 changes: 1 addition & 1 deletion accounts/watch_fallback.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.

// +build ios linux,arm64 !darwin,!freebsd,!linux,!netbsd,!solaris,!windows
// +build ios linux,arm64 windows !darwin,!freebsd,!linux,!netbsd,!solaris

// This is the fallback implementation of directory watching.
// It is used on unsupported platforms.
Expand Down

0 comments on commit 5df83e3

Please sign in to comment.