You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by mp...@apache.org on 2017/11/29 23:11:30 UTC

kudu git commit: disk failure: turn handling on by default

Repository: kudu
Updated Branches:
  refs/heads/master aafed6d1d -> 336235cea


disk failure: turn handling on by default

Change-Id: I29683c74850b9be38a5fccef0b762b89f8fcef9b
Reviewed-on: http://gerrit.cloudera.org:8080/8687
Tested-by: Kudu Jenkins
Reviewed-by: Mike Percy <mp...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/kudu/repo
Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/336235ce
Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/336235ce
Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/336235ce

Branch: refs/heads/master
Commit: 336235cea777021f887ba9917431ca8567f33d78
Parents: aafed6d
Author: Andrew Wong <aw...@cloudera.com>
Authored: Wed Nov 29 13:49:10 2017 -0800
Committer: Mike Percy <mp...@apache.org>
Committed: Wed Nov 29 23:11:20 2017 +0000

----------------------------------------------------------------------
 src/kudu/util/env_posix.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kudu/blob/336235ce/src/kudu/util/env_posix.cc
----------------------------------------------------------------------
diff --git a/src/kudu/util/env_posix.cc b/src/kudu/util/env_posix.cc
index e4d479c..e34e663 100644
--- a/src/kudu/util/env_posix.cc
+++ b/src/kudu/util/env_posix.cc
@@ -168,7 +168,7 @@ DEFINE_bool(env_use_ioctl_hole_punch_on_xfs, true,
 TAG_FLAG(env_use_ioctl_hole_punch_on_xfs, advanced);
 TAG_FLAG(env_use_ioctl_hole_punch_on_xfs, experimental);
 
-DEFINE_bool(crash_on_eio, true,
+DEFINE_bool(crash_on_eio, false,
             "Kill the process if an I/O operation results in EIO. If false, "
             "I/O resulting in EIOs will return the status IOError and leave "
             "error-handling up to the caller.");