Status Update
Comments
lu...@gmail.com <lu...@gmail.com> #2
A project parameter need to be added to make sure a unique change can be selected
Have you tried using the format project~changeNum
? That's the way you should identify changes in this case, because the change number is not unique when importing changes with conflicting change numbers.
lu...@gmail.com <lu...@gmail.com> #3
Actually, by passing the project~changeNum
it would have worked, however the parameter parser after having found the right change to set the topic, then throws away the project information and then just calls the ChangesCollection.parse(Change.Id id)
and fails because it uses the index which may not find the imported change by number.
lu...@gmail.com <lu...@gmail.com> #4
Found the culprit in ChangeArgumentParser
: even if the change-id format contained also the project name as project~changeNum
, the change resource was created without the project name.
By adding it as changeResource = changesCollection.parse(changeNotes.getChange().getProject(), cId, null);
the problem is fixed.
Description
Step to reproduce
Expected result
The set-topic command allows one to specify a project.
Observed result
There is no
project
parameter, hence the command returns:warning: "1" matches multiple changes
. It is not possible to set a topic on an imported change.Background
A
project
parameter need to be added to make sure a unique change can be selected