)]}'
{"/PATCHSET_LEVEL":[{"author":{"_account_id":22873,"name":"Martin Kopec","email":"mkopec@redhat.com","username":"mkopec"},"change_message_id":"8be1f0416426517fbd1291cd3e10ccc1e8935c7d","unresolved":false,"context_lines":[],"source_content_type":"","patch_set":1,"id":"4ef4e9d4_ab9eb706","updated":"2022-03-25 16:36:44.000000000","message":"makes sense, lgtm","commit_id":"48e9a7cc0db9731f6c7fd1ef706ce67e57b33dd8"},{"author":{"_account_id":22873,"name":"Martin Kopec","email":"mkopec@redhat.com","username":"mkopec"},"change_message_id":"a0563a17cc42712e92d02c3fd55a462c8082d238","unresolved":false,"context_lines":[],"source_content_type":"","patch_set":1,"id":"5f514df1_471db40a","updated":"2022-03-25 19:54:33.000000000","message":"oh, ack .. please mention what\u0027s wrong and need to be reworked, why etc .. me and anyone who finds this might wonder, thanks","commit_id":"48e9a7cc0db9731f6c7fd1ef706ce67e57b33dd8"},{"author":{"_account_id":28719,"name":"Phil Sphicas","email":"phil.sphicas@att.com","username":"ps3910"},"change_message_id":"7f8e7deafb03ea031209eff93f6a2232b1e5f04e","unresolved":false,"context_lines":[],"source_content_type":"","patch_set":1,"id":"c9672608_0e836cc3","updated":"2022-03-24 20:21:15.000000000","message":"recheck","commit_id":"48e9a7cc0db9731f6c7fd1ef706ce67e57b33dd8"},{"author":{"_account_id":28719,"name":"Phil Sphicas","email":"phil.sphicas@att.com","username":"ps3910"},"change_message_id":"c7e36b58b95cf1ea7696005a62987953448c3571","unresolved":false,"context_lines":[],"source_content_type":"","patch_set":1,"id":"46a73917_7636af45","updated":"2022-03-25 17:06:01.000000000","message":"sorry, this is wrong, needs rework.","commit_id":"48e9a7cc0db9731f6c7fd1ef706ce67e57b33dd8"},{"author":{"_account_id":8556,"name":"Ghanshyam Maan","display_name":"Ghanshyam Maan","email":"gmaan.os14@gmail.com","username":"ghanshyam"},"change_message_id":"63b8670c5cbcb7f83febb82d08562bbeaf73e3b3","unresolved":false,"context_lines":[],"source_content_type":"","patch_set":2,"id":"d4544ae5_63123035","updated":"2022-03-29 16:20:35.000000000","message":"lgtm","commit_id":"8e08a77eab9f8f13c3e81f2411cd567789b9a7e6"},{"author":{"_account_id":22873,"name":"Martin Kopec","email":"mkopec@redhat.com","username":"mkopec"},"change_message_id":"590578890d9dd29e6030d883dc4a24b8f78663a6","unresolved":false,"context_lines":[],"source_content_type":"","patch_set":2,"id":"d816cd39_22590a3c","updated":"2022-03-28 08:42:15.000000000","message":"lgtm, thanks ","commit_id":"8e08a77eab9f8f13c3e81f2411cd567789b9a7e6"},{"author":{"_account_id":28719,"name":"Phil Sphicas","email":"phil.sphicas@att.com","username":"ps3910"},"change_message_id":"e9d96144551dafa29e87af0949e959939b79f63c","unresolved":false,"context_lines":[],"source_content_type":"","patch_set":2,"id":"219ce2c7_4b6ea1dd","updated":"2022-03-30 01:28:23.000000000","message":"recheck","commit_id":"8e08a77eab9f8f13c3e81f2411cd567789b9a7e6"},{"author":{"_account_id":28719,"name":"Phil Sphicas","email":"phil.sphicas@att.com","username":"ps3910"},"change_message_id":"79212fc72a57d469568124146b9246541a9cc306","unresolved":false,"context_lines":[],"source_content_type":"","patch_set":2,"id":"4b10ddbc_04ae47a8","updated":"2022-03-26 02:38:59.000000000","message":"recheck","commit_id":"8e08a77eab9f8f13c3e81f2411cd567789b9a7e6"},{"author":{"_account_id":28719,"name":"Phil Sphicas","email":"phil.sphicas@att.com","username":"ps3910"},"change_message_id":"3821911b61a6d0c2f2b81187c2b8669c2099dbcf","unresolved":false,"context_lines":[],"source_content_type":"","patch_set":2,"id":"5e6af4ed_a10ed8a9","updated":"2022-03-29 22:43:17.000000000","message":"recheck","commit_id":"8e08a77eab9f8f13c3e81f2411cd567789b9a7e6"}],"tempest/common/compute.py":[{"author":{"_account_id":28719,"name":"Phil Sphicas","email":"phil.sphicas@att.com","username":"ps3910"},"change_message_id":"af8d0ff0c61c3f45264f0c314a1efba8471926be","unresolved":true,"context_lines":[{"line_number":395,"context_line":"        af, socktype, proto, _, sa \u003d res"},{"line_number":396,"context_line":"        client_socket \u003d socket.socket(af, socktype, proto)"},{"line_number":397,"context_line":"        if url.scheme \u003d\u003d \u0027https\u0027:"},{"line_number":398,"context_line":"            client_socket \u003d ssl.wrap_socket(client_socket,"},{"line_number":399,"context_line":"                                            server_hostname\u003durl.hostname)"},{"line_number":400,"context_line":"        client_socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)"},{"line_number":401,"context_line":"        try:"},{"line_number":402,"context_line":"            client_socket.connect(sa)"}],"source_content_type":"text/x-python","patch_set":1,"id":"3ca95439_6de9e21a","line":399,"range":{"start_line":398,"start_character":0,"end_line":399,"end_character":2},"updated":"2022-03-25 21:53:00.000000000","message":"ssl.wrap_socket does not accept the server_hostname parameter at all, it should have been an SSLContext instance, as pointed out here: https://review.opendev.org/c/openstack/tempest/+/835271\n\nhttps://docs.python.org/3/library/ssl.html#ssl.wrap_socket\nhttps://docs.python.org/3/library/ssl.html#ssl.SSLContext.wrap_socket","commit_id":"48e9a7cc0db9731f6c7fd1ef706ce67e57b33dd8"},{"author":{"_account_id":28719,"name":"Phil Sphicas","email":"phil.sphicas@att.com","username":"ps3910"},"change_message_id":"531b41ff9f823bfedb2ff06de998ae2fb732e16d","unresolved":false,"context_lines":[{"line_number":395,"context_line":"        af, socktype, proto, _, sa \u003d res"},{"line_number":396,"context_line":"        client_socket \u003d socket.socket(af, socktype, proto)"},{"line_number":397,"context_line":"        if url.scheme \u003d\u003d \u0027https\u0027:"},{"line_number":398,"context_line":"            client_socket \u003d ssl.wrap_socket(client_socket,"},{"line_number":399,"context_line":"                                            server_hostname\u003durl.hostname)"},{"line_number":400,"context_line":"        client_socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)"},{"line_number":401,"context_line":"        try:"},{"line_number":402,"context_line":"            client_socket.connect(sa)"}],"source_content_type":"text/x-python","patch_set":1,"id":"c2825553_537220d7","line":399,"range":{"start_line":398,"start_character":0,"end_line":399,"end_character":2},"in_reply_to":"3ca95439_6de9e21a","updated":"2022-03-25 22:02:34.000000000","message":"Done","commit_id":"48e9a7cc0db9731f6c7fd1ef706ce67e57b33dd8"},{"author":{"_account_id":22873,"name":"Martin Kopec","email":"mkopec@redhat.com","username":"mkopec"},"change_message_id":"590578890d9dd29e6030d883dc4a24b8f78663a6","unresolved":false,"context_lines":[{"line_number":395,"context_line":"        af, socktype, proto, _, sa \u003d res"},{"line_number":396,"context_line":"        client_socket \u003d socket.socket(af, socktype, proto)"},{"line_number":397,"context_line":"        if url.scheme \u003d\u003d \u0027https\u0027:"},{"line_number":398,"context_line":"            client_socket \u003d ssl.wrap_socket(client_socket,"},{"line_number":399,"context_line":"                                            server_hostname\u003durl.hostname)"},{"line_number":400,"context_line":"        client_socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)"},{"line_number":401,"context_line":"        try:"},{"line_number":402,"context_line":"            client_socket.connect(sa)"}],"source_content_type":"text/x-python","patch_set":1,"id":"aaf28e74_a434eba9","line":399,"range":{"start_line":398,"start_character":0,"end_line":399,"end_character":2},"in_reply_to":"c2825553_537220d7","updated":"2022-03-28 08:42:15.000000000","message":"oh, right! I missed that, thanks","commit_id":"48e9a7cc0db9731f6c7fd1ef706ce67e57b33dd8"}]}
