What version are you running?
Review Board 2.5.7
What's the URL of the page containing the problem?
What steps will reproduce the problem?
- Commit a bug and address 2 or more bug ids, separated by whitespace
- Review is not issued (see an attached log with the exception)
What is the expected output? What do you see instead?
Review is issued
What operating system are you using? What browser?
Windeos 7, both Chrome and IE
Please provide any additional information below.
What's happening is that
--bugs-closed 50541 50551
doesn't pass two values to--bugs-closed
, it passes one. The50551
is then passed as an argument torbt post
. What you need to do is encase the full list in quotes. Note that they must be comma-separated, though.So, you want:
--bugs-closed "50541, 50551"
-
- reviewboard + rbtools
Your
--exclude
is going to have a similar problem. You'll need to encase it in quotes as well. Otherwise, the shell may expand that and turn it into multiple parameters. That in combination with--bugs-closed
is what's leading to theTooManyRevisions
(which needs to be handled better).