Skip to content

Commit

Permalink
Update unsupported slave commands
Browse files Browse the repository at this point in the history
The master commands had grown without the slave commands getting
updated. Add those new commands to the slave unsupported list.

Change-Id: Id27f5a4b34c16f5e4c9eb11475e8d1a0e33064a3
  • Loading branch information
nasserg committed May 7, 2012
1 parent 68e4947 commit e37fbff
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,14 @@ protected void configure() {

command(gerrit, "approve").to(ErrorSlaveMode.class);
command(gerrit, "create-account").to(ErrorSlaveMode.class);
command(gerrit, "create-group").to(ErrorSlaveMode.class);
command(gerrit, "create-project").to(ErrorSlaveMode.class);
command(gerrit, "gsql").to(ErrorSlaveMode.class);
command(gerrit, "receive-pack").to(ErrorSlaveMode.class);
command(gerrit, "rename-group").to(ErrorSlaveMode.class);
command(gerrit, "replicate").to(ErrorSlaveMode.class);
command(gerrit, "review").to(ErrorSlaveMode.class);
command(gerrit, "set-project-parent").to(ErrorSlaveMode.class);
command(gerrit, "set-reviewers").to(ErrorSlaveMode.class);
}
}

0 comments on commit e37fbff

Please sign in to comment.