)]}'
{"/PATCHSET_LEVEL":[{"author":{"_account_id":10239,"name":"Dmitry Tantsur","email":"dtantsur@protonmail.com","username":"dtantsur"},"change_message_id":"99fe87ab0a07a30f20c5fbca32491b9409421b9f","unresolved":false,"context_lines":[],"source_content_type":"","patch_set":1,"id":"46123ee2_cb9fc9c6","updated":"2023-12-11 11:58:18.000000000","message":"I know, I wanted to have something small that we can push through without a lot of potential argument.","commit_id":"177742ca55619c9c2626b33fb776589eb9248b96"},{"author":{"_account_id":15519,"name":"Iury Gregory Melo Ferreira","display_name":"Iury Gregory","email":"iurygregory@gmail.com","username":"iurygregory"},"change_message_id":"ccaaedf0497f75e89fcb2ec3c260f38b9e3e0dcd","unresolved":false,"context_lines":[],"source_content_type":"","patch_set":1,"id":"e7ad6bf5_75a1b063","updated":"2023-12-11 11:42:25.000000000","message":"Seems like this solves the issue on BFV job in ironic (based on the test result) https://review.opendev.org/c/openstack/ironic/+/903325","commit_id":"177742ca55619c9c2626b33fb776589eb9248b96"},{"author":{"_account_id":10239,"name":"Dmitry Tantsur","email":"dtantsur@protonmail.com","username":"dtantsur"},"change_message_id":"37dbb95c72bbdf5f5561170d120188571b0e5e99","unresolved":false,"context_lines":[],"source_content_type":"","patch_set":1,"id":"c0063782_f68d5c44","updated":"2023-12-11 11:19:54.000000000","message":"Seems to work in https://review.opendev.org/c/openstack/ironic/+/903325, please review.","commit_id":"177742ca55619c9c2626b33fb776589eb9248b96"},{"author":{"_account_id":15334,"name":"Stephen Finucane","display_name":"stephenfin","email":"stephenfin@redhat.com","username":"sfinucan"},"change_message_id":"af9904656f059a3885f14e3358506f2b9039e350","unresolved":false,"context_lines":[],"source_content_type":"","patch_set":1,"id":"ab904d1d_b3e65556","updated":"2023-12-11 11:56:10.000000000","message":"fwiw, this will also be fixed by https://review.opendev.org/c/openstack/nova/+/867798","commit_id":"177742ca55619c9c2626b33fb776589eb9248b96"},{"author":{"_account_id":10239,"name":"Dmitry Tantsur","email":"dtantsur@protonmail.com","username":"dtantsur"},"change_message_id":"408638163a3293e4a5464f11fad82ecb41ce82ec","unresolved":false,"context_lines":[],"source_content_type":"","patch_set":1,"id":"fd866279_5773866c","updated":"2023-12-11 12:45:26.000000000","message":"recheck","commit_id":"177742ca55619c9c2626b33fb776589eb9248b96"},{"author":{"_account_id":15519,"name":"Iury Gregory Melo Ferreira","display_name":"Iury Gregory","email":"iurygregory@gmail.com","username":"iurygregory"},"change_message_id":"908cb6760e5f47fdc3c70aa7e0e57b837323c4d3","unresolved":false,"context_lines":[],"source_content_type":"","patch_set":1,"id":"3acc0edc_bab22058","updated":"2023-12-12 13:21:53.000000000","message":"recheck I think zuul didn\u0027t run things","commit_id":"177742ca55619c9c2626b33fb776589eb9248b96"},{"author":{"_account_id":10342,"name":"Jay Faulkner","display_name":"JayF","email":"jay@jvf.cc","username":"JayF","status":"youtube.com/@oss-gr / podcast.gr-oss.io"},"change_message_id":"e5fa2e420962132246cad83bf188eb2f5b6057ad","unresolved":false,"context_lines":[],"source_content_type":"","patch_set":1,"id":"14b6dd1f_997c671c","updated":"2023-12-11 20:24:47.000000000","message":"recheck failure unrelated to and cannot be caused by ironic\u003c\u003enova driver changes","commit_id":"177742ca55619c9c2626b33fb776589eb9248b96"},{"author":{"_account_id":10342,"name":"Jay Faulkner","display_name":"JayF","email":"jay@jvf.cc","username":"JayF","status":"youtube.com/@oss-gr / podcast.gr-oss.io"},"change_message_id":"f455d5fced2a7d72d5907bb5659501ef66f082f7","unresolved":false,"context_lines":[],"source_content_type":"","patch_set":1,"id":"a954d7bc_d2786207","updated":"2023-12-12 18:49:13.000000000","message":"recheck failures unrelated to ironic driver","commit_id":"177742ca55619c9c2626b33fb776589eb9248b96"}],"nova/virt/ironic/driver.py":[{"author":{"_account_id":11604,"name":"sean mooney","email":"smooney@redhat.com","username":"sean-k-mooney"},"change_message_id":"2909f5974ebcfaed47e372cc17b6050991411357","unresolved":true,"context_lines":[{"line_number":207,"context_line":"                \u0027baremetal\u0027, check_service\u003dTrue)"},{"line_number":208,"context_line":"        return self._ironic_connection"},{"line_number":209,"context_line":""},{"line_number":210,"context_line":"    def _get_node(self, node_id):"},{"line_number":211,"context_line":"        \"\"\"Get a node by its UUID."},{"line_number":212,"context_line":""},{"line_number":213,"context_line":"           Some methods pass in variables named nodename, but are"},{"line_number":214,"context_line":"           actually UUID\u0027s."},{"line_number":215,"context_line":"        \"\"\""},{"line_number":216,"context_line":"        node \u003d self.ironic_connection.get_node(node_id, fields\u003d_NODE_FIELDS)"},{"line_number":217,"context_line":"        # TODO(dustinc): Make consumers use the right fields and remove this"},{"line_number":218,"context_line":"        node.uuid \u003d node.id"},{"line_number":219,"context_line":"        node.instance_uuid \u003d node.instance_id"},{"line_number":220,"context_line":"        node.maintenance \u003d node.is_maintenance"},{"line_number":221,"context_line":"        return node"},{"line_number":222,"context_line":""},{"line_number":223,"context_line":"    def _validate_instance_and_node(self, instance):"},{"line_number":224,"context_line":"        \"\"\"Get the node associated with the instance."}],"source_content_type":"text/x-python","patch_set":1,"id":"c1c5d91a_e694bf42","line":221,"range":{"start_line":210,"start_character":4,"end_line":221,"end_character":19},"updated":"2023-12-11 11:41:50.000000000","message":"ok this still used the sdk so ya that should be fine","commit_id":"177742ca55619c9c2626b33fb776589eb9248b96"}]}
