Skip to content

Commit

Permalink
Fixing unused parameter names.
Browse files Browse the repository at this point in the history
  • Loading branch information
alainjobart committed Mar 6, 2014
1 parent de8060b commit 1809762
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/tablet.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ def start_vttablet(self, port=None, auth=False, memcache=False, wait_for_state="
'-cert', cert,
'-key', key])
if ca_cert:
args.extend(['-ca-cert', ca_cert])
args.extend(['-ca_cert', ca_cert])

stderr_fd = open(os.path.join(self.tablet_dir, "vttablet.stderr"), "w")
# increment count only the first time
Expand Down
2 changes: 1 addition & 1 deletion test/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ def vtgate_start(vtport=None, cell='test_nj', retry_delay=1, retry_count=1,
'-cert', cert,
'-key', key])
if ca_cert:
args.extend(['-ca-cert', ca_cert])
args.extend(['-ca_cert', ca_cert])
if socket_file:
args.extend(['-socket_file', socket_file])

Expand Down

0 comments on commit 1809762

Please sign in to comment.