-
-
Notifications
You must be signed in to change notification settings - Fork 297
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
--replace handling of commas in the old tag argument #680
Comments
Also, (Same goes for |
We need to support 2 things:
I think we can add a new option to remove a tag explicitly instead of linking it to replace tag. |
It might be a good idea, I guess (though I don't really care that much either way); this is regarding what happens if the first argument given to I believe it should be either explicitly supported (and handled correctly), or explicitly disallowed (with attempts to do so being rejected). |
We should explicitly ignore as it is ambiguous. Also, you need to care about both the cli and api use cases as a collaborator and contributor. This is exactly the reason I am so defensive about maintaining status quo. |
ignore - disallow. |
If I didn't care about CLI and API, I wouldn't be asking to fix them when they're dysfunctional.
"Ignoring" would mean "do nothing and pretend there was no action requested in the first place" 😅. To "explicitly disallow" would involve telling a CLI user that he can't replace multiple tags with one, and an API call should signal a failure (which means either a failed result or an exception, depending on the general protocol… I guess in case of |
Yes, "explicitly disallow" is what I also prefer. |
Incidentally, printing out the failure reason to stdout is not a good API behaviour (i.e. there's no sane way of capturing it to communicate in a network response or in GUI). The correct way would be to either return it or to pass it in a raised exception instead. |
Yes, now we have to take that approach. When it was written, it was written with the CLI in mind. |
It appears that the first argument to
replace_tag()
(and thus--replace
as well) doesn't have a check for commas in it; thus leading to some peculiar behaviour:--replace foo,bar baz
doesn't affect a record with tagsbar,foo
--replace bar,foo baz
changesbag,bar,foo,qux
tobag,baz,qux
--replace bar,foo baz
doesn't affectbar,barf,foo
--replace ar,foo baz
&--replace bar,fo baz
doesn't affectbar,foo
I reckon that it should either reject such invocations altogether, or handle multiple tags in this argument properly.
The text was updated successfully, but these errors were encountered: