Closed (fixed)
Project:
Cloud
Version:
5.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
1 Dec 2022 at 18:29 UTC
Updated:
15 Dec 2022 at 19:04 UTC
Jump to comment: Most recent
The code in OpenStackService::getTagName() parses the Name tag using the old convention.
For example:
["Tags"]=>
array(2) {
[0]=>
string(55) "created_by_uid__di_openstack_regionone__b85098564701__1"
[1]=>
string(19) "Name__suzuki-test-2"
}
In the updated convention, the Name tag is stored like this
["Tags"]=>
array(2) {
[0]=>
string(51) "drupal-openstack.2b16ec6ef106d11805555d08624e2f47.1"
[1]=>
string(12) "Name.Baldwin"
}
Update OpenStackService::getTagName() to parse using the "." instead of "__"
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #3
baldwinlouie commented@yas, here is the patch that fixes the issue with Floating IP names.
Comment #4
yas@baldwinlouie
Thank you for fixing the issue. It looks good to me. I'll merge the patch to
4.xand5.x, and close this issue as Fixed.Comment #7
yas