Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: remove empty elements from tag list (#936)
## Description In rare cases the `amazonec2-tags` may contain empty elements which show up as `,__PARENT_TAG__` which is not a valid value for AWS API to create an instance. The problem is that `runner_tags` must be removed if it is empty. Otherwise the empty element is inserted into the final string which results in a preceding `,`. Closes #933 ## Verification Verified manually with - no tags --> `__PARENT_TAG__` - with tags --> `tag1,value1,__PARENT_TAG`
- Loading branch information