Skip to content

Commit

Permalink
Look for zookeeper in current directory
Browse files Browse the repository at this point in the history
  • Loading branch information
nemith committed Jul 27, 2019
1 parent 9ab39a9 commit b0f4ca7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server_java.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func NewIntegrationTestServer(t *testing.T, configPath string, stdout, stderr io
zkPath := os.Getenv("ZOOKEEPER_BIN_PATH")
if zkPath == "" {
// default to a static reletive path that can be setup with a build system
zkPath = "../zookeeper/bin"
zkPath = "zookeeper/bin"
}
if _, err := os.Stat(zkPath); err != nil {
if os.IsNotExist(err) {
Expand Down

0 comments on commit b0f4ca7

Please sign in to comment.