Browse Source

Merge pull request #9322 from gyuho/fix-failpoints

build: fix "gofail" with "mvcc/backend"
Gyuho Lee 7 years ago
parent
commit
10185b1953
1 changed files with 1 additions and 1 deletions
  1. 1 1
      build

+ 1 - 1
build

@@ -16,7 +16,7 @@ GO_LDFLAGS="$GO_LDFLAGS -X ${REPO_PATH}/internal/version.GitSHA=${GIT_SHA}"
 toggle_failpoints() {
 	mode="$1"
 	if which gofail >/dev/null 2>&1; then
-		gofail "$mode" etcdserver/ mvcc/backend/
+		gofail "$mode" etcdserver/ internal/mvcc/backend/
 	elif [ "$mode" != "disable" ]; then
 		echo "FAILPOINTS set but gofail not found"
 		exit 1