Explorar el Código

Merge pull request #9322 from gyuho/fix-failpoints

build: fix "gofail" with "mvcc/backend"
Gyuho Lee hace 8 años
padre
commit
10185b1953
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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