Wednesday, 2023-10-18

noonedeadpunkcolby__: there was deprecation of live_migration_tunnelled in favor of native libvirtd migrations (live_migration_with_native_tls). Not sure if that is the reason of your issue, but smth to check I guess07:14
noonedeadpunkAs it seems that live_migration_tunnelled were not fully dropped as of today07:15
tobias-urdin(proposed removing that but was not ok in bobcat, maybe will be done in caracal https://review.opendev.org/c/openstack/nova/+/879021)07:53
bauzassean-k-mooney: dansmith: excellent news, my mtty WIP patch works with devstack and we can create instances https://paste.opendev.org/show/bBKFG3Vg7YTQBHPz11Za/08:17
bauzasif we pre-create mdevs of course08:17
bauzasI just need to fix the RP name which is because of the <parent> value in the mtty :)08:23
bauzasor we can just meh this08:23
sean-k-mooneybauzas: cool i was conidering extending the devstack plugin to be able to optionally precrete the mdev and generate the approate config as required but i have not had time to play with it yet12:58
bauzassean-k-mooney: we have some internal  but report that I created for RHEL asking to fix the libvirt problem 12:59
bauzasbut until this is fixed (and delivered to Ubuntu 22.04 somehow), we may need to precreate them indeed12:59
bauzasI can do the plugin thing12:59
bauzasif you don't mind12:59
bauzasI'm not super expert in writing CI things, and that would improve a bit my knowledge13:00
sean-k-mooneywell it would jsut be an extion to the devstack plugin so you can dev that locally13:00
sean-k-mooneybaisclly i was going to add something like this  NOVA_MDEV_TYPE=${NOVA_MDEV_TYPES:-$(ls /sys/devices/virtual/*/*/mdev_supported_types/ | grep -v ":" | xargs)}13:03
sean-k-mooneyand then loop over the NOVA_MDEV_TYPE list and allcoate all mdevs for each enabeld type13:04
sean-k-mooneyso by default we would be enabling all mdev but if you wnated to just enabel 1 or a set you could define NOVA_MDEV_TYPE in yoru local.conf13:04
sean-k-mooneythat should be NOVA_MDEV_TYPES consitnetly as it woudl be a list13:05
bauzasokay, I can try to work on it13:06
sean-k-mooneyaddtionally i was going to write the mdev uuids into a file per mdev type and create a systemd service file to create them if we wanted to test reboots in a followup13:06
sean-k-mooneyso intally jsut do it at runtime and if we wnated to test reboot later add that as a follow up13:07
sean-k-mooneywe can test reboots in ci we normally dont because it slows down the job a non trivial amount13:08
bauzascool13:09
bauzasdansmith: https://paste.opendev.org/show/bBKFG3Vg7YTQBHPz11Za/ (at the bottom) is what you need to do in order to configure nova to use mtty13:39
bauzastl;dr: instead of specifying a pci address for the type named 'mtty-1', you just write 'mtty'13:40
bauzasbut in order to pass the pci address check we have, I hardcoded that string (plus the other module names) in https://review.opendev.org/c/openstack/nova/+/898100/2/nova/virt/libvirt/driver.py#24513:40
sean-k-mooneyya so i woudl be happy with sbauza-dev2_computer being sbauza-dev2_mtty13:40
bauzasand sean-k-mooney had concerns about hardcoding that list13:41
bauzaswhich I can understand13:41
sean-k-mooneywell partly becasue you dont even supprot all the modules that dan is compiling in the plugin13:41
dansmithwe can make up that list from looking in sysfs right?13:41
sean-k-mooneyso at a minium i want all of them to be valid but i woudl prefer it to be a config option in the [devices] section13:42
sean-k-mooneydansmith: yes we can do that too13:42
dansmithI guess if the operator might want to limit some devices to not be picked up by nova, then there's a legit reason to have a conf option13:42
bauzassean-k-mooney: ack I can try to change https://review.opendev.org/c/openstack/nova/+/898100/2/nova/virt/libvirt/driver.py#8065 for not using the "parent" name13:42
dansmithI'm just a bit over having to config everything by hand that we should be able to discover13:42
bauzasme too13:42
sean-k-mooneydansmith: so unless we enable an mdev type form the device13:43
bauzasso basically I let you guys decide13:43
sean-k-mooneywe shoudl not be reporting the mtty devices anyway13:43
sean-k-mooneyso im not sure we need to configure things at all13:43
sean-k-mooneybasically if you dont have 13:43
sean-k-mooney[devices]13:44
sean-k-mooneyenabled_mdev_types = mtty-113:44
sean-k-mooney[mdev_mtty-1]13:44
sean-k-mooneydevice_addresses = mtty13:44
sean-k-mooneythen the mtty rp shoudl not be created right13:44
bauzasso, shall we just do an exec on lsmod and see whether mtty is loaded ?13:44
dansmithah right right13:44
dansmithbauzas: don't be silly13:44
sean-k-mooneybauzas: hell no13:44
bauzasyeah, correct13:44
bauzasabout the fact that no RPs are created until you configure nova.confg13:44
sean-k-mooneydo me the fact device_addresses is not a pci adress shoudl be all you need13:44
dansmithsean-k-mooney: so discover the parents but still obviously let them configure them specifically13:45
sean-k-mooneyno need for hardcoded sentineal13:45
dansmithconfigure the devices specifically I mean13:45
bauzassean-k-mooney: if we do this, we would remove the pci check and let anyone do fatfingering13:45
bauzasI'm not sure I like that13:45
bauzashttps://review.opendev.org/c/openstack/nova/+/898100/2/nova/virt/libvirt/driver.py#7974 is where we parse config13:46
sean-k-mooneywhat i was orginally thinkgig is as follows13:46
sean-k-mooneyif device_addresses does not container a pci adress 13:46
dansmithbeing only able to handle pci devices seems too specific to me anyway13:46
bauzasdansmith: so you'd be in favor of lifting this all ?13:48
sean-k-mooneycheck if the value of device_addresses is in /sys/devices/virtual/<device_address>13:48
bauzastbc, there are some assumptions where we say that we have a PCI address13:48
bauzassean-k-mooney: ah, good idea13:49
sean-k-mooneyif that folder does not exsit we can raise that as a config error in init_host13:49
bauzasthat's a readonly call, we don't need to privsep call it13:49
bauzasand that's a cheap I/O call only made at startup13:50
bauzaswfm so13:50
sean-k-mooneyya its listraly just a file exist check13:50
dansmithbauzas: but is that really ideal? I mean, it's a bit of a reach, but there are other busses on other systems, and I can totally imagine this sort of virt-friendly hardware someday exposing something totally different there13:50
dansmith(that == being so tied to pci addresses specifically)13:50
sean-k-mooneydansmith: you are correct that mdev does not require pci device parents13:50
bauzasdansmith: I don't disagree with you long-term, but fwiw, the only vfio-mdev devices I've seen rely on being PCI addresses13:51
sean-k-mooneythat is an atritifal limiation in novas code base today to simplfy the code13:51
dansmithyeah13:51
bauzasso I'd please defer that PCI untanglement until some real hardware comes up which isn't PCI based13:51
bauzasserial or whatever it would be13:51
sean-k-mooneybauzas: tehre are once that use cpx? compute express link what ever the acfronum is13:51
sean-k-mooneyah CXL13:51
dansmithso the plan is to stick to pci addresses for now, but validate them by checking in sysfs and tolerate non-pci things if they're in /virtual/<addr> ?13:51
bauzassean-k-mooney: I haven't yet asked to add CXL into nova and I'll stick with playing the ostrich for now :)13:52
bauzasdansmith: yeah13:52
sean-k-mooneyactully my orgianll proposal a few days ago was for device_adress to be set to the subpath under /sys/devices13:52
sean-k-mooneyso that it woudl work in any buss13:52
sean-k-mooneybauzas: i have talked about CXL for nova several times and we have also said not yet13:53
bauzasonly for mediated devices13:53
dansmithsean-k-mooney: ah yeah that's interesting13:53
bauzasmdev capable devices won't show up in /sys/devices13:53
sean-k-mooneybauzas: they will under /sys/devices/pci/13:54
bauzasah yeah you're right13:54
bauzasyay, another good idea worth implementing it someday13:54
sean-k-mooneyso bacially for now i think the minimal change would be "if not a pci adress assume its a virual device"13:55
sean-k-mooneyin the futre we can add a sysfs check if we want, but if we plan do do that in the future we shoudl consider upgraades now13:55
bauzasI can try to write it the way it prepares ourselves to admit that pci devices are just a subset of all the devices that can create mdevds13:55
bauzassean-k-mooney: I think reading sys https://review.opendev.org/c/openstack/nova/+/898100/2/nova/virt/libvirt/driver.py#7975 is cheap and worthwhile13:56
sean-k-mooneybauzas: it is an you can resue the funciton for the cpu ofline fucntions13:56
sean-k-mooneybauzas: i also suggested this a few days ago13:57
bauzasyup, and there are multiple things we can do this cycle about how we do the liaison13:57
bauzasI'm still having this enhancement on me about using libvirt for creating the mdev13:58
sean-k-mooney speaking of which i think its fair to say htat after the ptg wheree we should discuss some of this we should likely capture the plan in a spec13:58
sean-k-mooneybut for sysfs reading in genal plwad use https://github.com/openstack/nova/blob/master/nova/filesystem.py#L28 if you do implement this13:59
bauzassean-k-mooney: yup, I'll 14:00
sean-k-mooneybesided the fact this should have a spec, the main reason i want one is to defien the scoep and what will be doen in which order and wthat will eb defered to a future release14:01
sean-k-mooneypartly so we dont forget soemthing14:01
bauzasdon't disagree14:02
dansmithsean-k-mooney: bauzas I didn't save a link to the bug filed yesterday about the upgrade check, but was there any discussion there about revert vs. change to warning?14:11
bauzasdansmith: I very briefly looked at your convo this morning, can you explain it again please ?14:11
bauzasiirc, it was because of non-slurp14:11
dansmithno14:11
dansmithbauzas: basically sean-k-mooney strong-armed me into adding a status check for comptue-object-ids in this last cycle, which raised an error if you hadn't completed the upgrade (which you wouldn't have yet anyway)14:12
dansmithI begged for mercy but there was no mercy given so I added the check and then an op showed up yesterday wondering why I had ruined his day14:12
dansmith(I may be exaggerating here)14:13
dansmithanyway, the status check really should be *next* cycle saying "you haven't finished your homework from last time"14:13
dansmithso we have two options: 1. just revert out the check entirely from 2023.2 or 2. convert it to a warning result14:13
sean-k-mooneyfyi https://paste.opendev.org/show/bGuYFgfWt70oGOHcAuH9/14:14
sean-k-mooneyit looks like its working for me too14:14
sean-k-mooneybut i have not tried to boot any vms with those mdevs yet14:14
sean-k-mooneyi have allcoated 4 mdevs in this case14:15
bauzassean-k-mooney: I went down to create and even sshing to the cirros guest, the serial was present14:15
bauzasdansmith: recollecting 14:15
sean-k-mooneybauzas: ack ill do that quickly too just to confirm but i htink this is usabel for startting to do ci14:16
dansmith\o/14:16
sean-k-mooneywe have some basic mdev/gpu testsin whitebox14:16
sean-k-mooneyso we coudl try extending the job to depend on your patch and enable those14:17
dansmithsean-k-mooney: what happens if you try to migrate an instance with a non-migratable mdev? Maybe that's something we can test in normal multinode tempest in the short term.. that we don't break14:17
sean-k-mooneyunfortunetlly the tests as written wont work14:17
sean-k-mooneysince they depend on pci14:17
dansmithoh we have to do this in whitebox because we need to know mdev details on the host I guess?14:18
sean-k-mooneydansmith:  good question i currently only have singel node devstack deployed so cant check but sylvain should be able to just try that14:18
sean-k-mooneydansmith: no we can do this is tempest too14:18
dansmithokay14:18
dansmithseems like a good negative test to add14:18
sean-k-mooneywe just would not eb able ot look at the xml but we can just check for the device in the guest via ssh14:18
dansmithto make sure we don't sh*t the bed if the migration fail for that reason14:19
sean-k-mooneyi would expect libvirt to fail the migration wehn we call migrate_to_uri3 or whatever the libvirt function is14:19
sean-k-mooneysame as if the cpu compatiable check in libvirt fails14:19
dansmithyep, just seems like a good check if it's easy14:19
sean-k-mooneyor if you have hostdev devices14:19
bauzasdansmith: good question, I know that we test some move ops14:19
sean-k-mooneyso you think the best approch woudl be to start creating new geneic mdev tests in tempest right14:20
bauzasand yeah I have a 2-node env with one mtty, can try to migrate my test instance14:20
sean-k-mooneycool14:20
dansmithsean-k-mooney: depends on what they look like really, but.. yeah why not?14:20
sean-k-mooneycold migrate should work live migrate will likely fail or we/libvirt  have a bug14:20
bauzasback to dansmith's point about status checks14:21
dansmiththis is clearly a gap14:21
sean-k-mooneydansmith: no reason not to just wanted to confirm that is your prefernce14:21
bauzasdansmith: so, about status checks, I'd say revert it14:22
sean-k-mooneyso we will need a new compute feature config option in tempest for it and perhasp a cofnig option to identify how to detect the device in the vm14:22
dansmithsean-k-mooney: yeah14:22
bauzasno real gain in having a warning imho14:22
dansmithbauzas: okay that was sean-k-mooney's opinion too14:22
dansmithbauzas: so revert in master, backport that, and then maybe add it back later when we start depending on it?14:22
bauzaswfm14:22
dansmithaight14:23
sean-k-mooneyya so i think that would make sense14:23
sean-k-mooneyfell like pushing the revert patch14:23
sean-k-mooneyand we can review it quickly since we are talking about it14:23
dansmithI'm doing it14:24
dansmithI need to find that bug tho14:24
opendevreviewDan Smith proposed openstack/nova master: Revert "Add upgrade check for compute-object-ids linkage"  https://review.opendev.org/c/openstack/nova/+/89874114:25
bauzashmmm, looking more at the mdev parent being 'computer' in the device XML, there may be some confusions when creating inventories if we were about asking two different virtual devices, like say mtty and mdpy14:28
bauzasthat's a potential bug, so I'm pdb'ing it on my devstack14:29
bauzasanother slight difference from libvirt that may need to change on their side14:29
sean-k-mooneywell we can have mulitpel inventories of mdevs for diffent types14:51
sean-k-mooneyso it will be a slightly didfdfent toplogy i.e. 1 rp for all virtual devs rahter then one per pareent devce14:52
sean-k-mooneybut i think that is fine14:52
bauzasno, because we don't support heterogenous VGPUs (yet)14:52
bauzasa single device can only support one type14:53
sean-k-mooneyi didnt think that was enforecd there i tought that was done as part of the config14:53
bauzasthat's how we account those14:53
sean-k-mooneyparsing14:53
bauzasthere is a config parser that checks that yes14:53
bauzasbut our internal dicts rely on that too14:53
sean-k-mooneyok well that another reason to use the device_adress 14:53
sean-k-mooneyfor virtrual stuff14:54
bauzasyeah, I filed a bug against libvirt fwiw14:54
bauzasthe vfio guys are aware of the bug14:54
bauzasand we'll just adapt14:54
bauzasit occurs to me that OpenStack is probably the only high-level project that's about to integrate mtty for testing ;:)14:55
bauzasmtty was probably just a toy project14:55
bauzasbut if that helps others's testing, that's a net win14:55
bauzasnetcalol15:43
bauzassean-k-mooney: fwiw, read_sys only reads files :) https://github.com/openstack/nova/blob/master/nova/filesystem.py#L2816:13
bauzassean-k-mooney: and /sys/devices/virtual/mtty is a dir :)16:13
bauzasI can provide some helper method that would wrap os.path.isdir() but would you nack if I was just calling os.path.isdir() straight in the driver ?16:14
bauzasor .exists()16:14
colby__noonedeadpunk: Thanks Ill check on that. Did not realize the tunnel was dropped. Was this a change on xena to yoga? Everything worked fine on xena.16:21
sean-k-mooneybauzas: good point on it being a dir i guess you can just add  a new helper ya in the same module16:23
sean-k-mooneyor just call  os.path.isdir() but it would be ok ot put in the filesystem module16:23
sean-k-mooneyan exist check is enough16:23
bauzassean-k-mooney: well, if the helper method only wraps isdir, that sounds to me a bit unnecessary16:23
sean-k-mooneyso i would go with exist because it might actully be a simlink16:24
colby__I have another question. It appears that the amount of local disk available changed in yoga. It appears to be only considering the actual local disk now (without ceph). But instances that use a ceph backed volume to boot are still counting  as local disk usage. Was this intentional? Its causing no resources available issues for me. Im working on changing the disk allocation ratio to get around it. 16:24
bauzasyeah, agreed on exists(), semantically better16:24
bauzasbut if I'm just returning the boolean, meh16:24
bauzasI can pretend to return a FileNotFound exception if exists says no16:25
bauzasat least that would justify the helper16:25
sean-k-mooneycolby__: boot form volume instance shoudl use flavor with disk_gb = 016:25
sean-k-mooneywe allow boot form volue instnace with flavor that dont set it to 0 but it is only for legacy/upgrade reasons16:26
sean-k-mooneyif you mena ceph volume via image_type=rbd16:26
sean-k-mooneythen use flavor as normal 16:26
sean-k-mooneywith disk_gb set to the correct size16:27
sean-k-mooneyin yoga and master for that mater we report local_gb based on the rbd pool size for every instnace as far as i remember16:27
colby__yea unfortunately our flavors have disk size set even though they all use ceph boot volumes. Everythign we use is in ceph (images/ephemeral/volumes). But seems there is no way around the already set flavor disk size then. From the hypervisor screen its seems to be only showing the hypervisor boot disk volume for local disk16:31
colby__Im in the process of upgrading yoga and trying to live migrate instances to the already upgraded machines and running into this issue16:31
colby__is there a way to override the disk size of a running instance flavor?16:32
sean-k-mooneycolby__: are you using images_type=rbd16:32
sean-k-mooneyor cinder volumes16:32
colby__cinder volumes16:33
sean-k-mooneyadn your using images_type=qcow16:33
sean-k-mooneyor raw or flat16:33
colby__we did not set it so its currently default16:34
sean-k-mooneyok that woudl be defcault which for libvirt is qcow16:34
sean-k-mooneyimporanly in that config then the expect bevioru is to report local_disk_gb as the free space on the compute node partion where /var/lib/nova is16:35
sean-k-mooneyand that was the ame behvior in older release16:35
colby__ok so set images_type=rbd then?16:35
sean-k-mooneyno16:35
sean-k-mooneythat means use cpeh for root disk16:35
sean-k-mooneyeven with out ceinder16:35
colby__ah sorry I misunderstood. so raw then?16:36
sean-k-mooneyno dont change it16:36
sean-k-mooneynova is working as it should form a compute config point of view16:36
colby__ok16:36
sean-k-mooneyi need to check somehting but i alo need to join a 1:1 with my manager16:37
colby__ok no problem. Thanks for the help16:37
sean-k-mooneydid you used to set allcoation raitio by aggreates prehaps?16:37
dansmithugh, feels like we're back to gate suckage.. some trivial patches are in recheck hell16:39
colby__sean-k-mooney: we never set anything for disk allocation16:41
colby__sean-k-mooney: I was able to increase the disk allocation ratio but now seeing this: nova.exception.InvalidSharedStorage: <host> is not on shared storage: Shared storage live-migration requires either shared storage or boot-from-volume with no local disks. This is a boot from volume ceph instance17:03
colby__is this all due to the disk_gb of the flavors?17:04
colby__Im migrating from a xena hypervisor to a yoga and seeing this issue17:08
sean-k-mooneycolby__: so partly. but you shoudl have had the same behavior on xena and yoga i think17:21
sean-k-mooneycolby__: so you should not be passing --shared-srotage wehn live migrating17:22
colby__I was just using the GUI for the live migration but can switch to the cli17:22
sean-k-mooneyyou should be using a newer microvstion where that defautl to auto17:22
sean-k-mooneyso for boot form volume guest you should not tick shared storage17:23
sean-k-mooneyshared storage for that option really means is /var/lib/nova on nfs17:23
sean-k-mooneyso are you using images_type=rbd17:23
colby__no17:24
colby__just set to default17:24
sean-k-mooneyi missed typed17:24
sean-k-mooneywhat i ment is you only say "shared_stroage=true" if you the vm is booted on a shared file cycle without using cinder volumes17:25
sean-k-mooneyso that is not your case17:25
colby__also there is no check box for shared storage just "block migration" and "disk overcommit" on gui live migration17:25
sean-k-mooneyright so your using horizon yes?17:25
sean-k-mooneyit likely would be better to do live migration form the openstack client17:26
colby__yep will try that17:26
sean-k-mooneyso in mitaka 2.25 we added auto17:28
sean-k-mooneyhttps://docs.openstack.org/nova/latest/reference/api-microversion-history.html#maximum-in-mitaka17:28
melwittstephenfin: I wondered if you might be able to shed some light on this bug report regarding an alembic migration https://bugs.launchpad.net/nova/+bug/2008716 they report a failure to drop columns in the build_requests table going from xena -> yoga. yet this doesn't fail in the grenade job for xena -> yoga, so I'm confused if there is really a bug?17:32
sean-k-mooneymelwitt: i think gibi ^ looked at that before17:40
colby__sean-k-mooney: that seemed to work. Im able to migrate from xena to yoga hypervisor. But Im not able to migrate to the original hypervisor that I fully patched (updated qemu/libvirt). On that machine Im seeing the following: qemu-kvm: load of migration failed: Invalid argument: libvirt.libvirtError: internal error: qemu unexpectedly closed the monitor: 2023-10-18T17:33:57.637682Z qemu-kvm: Missing section footer for17:40
sean-k-mooneyi that sound liek a qemu crash17:41
melwittsean-k-mooney: yeah, he did and I agree it seems like a bug in the migration. but if it is, why doesn't it fail in grenade? I looked for awhile and couldn't figure it out. I thought stephenfin might have ideas since he worked on alembic stuff17:44
sean-k-mooneyi think we get diffent behavior in fressh install vs upgraded case but i dont exactly rememebr why17:46
sean-k-mooneyi assume the base scemea we use in once ase either has or does not have the column17:46
melwittyeah.. if a fresh install of xena doesn't have the columns and the yoga migration would fail to drop them bc they don't exist, I thought it should have happened in grenade since grenade does a fresh install of xena and then upgrades it to yoga17:48
sean-k-mooneyhttps://github.com/openstack/nova/blob/stable/xena/nova/db/api/migrations/versions/d67eeaabee36_initial_version.py#L175-L20817:48
sean-k-mooneyso that is how the build request tabel is created on a clena install17:48
sean-k-mooneyhttps://github.com/openstack/nova/blob/stable/xena/nova/db/api/migrations/versions/d67eeaabee36_initial_version.py#L18617:49
sean-k-mooneyso it has vm_states17:49
sean-k-mooneyso a clean install on xena woudl have it17:49
sean-k-mooneybut a cloud that was upgraded form wallaby perhaps might not17:49
sean-k-mooneyhum it should be there in wallaby https://github.com/openstack/nova/blob/stable/wallaby/nova/db/sqlalchemy/api_migrations/migrate_repo/versions/067_train.py#L17817:50
melwittolder versions do the initial migration too. I am just not seeing how it's possible to get into a case where you don't have the columns in xena if the yoga migration is the only thing that removes them17:51
sean-k-mooneyits also there if you use legacy migrations for green filed in xena https://github.com/openstack/nova/blob/stable/xena/nova/db/api/legacy_migrations/versions/067_train.py#L16617:51
sean-k-mooneymelwitt: perhaps we need to look at the code before we collapsed the migrations17:52
sean-k-mooneyif the bug was intoduced anywhere it was in the db compaction series17:54
sean-k-mooneyso in the patch before the dbcompaction17:57
sean-k-mooneyhttps://github.com/openstack/nova/blob/2d4eff0ef789957fe5498640015a6cccff43a2c3/nova/db/sqlalchemy/api_models.py#L24117:57
sean-k-mooneythe build request tabel did not have the offending colum in the model17:57
sean-k-mooneyah hwere so even then it was created in migration 6 with the field17:59
sean-k-mooneyhttps://github.com/openstack/nova/blob/2d4eff0ef789957fe5498640015a6cccff43a2c3/nova/db/sqlalchemy/api_migrations/migrate_repo/versions/006_build_request.py#L4817:59
sean-k-mooneyi dont see the removal migation however at this point in the repo18:00
melwittis that yoga? bc the removal migration was added in yoga I think18:01
sean-k-mooneythat is xena18:01
melwittoh ok18:01
sean-k-mooneyso in xena the table was created with the column and i dont see the removal18:02
sean-k-mooneyan pre xena the colume also existed18:02
sean-k-mooneydo you knwo which commit added the drop18:03
sean-k-mooneyhttps://github.com/openstack/nova/commit/9657297dd6c63e7a1e0c84c3e943b26f1795d38818:04
sean-k-mooneyso honestly i don tsee the bug18:06
sean-k-mooneyxena had the colume and both ways of createating a clena db have the column18:06
melwittyeah, same18:32
opendevreviewAlexey Stupnikov proposed openstack/nova master: Preserve cached base images for failed resize ops  https://review.opendev.org/c/openstack/nova/+/87741018:42
opendevreviewmelanie witt proposed openstack/nova master: docs: Fix unified limits code block text alignment  https://review.opendev.org/c/openstack/nova/+/89875922:02
opendevreviewMerged openstack/nova master: Improve logging at '_numa_cells_support_network_metadata'  https://review.opendev.org/c/openstack/nova/+/86093023:05
opendevreviewMerged openstack/nova master: Clean up service_get_all()  https://review.opendev.org/c/openstack/nova/+/89767423:16

Generated by irclog2html.py 2.17.3 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!