Skip to content

Commit

Permalink
OpTest: Make local cluster driver default
Browse files Browse the repository at this point in the history
Signed-off-by: YAMADA Hideki <yamada.hideki@gmail.com>
  • Loading branch information
yamada-h committed Jun 17, 2016
1 parent 9bd17f2 commit 0822e48
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/operation/fixture.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,8 @@ def StartSheep(disks, port=None, zone=None, cluster=None):
if zone is not None:
cmd.append("--zone")
cmd.append(str(zone))
if cluster is not None:
cmd.append("--cluster")
cmd.append(cluster)
cmd.append("--cluster")
cmd.append(cluster or "local")
cmd.append(disksArg)
subprocess.check_output(cmd)
return True
Expand Down

0 comments on commit 0822e48

Please sign in to comment.