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
## 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`
0 commit comments