You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While attempting to list all deleted machines, I saw this:
$ sdc-listmachines --tombsotne
--offset is invalid metadata; try foo=bar
After a few minutes I realized I had misspelled --tombstone as --tombsotne. My initial problem was solved, but that still left the matter of the odd error message.
With a bit of trial and error, I finally figured out what's going on. Running sdc-* --t* where what comes after --t is not one of tag, type or tombstone, the --t gets expanded to --tags, then the rest of the string gets converted to other long forms, in this case the o gets expanded to --offset.
This happens any time where the first character is t and the second character is any of the short options.
The text was updated successfully, but these errors were encountered:
While attempting to list all deleted machines, I saw this:
$ sdc-listmachines --tombsotne --offset is invalid metadata; try foo=bar
After a few minutes I realized I had misspelled
--tombstone
as--tombsotne
. My initial problem was solved, but that still left the matter of the odd error message.With a bit of trial and error, I finally figured out what's going on. Running
sdc-* --t*
where what comes after--t
is not one of tag, type or tombstone, the--t
gets expanded to--tags
, then the rest of the string gets converted to other long forms, in this case the o gets expanded to--offset
.This happens any time where the first character is
t
and the second character is any of the short options.The text was updated successfully, but these errors were encountered: