opendevreview | Amit Uniyal proposed openstack/nova stable/zed: Improving logging at '_allocate_mdevs'. https://review.opendev.org/c/openstack/nova/+/871413 | 05:12 |
---|---|---|
opendevreview | Amit Uniyal proposed openstack/nova stable/yoga: Improving logging at '_allocate_mdevs'. https://review.opendev.org/c/openstack/nova/+/871414 | 05:14 |
opendevreview | Amit Uniyal proposed openstack/nova stable/xena: Improving logging at '_allocate_mdevs'. https://review.opendev.org/c/openstack/nova/+/871415 | 05:15 |
opendevreview | Amit Uniyal proposed openstack/nova stable/wallaby: Improving logging at '_allocate_mdevs'. https://review.opendev.org/c/openstack/nova/+/871416 | 05:16 |
opendevreview | Amit Uniyal proposed openstack/nova stable/victoria: Improving logging at '_allocate_mdevs'. https://review.opendev.org/c/openstack/nova/+/871417 | 05:17 |
opendevreview | Amit Uniyal proposed openstack/nova stable/ussuri: Improving logging at '_allocate_mdevs'. https://review.opendev.org/c/openstack/nova/+/871419 | 05:19 |
opendevreview | Amit Uniyal proposed openstack/nova stable/train: Improving logging at '_allocate_mdevs'. https://review.opendev.org/c/openstack/nova/+/871444 | 06:09 |
opendevreview | Amit Uniyal proposed openstack/nova stable/train: Improving logging at '_allocate_mdevs'. https://review.opendev.org/c/openstack/nova/+/871444 | 06:26 |
opendevreview | Rajesh Tailor proposed openstack/nova master: Handle InstanceInvalidState exception https://review.opendev.org/c/openstack/nova/+/861738 | 07:52 |
opendevreview | Rajesh Tailor proposed openstack/nova master: Handle InstanceInvalidState exception https://review.opendev.org/c/openstack/nova/+/861738 | 09:47 |
opendevreview | Sahid Orentino Ferdjaoui proposed openstack/nova master: compute: enhance compute evacuate instance to support target state https://review.opendev.org/c/openstack/nova/+/858383 | 10:00 |
opendevreview | Sahid Orentino Ferdjaoui proposed openstack/nova master: api: extend evacuate instance to support target state https://review.opendev.org/c/openstack/nova/+/858384 | 10:00 |
bauzas | gibi: so, wants me to move https://blueprints.launchpad.net/nova/+spec/pci-device-tracking-in-placement to Implemented so , | 10:07 |
bauzas | ? | 10:08 |
gibi | bauzas: yes please | 10:08 |
bauzas | ack | 10:08 |
opendevreview | Rajesh Tailor proposed openstack/nova master: Handle InstanceInvalidState exception https://review.opendev.org/c/openstack/nova/+/861738 | 11:06 |
opendevreview | Rajesh Tailor proposed openstack/nova stable/zed: Correct config help message related options https://review.opendev.org/c/openstack/nova/+/871247 | 12:35 |
kashyap | gibi: If you have time, appreciate a look at this failure: https://zuul.opendev.org/t/openstack/build/42cccae5e7b64091a9a63ed0f808c980. (I thought mocking _register_all_undefined_instance_details should suffice; but fails differently after that: https://paste.opendev.org/show/bNMZwe9Sh4vT5V9gA95t/) | 12:44 |
gibi | kashyap: you set up mocked_compare to return 2 but the code around self._host.compare_cpu in driver.py expect an libvirtError exception when failure happens | 12:59 |
kashyap | gibi: You're talking about this test in the above paste-bin, yeah? - test__check_cpu_compatibility_advance_model | 13:00 |
gibi | yepp | 13:00 |
gibi | with the extra mock form the paste applied | 13:00 |
kashyap | Hmm | 13:01 |
kashyap | gibi: The extra mock is the first step here, at least right | 13:02 |
gibi | kashyap: yepp, I think so | 13:02 |
gibi | what you mocked would call into the db and that is not allowed in that unit test hence the need for the mock | 13:02 |
kashyap | Right; I see. | 13:03 |
kashyap | gibi: Unless I'm being dense, the test is trying to raise an exception there, isn't it - line-12. | 13:04 |
kashyap | (In the pastebin) | 13:04 |
gibi | kashyap: nope, that point the test *expects* an exception is being raied by calling drvr.init_host | 13:04 |
kashyap | gibi: Hmm, how would you suggest to fix this? I'm a bit out of brain cells here | 13:06 |
kashyap | I didn't paste the last line of test traceback, but probably you saw it in Zuul: it's the "impl.MismatchError ... <bound method [...] returned None>" | 13:09 |
gibi | so looking at https://github.com/openstack/nova/blob/d8b4b7bebdc0f55353cd99f372044b9e30315a6d/nova/virt/libvirt/driver.py#L9978-L9993 | 13:10 |
gibi | you need to return a negative integer from mock_compare to trigger a failure case OR you have to raise libvirtError from mock_compare | 13:11 |
gibi | I'm not sure what the real libvirt behavior is, raise or return negative | 13:12 |
gibi | but the code linked above handles both | 13:12 |
kashyap | Aaah, the "if ret <=0" bit | 13:12 |
gibi | one more thing | 13:15 |
gibi | you mock nova.virt.libvirt.host.libvirt.Connection.compareCPU | 13:15 |
gibi | but I'm not sure that the actuall call reaches there in the unit test | 13:16 |
kashyap | Hmm | 13:16 |
gibi | I think in that unit test the call reaches nova.tests.fixtures.libvirt.Connection.compareCPU | 13:16 |
gibi | instead | 13:16 |
kashyap | (Aside: returning negative integer didn't help; I tried - "mocked_compare.side_effect = -1") | 13:17 |
kashyap | gibi: Hmm, it's odd that it is reaching the fixture in this case, rather than the host.libvirt | 13:18 |
gibi | let me check... | 13:18 |
kashyap | (Another test is failing the same way, actually. If you want to pull the patch in: https://review.opendev.org/c/openstack/nova/+/870794/) | 13:18 |
gibi | hm, there is a bug in the code. We removed the first check and kept the second but actually the second check runs on each cpu_model_extra_flags flag one by one. If no flags defined there then no check runs at all | 13:23 |
gibi | the latter happens in the unit test | 13:23 |
kashyap | gibi: Hmm, I sure tried adding extra_flags to this test. Maybe I mixed up, lemme try adding one in the test | 13:24 |
kashyap | gibi: You mean "bug in the code" or bug in the unit test code -- to be modified to reflect the new reality | 13:25 |
kashyap | gibi: Sure enough, adding this line succeeds the test: | 13:25 |
kashyap | + cpu_model_extra_flags = ["-aes"], | 13:25 |
gibi | it is more like a question. Do we want to run the check if on extra flags are configured? | 13:25 |
kashyap | gibi: Yeah, we do want to check to run (_compare_cpu) when the extra_flags are configured -- is that what you ask? | 13:26 |
gibi | scratch the nova.tests.fixtures.libvirt.Connection.compareCPU issue that was my mistake | 13:27 |
kashyap | gibi: I had to add the above diff, _and_ also return a negative integer for mocked_compare | 13:27 |
kashyap | gibi: So that's the fully modified test - https://paste.opendev.org/show/bPZk3eYZzuS4F7yazGqK/ | 13:28 |
kashyap | See line-6 and line-9 | 13:28 |
gibi | kashyap: my question is: if there is no extra flags configured, should we still run the compare_cpu or is it OK to only run the compare_cpu if there are extra flags configured | 13:28 |
gibi | kashyap: yepp tha paste matches what I did | 13:29 |
sean-k-mooney | gibi: we should run the compare if there are no extra flags | 13:29 |
sean-k-mooney | we just dont need to modify the model | 13:29 |
gibi | then we need to change the code up a bit | 13:29 |
gibi | as this for loop is empty if no extra flags provided https://review.opendev.org/c/openstack/nova/+/870794/8/nova/virt/libvirt/driver.py#992 | 13:29 |
sean-k-mooney | the code should treat it as an empty list of flags | 13:29 |
kashyap | sean-k-mooney: We never modify the model ourselves | 13:29 |
gibi | sean-k-mooney: also I'm not sure you see that but this code compares the extra flag independently one by one, not all at once | 13:30 |
sean-k-mooney | well not the model but the cpu definition | 13:30 |
sean-k-mooney | what we want the algortim to do is generate teh cpu xml from the modle then apply any flags that are present and then do one compare | 13:31 |
sean-k-mooney | it should do that for each model in cpu_models | 13:31 |
kashyap | gibi: Can you summarize your observation in the comment, please? (Also - the one-by-one flag comparison - I don't see an issue there) | 13:31 |
sean-k-mooney | and raise an error if any of them fail | 13:31 |
gibi | kashyap: sure | 13:31 |
sean-k-mooney | doing it flag by flag is an optimisation of that in that it will fail on the first flag that is not supported | 13:32 |
sean-k-mooney | but its not really sematicaly correct | 13:32 |
sean-k-mooney | for example to disable TSX you need to remove two flags | 13:32 |
sean-k-mooney | doing it one at a time will fail in that case | 13:32 |
kashyap | gibi: Also, I'm not sure I agree with sean-k-mooney on to run the _compare_cpu() when there are no flags there | 13:33 |
sean-k-mooney | no flags means do not modify the enabled model | 13:33 |
kashyap | sean-k-mooney: If you run it w/o the flags, then that means it's the same as the first call that we removed | 13:33 |
sean-k-mooney | so we still need to check that for validity | 13:33 |
kashyap | Does what I say above that make sense? | 13:33 |
sean-k-mooney | kashyap: the first call is correct where teh model is comaptible with the host | 13:33 |
sean-k-mooney | flags is optional and only needed fi teh default models shipped by lbivrt/qemu are not sufficent fro your usecase | 13:34 |
sean-k-mooney | where they are you should not be requried to use it but we should still validate the model | 13:35 |
gibi | there is a difference between the old check we removed and using the new check with the empty flag list | 13:35 |
sean-k-mooney | i mentioned in one of my reviews i was not sure the current compare was correct and the per flag iteration was one of my concerns | 13:36 |
kashyap | sean-k-mooney: Huh, if we retain the second call when no flags are given, then there's no difference with the _removed_ call in this patch -- gibi: does this make sense? | 13:36 |
gibi | the old check used cpu.model = self._get_cpu_model_mapping(model) as the the one to compare while the remaining check uses self._host.get_capabilities().host.cpu.model + the extra flags | 13:36 |
sean-k-mooney | the first call was only incorrect if you use extra flags | 13:36 |
kashyap | [ What's the diff with the new (or rather the 2nd check) with an empty flag list? Ah, you just write above] | 13:36 |
sean-k-mooney | well the second check is wrong because its not looping over al the models enabeld in cpu_models | 13:38 |
kashyap | Hmm, I'm trying to minimize the "impact surface" here. | 13:38 |
gibi | I guess we are back to the drawing board then | 13:38 |
kashyap | gibi: The first check was wrong anyway: so that we can remove w/o doubt. | 13:38 |
sean-k-mooney | no not in all cases | 13:39 |
sean-k-mooney | it was only wrogn if you enabled a modle that is not compatible with the cpu | 13:39 |
gibi | the two check uses a different cpu.model for comparision | 13:39 |
sean-k-mooney | gibi: right and the second check is not looping over the lsit fo cpu_modles | 13:39 |
sean-k-mooney | so we need to 1 loop over them using self._get_cpu_model_mapping(model) and 2 apply all cpu flags before doing the compare | 13:40 |
sean-k-mooney | 3 the comapre should not be condtional on extra flags and should happen even when empty | 13:41 |
kashyap | Hm, that could make whole code flow to be changed and a lot more surface impact :-( - I wonder if we try it on _top_ of the workaround? | 13:41 |
gibi | basically to see that each configred model with all the configured flags applied are still compatible with the hypervisor | 13:41 |
kashyap | gibi: Yeah, that's what libvirt will be doing under the hood "by default". | 13:42 |
gibi | kashyap: I don't think so. I guess libvirt will do the check during boot with the selected model + extra flags | 13:43 |
gibi | not each model + flags at startup | 13:43 |
kashyap | (I'm just thinking if we can "do this additional improvement" on _top_ of the current workaround + API replacement patch?) | 13:43 |
gibi | I guess if we want the workaround to land independently then we need to add back the old check and make both check optional with the WA flag. | 13:43 |
gibi | sean-k-mooney: ^^ what do you think? | 13:44 |
kashyap | Hmm, the first check is wrong unilaterally - sean-k-mooney agrees that too, IIUC | 13:44 |
kashyap | (As based on his suggestion is the current revision) | 13:44 |
kashyap | (And thanks for your patience so far, folks!) | 13:45 |
gibi | then I'm confused, as we discussed above that the second check alone is not enough. | 13:45 |
sean-k-mooney | https://review.opendev.org/c/openstack/nova/+/870794/8/nova/virt/libvirt/driver.py#992 | 13:46 |
sean-k-mooney | kashyap: actully i dont | 13:46 |
gibi | as it does nothing when no extra flags I configured | 13:46 |
sean-k-mooney | kashyap: i said its condtionally wrong if and only if you use extra_flags | 13:46 |
sean-k-mooney | anyway i posted what i think is the correct code in the comment above ^ | 13:47 |
kashyap | sean-k-mooney: Well, I'm fine if you've refined your view _now_. But a few days ago you did write here: | 13:48 |
kashyap | (quote) | 13:48 |
kashyap | < sean-k-mooney> but if you want to future proof then sure you can put the remain check under a workaroudn | 13:48 |
kashyap | [...] | 13:48 |
kashyap | < sean-k-mooney> or just delete the first check | 13:48 |
kashyap | (/quote) | 13:48 |
kashyap | (Doing "nothing when no extra flags" are configured is still fine - as it was already explicitly tested by a downstream bug reporter in a real env) | 13:49 |
sean-k-mooney | yes i did not express my concern at that point with the looping as i tought i has already disucsst that with you | 13:49 |
kashyap | Okay. | 13:49 |
sean-k-mooney | kashyap: its not fine because its an upstream regression | 13:49 |
kashyap | gibi: sean-k-mooney: Also it was tested with the workaround as it stands: https://bugzilla.redhat.com/show_bug.cgi?id=2138381#c45 | 13:50 |
kashyap | (Unforunately, it's a private comment, so only RHTers can see it) | 13:50 |
kashyap | (Hmm, perhaps ignore that test, I think he tested it with the first revision) | 13:51 |
gibi | kashyap: you will only see the changed behaivor if the test is configuring incompatible model without extra flags. | 13:51 |
kashyap | gibi: True | 13:51 |
gibi | in the baseline that will fail the startup of nova-compute in the new code it will let the nova-compute start | 13:51 |
gibi | but fail all instance boot instead | 13:52 |
kashyap | I'm trying to find a reasonable compromise here: so shall I put both the blocks back into the code and add the workaround? | 13:52 |
kashyap | (s/blocks/calls/) | 13:52 |
kashyap | gibi: Right, failing at instance boot is still "something" - as it still provides a libvirt error. But I know we've already discussed and that's not 'acceptable' | 13:53 |
sean-k-mooney | i condier the bug you are introduceing by removign all cpu checks in the case that cpu flags is empty to be more serios then the bug you are trying to fix | 13:53 |
kashyap | sean-k-mooney: Keeping the first call in tact will break upstream deployments whenever using Icelake and Cascadelake | 13:53 |
sean-k-mooney[m] | the code i put in a comment in the reveiw will work for that case | 13:54 |
kashyap | sean-k-mooney: gibi: Okay: I'll keep both the checks in and wrap 'em around the workaround. | 13:54 |
sean-k-mooney[m] | and provide the corect behavior in other cases | 13:54 |
kashyap | Does that suit? | 13:54 |
sean-k-mooney[m] | have you looked at the code i provided | 13:54 |
sean-k-mooney[m] | i would perfer if you used that | 13:54 |
kashyap | Not yet; /me goes to look | 13:54 |
sean-k-mooney | my network went down for a minute or two so i read scrollback on matrix so i think im caught back up | 13:55 |
gibi | sean-k-mooney: does that change works for the *lake issue even if the compare_cpu is not replaced with the compare_hypervisor_cpu call? | 13:56 |
sean-k-mooney | oh am i ment to use the new api but i think it would yes | 13:56 |
kashyap | sean-k-mooney: So you did this: | 13:56 |
kashyap | - cpu.model = self._host.get_capabilities().host.cpu.model | 13:56 |
kashyap | + cpu.model = self._get_cpu_model_mapping(model) | 13:56 |
kashyap | sean-k-mooney: (The new API patch comes on top of the workaround.) | 13:56 |
sean-k-mooney | not just that i also did a loop over teh enabled cpu models | 13:57 |
sean-k-mooney | you added support for multiple models a few release ago | 13:57 |
sean-k-mooney | but the cpu_flags aware code path | 13:57 |
sean-k-mooney | was not updated to loop over the list of models | 13:57 |
sean-k-mooney | so that is an existing bug | 13:57 |
kashyap | Oh, wait - you wrapped it under a for loop: "for model in models:" | 13:58 |
sean-k-mooney | yes | 13:58 |
kashyap | Lemme try the tests to see what breaks; again - such a change will be done on _top_ of the workaround of both the calls | 13:58 |
sean-k-mooney | and i made sure the compare was not condtional on the flags | 13:58 |
sean-k-mooney | kashyap: no | 13:58 |
sean-k-mooney | this need to be in the first patch | 13:58 |
sean-k-mooney | well | 13:59 |
kashyap | sean-k-mooney: Well, we can't be 100% sure this works in all cases. So that's too much of a risk to take | 13:59 |
sean-k-mooney | it depend on what you mean by on top of | 13:59 |
kashyap | Because we don't have the bandwidth to test all the possibilities | 13:59 |
sean-k-mooney | if you mena later in the series then no if you mean in addtion too then yes | 13:59 |
kashyap | The safest is to wrap the 2 calls in the workaround: and _then_ do any code-flow changes on top | 14:00 |
kashyap | Does that sound reasonable? (Cc: gibi) | 14:00 |
sean-k-mooney | kashyap: as it stand i cant really supprot backporting the changes you are proposing downstream or upstream | 14:00 |
kashyap | sean-k-mooney: Please see above comment - do you see what I mean? | 14:00 |
sean-k-mooney | i do but i dont agree that is what we should do | 14:01 |
gibi | some of the risk coming from the incomplete test covarege is mitigated by having the WA flag I assume | 14:02 |
kashyap | sean-k-mooney: Shall we please arrive at a reasonable compromise, instead of "ideally situations? | 14:02 |
kashyap | gibi: Exactly | 14:02 |
sean-k-mooney | yes but i dont think we can recommend that customer use that without closing some of those gaps and qe testing | 14:02 |
kashyap | We can't possibly test all cases. So I'm not confident in any code-flow w/o absolute confidence that it's introducing unwanted regressions | 14:02 |
*** dasm}off is now known as dasm | 14:02 | |
sean-k-mooney | kashyap: i am confident that disablinbg the check is a regession and im not comfrotabel with use telling custoemr to do that | 14:03 |
kashyap | sean-k-mooney: Addressing gaps and QE testing can come later. We take step by step based on the available bandwidth. | 14:03 |
gibi | we don't have the coverage over the current code either, and we see a bug in it for the *lake CPUs. We want to fix the bug by removing a buggy check. But by removing the buggy check we remove the good part of the check too. | 14:04 |
gibi | sean-k-mooney proposed a fix that does not remove the buggy check but improve it | 14:04 |
gibi | sure it has a testing risk as we have no coverage | 14:05 |
gibi | so the we have to decide what is bigger the lost good part of the check if we remove it or the risk by fixing the check but not having full coverage | 14:05 |
kashyap | Okay, let me try sean-k-mooney's suggestion from their comment | 14:05 |
kashyap | And "see what happens" with tests | 14:06 |
kashyap | I'll come back and comment on the change. | 14:06 |
sean-k-mooney | we can test it with the functional tests we just need to write a test for it | 14:06 |
sean-k-mooney | but i agree the test coverage is not complete and we might want to do that as a followup | 14:06 |
gibi | sean-k-mooney: we don't have the real libvirt code running in functional | 14:06 |
gibi | we have the libvirt/driver but we don't have the compareCPU from libvirt itself | 14:07 |
sean-k-mooney | we dont but we could enhance the fixture if we really wanted | 14:07 |
sean-k-mooney | i was thinking if we could test this in ci via tempest but we dont really contole the enve enought to do that reliably | 14:07 |
sean-k-mooney | so i dont really want to go down that route | 14:08 |
gibi | yeah, best would be to test this with real hardver and the TSX case but that is haaard | 14:08 |
gibi | (should be possible downstream though) | 14:08 |
sean-k-mooney | with whitebox we coudl proably do it | 14:09 |
kashyap | I'm running the UTs with Sean's suggestion on top this: https://review.opendev.org/c/openstack/nova/+/870794 | 14:09 |
sean-k-mooney | how we woululd do it upstream in tempest is selct a cpu_model that we knwo is unaviable | 14:10 |
kashyap | (If that gives some confidence in a day or so. I can wrap it in the workaround.) | 14:10 |
sean-k-mooney | and disable the cpu flag to make it look like nehalem | 14:10 |
sean-k-mooney | the problem is that a provider could add that model in teh future | 14:10 |
sean-k-mooney | the best way to do that would be to use a model that requests a remvoed feature like TSX | 14:10 |
sean-k-mooney | and disable tsk via the extra flags | 14:11 |
sean-k-mooney | presumable our ci provireder also dont have tsx avaible anymore | 14:11 |
sean-k-mooney | if they have been updating htere kernels/microcode | 14:11 |
kashyap | Yeah, we don't know that, and can't rely on it. | 14:12 |
gibi | so my position is that let's take the risk and doing sean-k-mooney's fix but have the WA flag added. So if the change is good then all is golden, but if the change has some unforseen side effect then we can turn it off while we improve it. For me the risk of this scenario is acceptable. | 14:15 |
kashyap | Right, I'm testing Sean's suggestion with a workaroud wrapper | 14:16 |
sean-k-mooney | ack | 14:16 |
kashyap | gibi: Can you also review the code that sean-k-mooney suggested, please? Two eyes are better :) | 14:16 |
sean-k-mooney | so you testing just one check the new one i pasted ya | 14:16 |
sean-k-mooney | and that wrapped in the workaround flag | 14:16 |
kashyap | sean-k-mooney: Your comment on PS8, yeah | 14:16 |
gibi | kashyap: I checked it it looked OK to me at first glance | 14:16 |
sean-k-mooney | cool | 14:16 |
sean-k-mooney | ok i want to prepare for meeting ectra so ill be back in a bit | 14:18 |
kashyap | Sure; thanks, folks. | 14:18 |
kashyap | gibi: sean-k-mooney: The first brush looks good :) I only had to modify the mocked_compare in 3 unit tests to return a negative integer. | 14:32 |
opendevreview | Kashyap Chamarthy proposed openstack/nova master: libvirt: At start-up rework compareCPU() usage with a workaround https://review.opendev.org/c/openstack/nova/+/870794 | 14:43 |
opendevreview | Kashyap Chamarthy proposed openstack/nova master: libvirt: Replace usage of compareCPU() with compareHypervisorCPU() https://review.opendev.org/c/openstack/nova/+/869950 | 14:43 |
kashyap | sean-k-mooney: --^ (gibi: On the UTs: with the negative integer added, the extra mock is not required even.) | 14:43 |
kashyap | Thanks for bearing with me! | 14:43 |
opendevreview | Artom Lifshitz proposed openstack/nova master: DNM: demo 1 https://review.opendev.org/c/openstack/nova/+/871480 | 14:50 |
opendevreview | Artom Lifshitz proposed openstack/nova master: DNM: demo 2 https://review.opendev.org/c/openstack/nova/+/871481 | 14:50 |
opendevreview | Artom Lifshitz proposed openstack/nova master: DNM: demo 2 https://review.opendev.org/c/openstack/nova/+/871481 | 14:52 |
opendevreview | Artom Lifshitz proposed openstack/nova master: DNM: demo 1 https://review.opendev.org/c/openstack/nova/+/871480 | 14:52 |
opendevreview | Artom Lifshitz proposed openstack/nova master: DNM: demo middle https://review.opendev.org/c/openstack/nova/+/871482 | 14:52 |
sahid | o/ - quick question I have to rebase on conflict a micro-version change, I have some tests failing but struggling to find the issue https://paste.ubuntu.com/p/RNw8yxQtj6/ | 15:58 |
sahid | any idea that can help me? | 15:59 |
sahid | Template: ^2.95$ | 16:01 |
sahid | Sample: 2.94 | 16:01 |
sahid | I don't see where this 2.94 is comming from | 16:01 |
bauzas | sahid: are you sure you updated all your API change files so it now uses 2.95 ? | 16:57 |
bauzas | sahid: commented your patch | 17:04 |
sahid | bauzas: well I want to say yes but I have probably missed something :-) | 17:34 |
sahid | I will double check | 17:34 |
bauzas | sahid: I tried to quick looked at the test to understand why it autogenerates 2.94 | 17:34 |
bauzas | to quickly look* | 17:34 |
bauzas | but I haven't found a lot, if you still have the problem, you could try to pdb it | 17:35 |
bauzas | to find how it generates this template | 17:35 |
bauzas | if you can't, I can offer my help tomorrow | 17:35 |
sahid | no worries thanks to have looked at it. I will double check that tomorrow as-well, don't spend time on it I will ping you when it's ready :-) | 17:37 |
opendevreview | Sofia Enriquez proposed openstack/nova master: WIP: Implement encryption on backingStore https://review.opendev.org/c/openstack/nova/+/870012 | 18:28 |
opendevreview | Sahid Orentino Ferdjaoui proposed openstack/nova master: api: extend evacuate instance to support target state https://review.opendev.org/c/openstack/nova/+/858384 | 18:53 |
*** dasm is now known as dasm|off | 23:32 |
Generated by irclog2html.py 2.17.3 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!