From 747d24fcb842a8903f91325ae56dd80996e00be6 Mon Sep 17 00:00:00 2001 From: Akashdeep Dhar Date: Mon, 4 Mar 2024 16:38:02 +0530 Subject: [PATCH 1/2] Clean statutory rate limit addressing functions Signed-off-by: Akashdeep Dhar --- pagure_exporter/conf/standard.py | 4 - pagure_exporter/view/tkts.py | 17 --- test/test_unit_tkts.py | 182 ++----------------------------- 3 files changed, 12 insertions(+), 191 deletions(-) diff --git a/pagure_exporter/conf/standard.py b/pagure_exporter/conf/standard.py index 1db905f..0082802 100644 --- a/pagure_exporter/conf/standard.py +++ b/pagure_exporter/conf/standard.py @@ -125,10 +125,6 @@ # Time in seconds to wait for when the rate limit for API requests is reached waittime = 60 -# Rate limit for API requests as defined by the destination forge -# See https://github.com/fedora-infra/pagure-exporter/issues/60#issuecomment-1820304156 -ratebond = 195 - # Current count of branches on the namespaces to be transferred tnfsindx = 0 diff --git a/pagure_exporter/view/tkts.py b/pagure_exporter/view/tkts.py index 100b10d..4a6e97a 100644 --- a/pagure_exporter/view/tkts.py +++ b/pagure_exporter/view/tkts.py @@ -22,23 +22,12 @@ import sys -import time from pagure_exporter.conf import standard from pagure_exporter.view.dcrt import failure, general, section, success, warning from pagure_exporter.work.tkts import MoveTkts -def callwait(): - if standard.rateindx == standard.ratebond: - warning(f"Rate limit reached - {standard.ratebond} API requests made...") - general( - f"Waiting for {standard.waittime} second(s) and resetting the counter before resuming the transfer process" # noqa: E501 - ) - time.sleep(standard.waittime) - standard.rateindx = 0 - - def showtkts(): moveobjc = MoveTkts() section("Attempting source namespace issue ticket count...") @@ -67,7 +56,6 @@ def showtkts(): f"page in {pagerslt[2]} second(s)" ) for jndx in standard.pagerslt: - callwait() issurslt = moveobjc.itertkts(jndx) section( f"Migrating issue ticket {'with' if standard.movetags else 'without'} " # noqa: E501 @@ -77,7 +65,6 @@ def showtkts(): if issurslt[0] == 201: general(f"Migrated to {issurslt[1]} in {issurslt[2]} second(s)") if standard.movestat: - callwait() section("Asserting issue ticket status...") statrslt = moveobjc.iterstat() if statrslt[0] == 200: @@ -103,7 +90,6 @@ def showtkts(): f"Found {len(standard.issucmts)} entities in 0.00 second(s)" ) for kndx in standard.issucmts: - callwait() cmtsrslt = moveobjc.itercmts(kndx) section( f"Transferring comment (Entity {standard.cmtsqant} of " @@ -156,7 +142,6 @@ def showtkts(): if tkidrslt[0] == 200: if not tkidrslt[1]: general(f"Information retrieved in {tkidrslt[2]} second(s)") - callwait() issurslt = moveobjc.itertkts(standard.issurslt) section( f"Migrating issue ticket {'with' if standard.movetags else 'without'} " @@ -166,7 +151,6 @@ def showtkts(): if issurslt[0] == 201: general(f"Migrated to {issurslt[1]} in {issurslt[2]} second(s)") if standard.movestat: - callwait() section("Asserting issue ticket status...") statrslt = moveobjc.iterstat() if statrslt[0] == 200: @@ -190,7 +174,6 @@ def showtkts(): standard.issucmts = standard.issurslt["comments"] general(f"Found {len(standard.issucmts)} entities in 0.00 second(s)") for kndx in standard.issucmts: - callwait() cmtsrslt = moveobjc.itercmts(kndx) section( f"Transferring comment (Entity {standard.cmtsqant} of {len(standard.issucmts)})..." # noqa: E501 diff --git a/test/test_unit_tkts.py b/test/test_unit_tkts.py index a45fb11..790326a 100644 --- a/test/test_unit_tkts.py +++ b/test/test_unit_tkts.py @@ -21,14 +21,13 @@ """ -from datetime import datetime from os import environ as envr -from time import time import pytest +from gitlab import Gitlab as gtlb +from requests import Session from pagure_exporter.conf import standard -from pagure_exporter.view.tkts import callwait from pagure_exporter.work.tkts import MoveTkts @@ -444,176 +443,19 @@ def test_unit_itertkts(caplog, srce, dest, pkey, gkey, fusr, tusr, data, root, t standard.paguuser, standard.pagucode, standard.srcename = fusr, pkey, srce standard.gtlbuser, standard.gtlbcode, standard.destname = tusr, gkey, dest standard.gtlblink, standard.movetags = root, tags - test_movetkts = MoveTkts() - assert rslt == test_movetkts.itertkts(data)[0] # noqa: S101 - - # Changing the shared variable back to its default - # Please check https://github.com/gridhead/protop2g/issues/35 for additional details - standard.gtlblink = "https://gitlab.com/api/v4/projects" - - -@pytest.mark.vcr(filter_headers=["Authorization", "PRIVATE-TOKEN"]) -@pytest.mark.parametrize( - "srce, dest, pkey, gkey, fusr, tusr, data, root, tkid, rslt", - [ - pytest.param( - envr["TEST_SRCE"], - envr["TEST_DEST"], - envr["TEST_PKEY"], - envr["TEST_GKEY"], - envr["TEST_FUSR"], - envr["TEST_TUSR"], - { - "comment": f"This test comment with broken links was created on {datetime.utcfromtimestamp(int(time())).strftime('%c')}.", # noqa: E501 - "date_created": str(int(time())), - "edited_on": None, - "editor": None, - "id": 878473, - "notification": False, - "parent": None, - "reactions": {}, - "user": { - "full_url": "https://fedoraproject.org", - "fullname": "Ordinary Engineer", - "name": "ordinaryengineer", - "url_path": "user/ordinaryengineer", - }, - }, - "https://gitlab.com/api/v4/projects", - 1, - 201, - id="Attempting to migrate an existing comment to an existing namespace", - ), - pytest.param( - envr["TEST_SRCE"], - envr["TEST_DEST"], - envr["TEST_PKEY"], - envr["TEST_GKEY"], - envr["TEST_FUSR"], - envr["TEST_TUSR"], - { - "Is this a valid format?": False, - }, - "https://gitlab.com/api/v4/projects", - False, - False, - id="Attempting to migrate an invalid comment to an existing namespace", - ), - ], -) -def test_unit_itercmts(caplog, srce, dest, pkey, gkey, fusr, tusr, data, root, tkid, rslt): - standard.paguuser, standard.pagucode, standard.srcename = fusr, pkey, srce - standard.gtlbuser, standard.gtlbcode, standard.destname = tusr, gkey, dest - standard.gtlbtkid, standard.gtlblink = tkid, root - test_movetkts = MoveTkts() - assert rslt == test_movetkts.itercmts(data)[0] # noqa: S101 - - # Changing the shared variable back to its default - # Please check https://github.com/gridhead/protop2g/issues/35 for additional details - standard.gtlblink = "https://gitlab.com/api/v4/projects" - -@pytest.mark.vcr(filter_headers=["Authorization", "PRIVATE-TOKEN"]) -@pytest.mark.parametrize( - "srce, dest, pkey, gkey, fusr, tusr, root, tkid, shut, rslt", - [ - pytest.param( - envr["TEST_SRCE"], - envr["TEST_DEST"], - envr["TEST_PKEY"], - envr["TEST_GKEY"], - envr["TEST_FUSR"], - envr["TEST_TUSR"], - "https://gitlab.com/api/v4/projects", - 1, - True, - 200, - id="Attempting to migrate status of an existing issue ticket when requested on an existing namespace", # noqa: E501 - ), - pytest.param( - envr["TEST_SRCE"], - envr["TEST_DEST"], - envr["TEST_PKEY"], - envr["TEST_GKEY"], - envr["TEST_FUSR"], - envr["TEST_TUSR"], - "https://gitlab.com/api/v4/projects", - 0, - True, - False, - id="Attempting to migrate status of an invalid issue ticket when requested on an existing namespace", # noqa: E501 - ), - pytest.param( - envr["TEST_SRCE"], - envr["TEST_DEST"], - envr["TEST_PKEY"], - envr["TEST_GKEY"], - envr["TEST_FUSR"], - envr["TEST_TUSR"], - "https://gitlab.com/api/v4/projects", - 1, - False, - 0, - id="Attempting to migrate status of an existing issue ticket when not asked on an existing namespace", # noqa: E501 - ), - ], -) -def test_unit_iterstat(caplog, srce, dest, pkey, gkey, fusr, tusr, root, tkid, shut, rslt): - standard.paguuser, standard.pagucode, standard.srcename = fusr, pkey, srce - standard.gtlbuser, standard.gtlbcode, standard.destname = tusr, gkey, dest - standard.gtlbtkid, standard.gtlblink, standard.isclosed = tkid, root, shut + keepsake_gpro = standard.gpro + standard.gpro = gtlb( + session=Session(), + url="https://gitlab.com", + private_token=standard.gtlbcode, + retry_transient_errors=True, + timeout=standard.rqsttime, + ).projects.get(id=standard.destname) test_movetkts = MoveTkts() - - assert rslt == test_movetkts.iterstat()[0] # noqa: S101 + assert rslt == test_movetkts.itertkts(data)[0] # noqa: S101 # Changing the shared variable back to its default # Please check https://github.com/gridhead/protop2g/issues/35 for additional details standard.gtlblink = "https://gitlab.com/api/v4/projects" - - -@pytest.mark.parametrize( - "rateindx, ratebond, waittime, text", - [ - pytest.param( - 1, - 5, - 2, - [], - id="Testing to avoid waiting as the rate limit has not been reached", - ), - pytest.param( - 5, - 5, - 2, - [ - "Rate limit reached - {ratebond} API requests made...", - "Waiting for {waittime} second(s) and resetting the counter before resuming the transfer process", # noqa: E501 - ], - id="Testing to assert waiting as the rate limit has been reached", - ), - ], -) -def test_unit_callwait(caplog, rateindx, ratebond, waittime, text): - standard.rateindx, standard.ratebond, standard.waittime = rateindx, ratebond, waittime - - strttime = time() - callwait() - stoptime = time() - - if rateindx < ratebond: - assert (stoptime - strttime) <= standard.waittime # noqa: S101 - assert standard.rateindx == 1 # noqa: S101 - - if rateindx == ratebond: - assert (stoptime - strttime) >= standard.waittime # noqa: S101 - assert standard.rateindx == 0 # noqa: S101 - - if rateindx == ratebond: - text[0], text[1] = text[0].format(ratebond=ratebond), text[1].format(waittime=waittime) - - for indx in text: - assert indx in caplog.text # noqa: S101 - - # Changing the shared variable back to its default - # Please check https://github.com/gridhead/protop2g/issues/35 for additional details - standard.rateindx, standard.ratebond, standard.waittime = 0, 500, 60 + standard.gpro = keepsake_gpro From 5ccbc21ba6ba11364a72c1433a8202073766f81c Mon Sep 17 00:00:00 2001 From: Akashdeep Dhar Date: Mon, 4 Mar 2024 16:58:20 +0530 Subject: [PATCH 2/2] Rework the recordings to address the changed tests Signed-off-by: Akashdeep Dhar --- ...on namespace using wrong credentials].yaml | 20 +- ...source namespace that does not exist].yaml | 6 +- ...nation namespace that does not exist].yaml | 22 +- ..., without privacy and without states].yaml | 796 +-- ...without privacy and without comments].yaml | 154 +- ..., without privacy and without labels].yaml | 270 +- ...ies of which fall in the given range].yaml | 96 +- ...of which fall in the given selection].yaml | 94 +- ...without privacy and without comments].yaml | 154 +- ..., without privacy and without states].yaml | 361 +- ...without privacy and without comments].yaml | 94 +- ... without comments and without labels].yaml | 96 +- ..., without privacy and without labels].yaml | 98 +- ...ies of which fall in the given range].yaml | 69 +- ...of which fall in the given selection].yaml | 69 +- ...without privacy and without comments].yaml | 94 +- ..., without privacy and without states].yaml | 469 +- ...without privacy and without comments].yaml | 98 +- ... without comments and without labels].yaml | 94 +- ..., without privacy and without labels].yaml | 208 +- ...ies of which fall in the given range].yaml | 69 +- ...of which fall in the given selection].yaml | 67 +- ...without privacy and without comments].yaml | 100 +- ...t without labels and without privacy].yaml | 226 +- ...ments when SHUT status is prescribed].yaml | 34 +- ...t without labels and without privacy].yaml | 342 +- ...valid issue tracker of longer length].yaml | 5909 +++++++++-------- ...alid issue tracker of smaller length].yaml | 6 +- ...g issue tracker on an existing forge].yaml | 6 +- ...d issue tracker on an existing forge].yaml | 6 +- ...ing comment to an existing namespace].yaml | 167 - ...isting identity with matching status].yaml | 6 +- ...isting identity with mismatch status].yaml | 6 +- ...sue ticket with the invalid identity].yaml | 6 +- ...d issue tracker on an existing forge].yaml | 6 +- ...g issue tracker on an existing forge].yaml | 6 +- ...sting issue tracker for OPEN tickets].yaml | 6 +- ...sting issue tracker for SHUT tickets].yaml | 6 +- ...[Setting an invalid `pagesize` value].yaml | 6 +- ...g issue tracker on an existing forge].yaml | 6 +- ...d issue tracker on an existing forge].yaml | 6 +- ...n requested on an existing namespace].yaml | 170 - ...n requested on an existing namespace].yaml | 67 - ...t with tags to an existing namespace].yaml | 101 +- ...ithout tags to an existing namespace].yaml | 101 +- 45 files changed, 5538 insertions(+), 5255 deletions(-) delete mode 100644 test/cassettes/test_unit_tkts/test_unit_itercmts[Attempting to migrate an existing comment to an existing namespace].yaml delete mode 100644 test/cassettes/test_unit_tkts/test_unit_iterstat[Attempting to migrate status of an existing issue ticket when requested on an existing namespace].yaml delete mode 100644 test/cassettes/test_unit_tkts/test_unit_iterstat[Attempting to migrate status of an invalid issue ticket when requested on an existing namespace].yaml diff --git a/test/cassettes/test_stat/test_stat_destdata_obtninfo[Checking for possible errors while attempting to authenticate in the destination namespace using wrong credentials].yaml b/test/cassettes/test_stat/test_stat_destdata_obtninfo[Checking for possible errors while attempting to authenticate in the destination namespace using wrong credentials].yaml index 356824f..3a1fac3 100644 --- a/test/cassettes/test_stat/test_stat_destdata_obtninfo[Checking for possible errors while attempting to authenticate in the destination namespace using wrong credentials].yaml +++ b/test/cassettes/test_stat/test_stat_destdata_obtninfo[Checking for possible errors while attempting to authenticate in the destination namespace using wrong credentials].yaml @@ -34,14 +34,14 @@ interactions: Content-Length: - '902' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-3iQkbdjullDxP2az3fv0yjZd5'; style-src - 'self' 'nonce-3iQkbdjullDxP2az3fv0yjZd5'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-EevIx0Ka0FRoI0p6gATbOMHJW'; style-src + 'self' 'nonce-EevIx0Ka0FRoI0p6gATbOMHJW'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:02 GMT + - Mon, 04 Mar 2024 11:20:45 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -84,7 +84,7 @@ interactions: CF-Cache-Status: - MISS CF-RAY: - - 859636be2a8f94bf-CCU + - 85f17aa0985d93c5-CCU Connection: - keep-alive Content-Length: @@ -92,11 +92,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:03 GMT + - Mon, 04 Mar 2024 11:20:47 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=%2BYbUf%2BqttsXwZSTmmhMzV6BQUPxhUTdOHWhguzRe7l9CsqDuLrrOr4ZVLjy2ZajD5NEkuapDoBQKSJ1vmx4i%2Fvxl65wdyFEqGH1lOf6b718CZyShUB%2F81oPkIl1JUBbKuf3KMqDq%2Bxs%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=i18MUvBU0VxApaaL9X%2B%2BZa81j4yo1C1Qxro%2FMJKd7ehOMyF6kkYwOKoLZx5s1fE7%2FuG3gW2WckjraCkeb0WgeBmLfh0XVUdSWH8xEAxlZRwYwGSGD%2FL9B05WHODKWMTDlt7Gh5SmDAU%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -105,7 +105,7 @@ interactions: content-security-policy: - default-src 'none' gitlab-lb: - - haproxy-main-33-lb-gprd + - haproxy-main-12-lb-gprd gitlab-sv: - api-gke-us-east1-b referrer-policy: @@ -119,11 +119,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"197a17051210f1a341629ee0271ca983","version":"1"}' + - '{"correlation_id":"b5e1a7dacc7759a08ecb68794a542d3f","version":"1"}' x-request-id: - - 197a17051210f1a341629ee0271ca983 + - b5e1a7dacc7759a08ecb68794a542d3f x-runtime: - - '0.019982' + - '0.021484' status: code: 401 message: Unauthorized diff --git a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets from a source namespace that does not exist].yaml b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets from a source namespace that does not exist].yaml index 5071ad6..b581599 100644 --- a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets from a source namespace that does not exist].yaml +++ b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets from a source namespace that does not exist].yaml @@ -21,14 +21,14 @@ interactions: Content-Length: - '66' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-1cPl45KPL1XljMh6HeTWqtX1f'; style-src - 'self' 'nonce-1cPl45KPL1XljMh6HeTWqtX1f'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-EqK8qBKV7VbLC2XnbkRMkm6EV'; style-src + 'self' 'nonce-EqK8qBKV7VbLC2XnbkRMkm6EV'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:25 GMT + - Mon, 04 Mar 2024 11:21:14 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: diff --git a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets to a destination namespace that does not exist].yaml b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets to a destination namespace that does not exist].yaml index bdd6a8e..ad6bdcf 100644 --- a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets to a destination namespace that does not exist].yaml +++ b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets to a destination namespace that does not exist].yaml @@ -34,14 +34,14 @@ interactions: Content-Length: - '902' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-yT5SVeHoBnIMuKGJTYFJbnvIP'; style-src - 'self' 'nonce-yT5SVeHoBnIMuKGJTYFJbnvIP'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-Mdd9YBY4dlVGRKqd1Wl7udTfR'; style-src + 'self' 'nonce-Mdd9YBY4dlVGRKqd1Wl7udTfR'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:26 GMT + - Mon, 04 Mar 2024 11:21:16 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -84,7 +84,7 @@ interactions: CF-Cache-Status: - MISS CF-RAY: - - 859637569bf594be-CCU + - 85f17b55ad9894b0-CCU Connection: - keep-alive Content-Length: @@ -92,11 +92,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:27 GMT + - Mon, 04 Mar 2024 11:21:16 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=H80VxgDn4kpKGhUHBDs3gCiuUS6E6IndHiUCGTsyvLjUMVe2S8qgRjYh2ueRiHdPtVVl9eXJalSCU%2F5sZ%2BSYWuGGcXroBxRFY7K3%2FM4s9LwwnnvFpYHe4Rj74oO9QhE9uk2LdkTsZqw%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=usHSKh04sFoN4KG5mEr8dRVoTN%2BrarHqh7dClHkXD6w7fH%2FkndkqF5kDUR3eyXB3ELDSHvXTE%2FLjPuCS2shTgU5MdCM67KbOlSJeAouWJ9yjK4tMa9fibtKU1Zd2C3zDIiez8IwW5bc%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -105,9 +105,9 @@ interactions: content-security-policy: - default-src 'none' gitlab-lb: - - haproxy-main-39-lb-gprd + - haproxy-main-55-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -119,11 +119,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"8d0db6fcfc55f80560df54fd9392fab8","version":"1"}' + - '{"correlation_id":"88f21d2ebcf80fc92b28937c6eb2e1a3","version":"1"}' x-request-id: - - 8d0db6fcfc55f80560df54fd9392fab8 + - 88f21d2ebcf80fc92b28937c6eb2e1a3 x-runtime: - - '0.044481' + - '0.045448' status: code: 404 message: Not Found diff --git a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with FULL status along with comments but without labels, without privacy and without states].yaml b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with FULL status along with comments but without labels, without privacy and without states].yaml index 62a5628..3892260 100644 --- a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with FULL status along with comments but without labels, without privacy and without states].yaml +++ b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with FULL status along with comments but without labels, without privacy and without states].yaml @@ -34,14 +34,14 @@ interactions: Content-Length: - '902' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-s7CbAwwwoccdb2Ct7Dsln1xBO'; style-src - 'self' 'nonce-s7CbAwwwoccdb2Ct7Dsln1xBO'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-vUED6DAKrPLUpUZmzNIU7Uz6D'; style-src + 'self' 'nonce-vUED6DAKrPLUpUZmzNIU7Uz6D'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:40 GMT + - Mon, 04 Mar 2024 11:23:43 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -80,14 +80,14 @@ interactions: response: body: string: '{"id":42823949,"description":null,"name":"protop2g-test","name_with_namespace":"Akashdeep - Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-02-22T09:31:08.610Z","namespace":{"id":13984834,"name":"Akashdeep + Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-03-04T11:20:52.799Z","namespace":{"id":13984834,"name":"Akashdeep Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"container_registry_image_prefix":"registry.gitlab.com/gridhead/protop2g-test","_links":{"self":"https://gitlab.com/api/v4/projects/42823949","issues":"https://gitlab.com/api/v4/projects/42823949/issues","merge_requests":"https://gitlab.com/api/v4/projects/42823949/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/42823949/repository/branches","labels":"https://gitlab.com/api/v4/projects/42823949/labels","events":"https://gitlab.com/api/v4/projects/42823949/events","members":"https://gitlab.com/api/v4/projects/42823949/members","cluster_agents":"https://gitlab.com/api/v4/projects/42823949/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"public","owner":{"id":10115999,"username":"gridhead","name":"Akashdeep - Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":5447,"description_html":"","updated_at":"2024-02-22T09:31:08.610Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":null}}' + Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":27,"description_html":"","updated_at":"2024-03-04T11:20:52.799Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":50,"notification_level":3},"group_access":null}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963a9addc594b9-CCU + - 85f17eecae8093bb-CCU Connection: - keep-alive Content-Encoding: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:41 GMT + - Mon, 04 Mar 2024 11:23:43 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=TFcD9%2BV8yMtZqvt3um0%2B8W0wAWYExxhOqVs4GYB4%2BipgfiSx6qMHGvWABNoHeUT%2Fid0%2BtRY4S1VQC2p6BYKkExoEFd9N1k5JJ9nhk7fdAwSMS8vbTDXxlIkHQduE5nZWol5B1QmNHDE%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=UEnj9C2XIaF2mR29UiSbXZHzidYRgJSVyWcdO49HSksONwAjidhZfqptPx5rUvbQltxxNQzkY9OMWB7HHU0IuiTNtSygVLMgUUzzj6l2a70WzupgAmQrGggCVAtaV2SMWtP3OrMJujg%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -110,11 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"cdc8c07e99aa75fceef79fcd4ffc6eab" + - W/"05e721c03979544254e49be752cfb0e3" gitlab-lb: - - haproxy-main-15-lb-gprd + - haproxy-main-29-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -126,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"c09becb645a08e728289a87805bf25f4","version":"1"}' + - '{"correlation_id":"e825a9d9161f0a95cf914896c083d9df","version":"1"}' x-request-id: - - c09becb645a08e728289a87805bf25f4 + - e825a9d9161f0a95cf914896c083d9df x-runtime: - - '0.210302' + - '0.142383' status: code: 200 message: OK @@ -300,14 +300,14 @@ interactions: Content-Length: - '10774' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-B4NNsZ96XNzSRhCGUeK2Gw8ZE'; style-src - 'self' 'nonce-B4NNsZ96XNzSRhCGUeK2Gw8ZE'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-8TDeEbZxng9wDqhW8SdeCMbYQ'; style-src + 'self' 'nonce-8TDeEbZxng9wDqhW8SdeCMbYQ'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:42 GMT + - Mon, 04 Mar 2024 11:23:44 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -494,14 +494,14 @@ interactions: Content-Length: - '10774' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-1tJjPteZzt5pyscsLBghdQQJF'; style-src - 'self' 'nonce-1tJjPteZzt5pyscsLBghdQQJF'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-F3MIeextmdQDL8FsMNRd1aDzM'; style-src + 'self' 'nonce-F3MIeextmdQDL8FsMNRd1aDzM'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:43 GMT + - Mon, 04 Mar 2024 11:23:46 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -541,38 +541,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + - _cfuvid=YieQ.47N9NRdlpbb_bni0sG7kCsoKb0HeEVuE1VFi9E-1709551423936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497593,"iid":13157,"project_id":42823949,"title":"[SN#4] This + string: '{"id":142912489,"iid":13539,"project_id":42823949,"title":"[SN#4] This is the title of the fourth test issue","description":"\nThis is the body of the fourth test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/4) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Tue Nov 21 08:06:56 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-06)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:33:44.665Z","updated_at":"2024-02-22T09:33:44.665Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13157","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13157","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13157/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13157/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13157","relative":"#13157","full":"gridhead/protop2g-test#13157"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:23:47.627Z","updated_at":"2024-03-04T11:23:47.627Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13539","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13539","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13539/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13539/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13539","relative":"#13539","full":"gridhead/protop2g-test#13539"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963aae7ad293c1-CCU + - 85f17f03e9ff94d0-CCU Connection: - keep-alive Content-Length: - - '2192' + - '2224' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:45 GMT + - Mon, 04 Mar 2024 11:23:48 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Kq2oF2IQ1Qfa8Y5Lissl1DM7To0g4YhuIpkbDoCw9j1wHTiFeuMRYaJy%2BKTJuTo6YWcppKSlWFKBfhH4ml2pLlXR3M8eEo2L1FQqQqWmn0L1G3rVd%2F9wNm7MiL6pSp%2Fcbv0Lx0g5cTk%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=9ucHDnISWKJq%2Bo5dpl8aRtcS2gqXteCPh4jiM2RSNXHCPOsCQfsf0bxA9PLGJf5AG1jTwPst4y%2B%2Fx7eHAa5XLZyw4H1DYzb%2FgYbSJTWSyW3T3UDZDuzjvJJO%2FUh9aMYv10UNLIK6i%2B4%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -581,11 +582,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"c1f2ba9008664932db00fa972f7dc30f" + - W/"e66b3dc48e5701aa192bbc41984d7285" gitlab-lb: - - haproxy-main-58-lb-gprd + - haproxy-main-11-lb-gprd gitlab-sv: - - api-gke-us-east1-c + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -597,11 +598,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"027e9aaf2a121c3c3a9be972e88002bc","version":"1"}' + - '{"correlation_id":"8e2b60194fd1e748e81cd2d0910759cd","version":"1"}' x-request-id: - - 027e9aaf2a121c3c3a9be972e88002bc + - 8e2b60194fd1e748e81cd2d0910759cd x-runtime: - - '0.612520' + - '0.914335' status: code: 201 message: Created @@ -617,26 +618,27 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + - _cfuvid=YieQ.47N9NRdlpbb_bni0sG7kCsoKb0HeEVuE1VFi9E-1709551423936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13157 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13539 response: body: - string: '{"id":142497593,"iid":13157,"project_id":42823949,"title":"[SN#4] This + string: '{"id":142912489,"iid":13539,"project_id":42823949,"title":"[SN#4] This is the title of the fourth test issue","description":"\nThis is the body of the fourth test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/4) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Tue Nov 21 08:06:56 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-06)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:33:44.665Z","updated_at":"2024-02-22T09:33:44.665Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13157","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13157","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13157/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13157/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13157","relative":"#13157","full":"gridhead/protop2g-test#13157"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:23:47.627Z","updated_at":"2024-03-04T11:23:47.627Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13539","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13539","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13539/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13539/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13539","relative":"#13539","full":"gridhead/protop2g-test#13539"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963ab4a9cb93bb-CCU + - 85f17f0bcc3694bf-CCU Connection: - keep-alive Content-Encoding: @@ -644,11 +646,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:45 GMT + - Mon, 04 Mar 2024 11:23:48 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=t3XTgIy4iTs%2BGpiNp%2FqnaiZMeVrUoKu98%2BVZBlH%2FSfX1wHnYZBEj29lmWQ0POX1zZO8LdfAqRQOk9npJNXXpwDHeuVrlBYG3s2QDuQ6MSf3VWtRSxPGcttAtX7PKE0FbpOnhJncFCFk%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=mrHVrulRSoo8HK%2BcC0CR8epRZlFIfRZhSv9PswbfTqwoofD8h3SqsGcTjtSWoH7CKVTwntnU%2B5Vl%2FLj4F6Og8AOKeHG9vZQQFgmCLU1d2X21U%2BpVKxYGXkCC7NgDxopdFE8nyvPWmhs%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -659,11 +661,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"c1f2ba9008664932db00fa972f7dc30f" + - W/"e66b3dc48e5701aa192bbc41984d7285" gitlab-lb: - - haproxy-main-18-lb-gprd + - haproxy-main-25-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -675,11 +677,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"a50aae8a2ac7794b9b08978214e6cea7","version":"1"}' + - '{"correlation_id":"9c23481aea48b704e9ae8641292c93da","version":"1"}' x-request-id: - - a50aae8a2ac7794b9b08978214e6cea7 + - 9c23481aea48b704e9ae8641292c93da x-runtime: - - '0.195151' + - '0.121003' status: code: 200 message: OK @@ -702,25 +704,25 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + - _cfuvid=YieQ.47N9NRdlpbb_bni0sG7kCsoKb0HeEVuE1VFi9E-1709551423936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/13157/discussions + uri: https://gitlab.com/api/v4/projects/42823949/issues/13539/discussions response: body: - string: '{"id":"9ca857c7d810324f68accb1d70f87641b2186b25","individual_note":false,"notes":[{"id":1784525781,"type":"DiscussionNote","body":"\nThis + string: '{"id":"59b54e0c4e0151a6a714fa816514438e3cda0406","individual_note":false,"notes":[{"id":1799293249,"type":"DiscussionNote","body":"\nThis is the first comment under the fourth test issue\n\n_This comment was originally created [here](https://pagure.io/protop2g-test-srce/issue/4#comment-885231) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) under\n[this](https://pagure.io/protop2g-test-srce/issue/4) issue ticket on a Pagure repository, [**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) on\n[**Tue Nov 21 08:07:25 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-07)._\n\n_This - comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2024-02-22T09:33:46.084Z","updated_at":"2024-02-22T09:33:46.084Z","system":false,"noteable_id":142497593,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13157,"commands_changes":{}}]}' + comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"created_at":"2024-03-04T11:23:49.676Z","updated_at":"2024-03-04T11:23:49.676Z","system":false,"noteable_id":142912489,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13539,"commands_changes":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963ab83a7693c1-CCU + - 85f17f0f694b94bc-CCU Connection: - keep-alive Content-Length: @@ -728,11 +730,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:46 GMT + - Mon, 04 Mar 2024 11:23:50 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=itn%2F9xVKE7qE6l9UiVRtZKTx3Z27TFHZIbwZAjS4cb83GayGI8tjyDOeFb4qx9%2FTcDAKPv49aQgORhDyew9u0PhXipGrKBe%2BdO6fmCbyrX6mUpyldNb9L49Lj2u4wjjUXJAZ%2BWRuGh8%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=pWl4qGeWMkfAmBZYxHn3ezPbbXwodrU7REUh8uR%2BelcyddoIUe3KotKDL7zkRCdgJa9JMU4myoaZApL5P7x8gJ46060COxUnMvqwvF%2F0yXTeQH0OxRjJ6MjFT1dTGAD3ovlZM2Vfefg%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -741,11 +743,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"fe1dfb8e7e60e309c5ab62874e86497b" + - W/"19bd1dc4d29d31de34a30e947376a1d6" gitlab-lb: - - haproxy-main-22-lb-gprd + - haproxy-main-27-lb-gprd gitlab-sv: - - api-gke-us-east1-c + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -757,11 +759,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"1b9e88c1698067cc4564b89b46e3680d","version":"1"}' + - '{"correlation_id":"4ca882752e806b93fbee191d83cae16e","version":"1"}' x-request-id: - - 1b9e88c1698067cc4564b89b46e3680d + - 4ca882752e806b93fbee191d83cae16e x-runtime: - - '0.672392' + - '0.766920' status: code: 201 message: Created @@ -777,26 +779,27 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + - _cfuvid=YieQ.47N9NRdlpbb_bni0sG7kCsoKb0HeEVuE1VFi9E-1709551423936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13157 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13539 response: body: - string: '{"id":142497593,"iid":13157,"project_id":42823949,"title":"[SN#4] This + string: '{"id":142912489,"iid":13539,"project_id":42823949,"title":"[SN#4] This is the title of the fourth test issue","description":"\nThis is the body of the fourth test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/4) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Tue Nov 21 08:06:56 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-06)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:33:44.665Z","updated_at":"2024-02-22T09:33:44.665Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":1,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13157","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13157","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13157/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13157/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13157","relative":"#13157","full":"gridhead/protop2g-test#13157"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:23:47.627Z","updated_at":"2024-03-04T11:23:47.627Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":1,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13539","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13539","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13539/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13539/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13539","relative":"#13539","full":"gridhead/protop2g-test#13539"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963abeeb3894bc-CCU + - 85f17f166d7894c2-CCU Connection: - keep-alive Content-Encoding: @@ -804,11 +807,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:47 GMT + - Mon, 04 Mar 2024 11:23:50 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=iL%2BKlSIpzAxzRgMebII7ey31pFLUHtwv9YzLQeT4f1qocJ1qrnFwV6SfytDfCMVnl43GcMwXhtMCCfHEJWzqgnw9BQq0OCERUH7QohwcFV1dzsxeXVDyS3e8Cll0X0Ggp6FfWPxDyVk%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=QM1yO5UqrNYlaSrmhsKjAOJUJtlTa4Np5u0wc9eHM512SOv8Ta4OQRDDwkUvs02QwztzPxFy5kh7mGgGKqzLZlaq23SZnFv333tbqw9O%2FV7jDlv95SaFhwJyC4emLXdiI%2FTqpLoTe9w%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -819,9 +822,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"e6ab3e8a3a4bf75a914b5fd15ec1094c" + - W/"a6d900e2fc8cbaa7d4758f59249fc95a" gitlab-lb: - - haproxy-main-14-lb-gprd + - haproxy-main-50-lb-gprd gitlab-sv: - api-gke-us-east1-d referrer-policy: @@ -835,11 +838,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"38ea755512ed909c5fcecad9da7ed1b1","version":"1"}' + - '{"correlation_id":"8f29bb1b26252a9590a85d221518220b","version":"1"}' x-request-id: - - 38ea755512ed909c5fcecad9da7ed1b1 + - 8f29bb1b26252a9590a85d221518220b x-runtime: - - '0.192858' + - '0.179921' status: code: 200 message: OK @@ -862,25 +865,25 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + - _cfuvid=YieQ.47N9NRdlpbb_bni0sG7kCsoKb0HeEVuE1VFi9E-1709551423936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/13157/discussions + uri: https://gitlab.com/api/v4/projects/42823949/issues/13539/discussions response: body: - string: '{"id":"ed484097c9b95f5f751466b4abcc364f5c8c59a1","individual_note":false,"notes":[{"id":1784525854,"type":"DiscussionNote","body":"\nThis + string: '{"id":"f2c922a88f77e3586aedac818320037f5dc4bf6e","individual_note":false,"notes":[{"id":1799293296,"type":"DiscussionNote","body":"\nThis is the second comment under the fourth test issue\n\n_This comment was originally created [here](https://pagure.io/protop2g-test-srce/issue/4#comment-885232) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) under\n[this](https://pagure.io/protop2g-test-srce/issue/4) issue ticket on a Pagure repository, [**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) on\n[**Tue Nov 21 08:07:34 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-07)._\n\n_This - comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2024-02-22T09:33:48.299Z","updated_at":"2024-02-22T09:33:48.299Z","system":false,"noteable_id":142497593,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13157,"commands_changes":{}}]}' + comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"created_at":"2024-03-04T11:23:51.168Z","updated_at":"2024-03-04T11:23:51.168Z","system":false,"noteable_id":142912489,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13539,"commands_changes":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963ac3584b94b0-CCU + - 85f17f19d9f994be-CCU Connection: - keep-alive Content-Length: @@ -888,11 +891,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:48 GMT + - Mon, 04 Mar 2024 11:23:51 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=w2xrkv0XSvqwH%2F4V5EBGpPyrGD4lHj%2BSu5dGia1%2BqreDomNgPvkVD3Jf4XlK4HaJco9v%2FMcFZwY%2FjqVl8CZxkfKgTTyzKJPNJyFl1aPz0zob1MBxC44gt5sYLn77DvVK%2FJhcS76xQto%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=5Y%2FrLgZtoVHsobYOTsCZWPgwT6hxjgyMTRSYQXK%2Fsls%2F8mkJ3JBR2HOkcShnEQQOqtxhM5i%2FJ96abyi%2BMxc5ydIA%2Fm47%2BeIeO3bbb%2B9jBm%2FJYCy72hLzLQWejp1ZmnUVtz1izFJwDVw%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -901,11 +904,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"2c396fdc4ab0f2ef4db9c6852b8a9b05" + - W/"67833a51b516934115f94e85d8ca8f00" gitlab-lb: - - haproxy-main-07-lb-gprd + - haproxy-main-41-lb-gprd gitlab-sv: - - api-gke-us-east1-c + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -917,11 +920,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"af3928ab87fd888891a106ddd986811a","version":"1"}' + - '{"correlation_id":"b35c4a5720b02ef80664d2082dfd70d9","version":"1"}' x-request-id: - - af3928ab87fd888891a106ddd986811a + - b35c4a5720b02ef80664d2082dfd70d9 x-runtime: - - '0.802789' + - '0.752670' status: code: 201 message: Created @@ -937,26 +940,27 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + - _cfuvid=YieQ.47N9NRdlpbb_bni0sG7kCsoKb0HeEVuE1VFi9E-1709551423936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13157 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13539 response: body: - string: '{"id":142497593,"iid":13157,"project_id":42823949,"title":"[SN#4] This + string: '{"id":142912489,"iid":13539,"project_id":42823949,"title":"[SN#4] This is the title of the fourth test issue","description":"\nThis is the body of the fourth test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/4) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Tue Nov 21 08:06:56 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-06)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:33:44.665Z","updated_at":"2024-02-22T09:33:44.665Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":2,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13157","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13157","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13157/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13157/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13157","relative":"#13157","full":"gridhead/protop2g-test#13157"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:23:47.627Z","updated_at":"2024-03-04T11:23:47.627Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":2,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13539","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13539","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13539/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13539/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13539","relative":"#13539","full":"gridhead/protop2g-test#13539"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963acaadb593bb-CCU + - 85f17f225b4093cb-CCU Connection: - keep-alive Content-Encoding: @@ -964,11 +968,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:49 GMT + - Mon, 04 Mar 2024 11:23:52 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=AdfSZ5onsUYtT%2FNCE9ibbGtPhY8NNw6XWNl%2FEPvzliPCjHHbnWF5dLeHpvFDDt04iYLbJOXu56Hiplj0s8Kyqiah030wAo0LW%2BZn8BSVQ%2BkwPrlyULrG6CeR9FdYE66tk4Ng2ApAGvI%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=6KQx6epoYrXEbYajaTb8fKEgu94%2Ffzuh2h9dE5yb%2FrjM6%2BuRl%2BdLO%2BSEC4C%2B7hmvto3jiBy%2BsPWkK%2F8Vxilz3tdiCb1b8gJ%2Ffm8YefOLJSNeE9a6AIJPUHsLAtXblwggUVOJDP5jFBM%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -979,11 +983,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"72d1858236924a1f700507d84b858c0b" + - W/"79ec1abba2dc72593d1afa003134500d" gitlab-lb: - - haproxy-main-20-lb-gprd + - haproxy-main-25-lb-gprd gitlab-sv: - - api-gke-us-east1-d + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -995,11 +999,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"63ba8ad6d9948f5cb91bf5329aea2877","version":"1"}' + - '{"correlation_id":"487599be84323c079bf107d22c79d50f","version":"1"}' x-request-id: - - 63ba8ad6d9948f5cb91bf5329aea2877 + - 487599be84323c079bf107d22c79d50f x-runtime: - - '0.212735' + - '0.157660' status: code: 200 message: OK @@ -1022,25 +1026,25 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + - _cfuvid=YieQ.47N9NRdlpbb_bni0sG7kCsoKb0HeEVuE1VFi9E-1709551423936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/13157/discussions + uri: https://gitlab.com/api/v4/projects/42823949/issues/13539/discussions response: body: - string: '{"id":"a267602e567f7b118a2bb67b80ef7e2ad99ba332","individual_note":false,"notes":[{"id":1784525892,"type":"DiscussionNote","body":"\n**Metadata + string: '{"id":"67b78f38b2f3e453546b2541174dd64e4755dbed","individual_note":false,"notes":[{"id":1799293371,"type":"DiscussionNote","body":"\n**Metadata Update from \u0026t0xic0der**:\n- Issue status updated to: Closed (was: Open)\n\n_This comment was originally created [here](https://pagure.io/protop2g-test-srce/issue/4#comment-885233) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) under\n[this](https://pagure.io/protop2g-test-srce/issue/4) issue ticket on a Pagure repository, [**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) on\n[**Tue Nov 21 08:08:01 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-08)._\n\n_This - comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2024-02-22T09:33:49.756Z","updated_at":"2024-02-22T09:33:49.756Z","system":false,"noteable_id":142497593,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13157,"commands_changes":{}}]}' + comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"created_at":"2024-03-04T11:23:53.247Z","updated_at":"2024-03-04T11:23:53.247Z","system":false,"noteable_id":142912489,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13539,"commands_changes":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963acede5c93c5-CCU + - 85f17f25b98e94b0-CCU Connection: - keep-alive Content-Length: @@ -1048,11 +1052,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:50 GMT + - Mon, 04 Mar 2024 11:23:53 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=UPAqiYazazXXU4U06jbVASLV4sYPrDCK8QPhuhMtDGTkYlmRTqIePwuNGxSK2qqbdWkklKjDP6fkmWel7tuKu8oFrS4K8gicWXhDE3plnIqOpmWY99z7XCenwhr9pCooEc67Vzy1Cn4%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=S72QMAkcJo1za2MtHSK40ZNXwWMuiRjTu3uSKIzpJE7cfqNwjcX2lQTrtUlVxU4B%2Fw9xpn86tbTY1cwE0CyDCDXm5ZrgvXoujheKDFZjb0Vg%2FKBme7RjTzt7sLj5xvP%2Fs6h6zacnyJQ%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1061,9 +1065,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"4a393d1a11e9787543832577185c440d" + - W/"3e47e6e59d5b8cb6bd48b3de52dfc699" gitlab-lb: - - haproxy-main-38-lb-gprd + - haproxy-main-35-lb-gprd gitlab-sv: - api-gke-us-east1-d referrer-policy: @@ -1077,11 +1081,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"82ea9b3ff72b4a8fad8f67100298df11","version":"1"}' + - '{"correlation_id":"ba666acafff6aa4173e1c14b59fb8759","version":"1"}' x-request-id: - - 82ea9b3ff72b4a8fad8f67100298df11 + - ba666acafff6aa4173e1c14b59fb8759 x-runtime: - - '0.454727' + - '0.598206' status: code: 201 message: Created @@ -1104,38 +1108,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + - _cfuvid=YieQ.47N9NRdlpbb_bni0sG7kCsoKb0HeEVuE1VFi9E-1709551423936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497600,"iid":13158,"project_id":42823949,"title":"[SN#3] This + string: '{"id":142912491,"iid":13540,"project_id":42823949,"title":"[SN#3] This is the title of the third test issue","description":"\nThis is the body of the third test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/3) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Tue Nov 21 08:03:57 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-03)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:33:50.552Z","updated_at":"2024-02-22T09:33:50.552Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13158","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13158","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13158/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13158/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13158","relative":"#13158","full":"gridhead/protop2g-test#13158"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:23:54.105Z","updated_at":"2024-03-04T11:23:54.105Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13540","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13540","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13540/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13540/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13540","relative":"#13540","full":"gridhead/protop2g-test#13540"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963ad3f87294b0-CCU + - 85f17f2c2a7a94ce-CCU Connection: - keep-alive Content-Length: - - '2190' + - '2222' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:50 GMT + - Mon, 04 Mar 2024 11:23:54 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Dh%2FEbCmALfG0bWqTMLQA8NP39gyxQRfUxsCGN8hWnMGASfElUPB3onB1LvZtgMM05pFc5Rc%2BDGXn9iiC%2B4M%2Fqkd1inuyTSMSJYK84e55myr1HDM%2BvGS68qWGD1N2XrYSeF%2FIwRWjqSA%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=68%2F57GGtCETMVwCjlPDZQhPFrAchB8eHdGI1eZ0S%2BAswAg7598zx%2FqLJggVLEskTbCaqqqYhIE5daHXILOtdvs726mc%2FNVJQEMFGu5Pa2U8v3q6pPc%2Bwkk6TTRaDXGY2gP0cGgPqAEc%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1144,9 +1149,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"b418d45a5855445926a97e22cb4d7d86" + - W/"c5829f44199e8350cb9e76b828b4ac17" gitlab-lb: - - haproxy-main-11-lb-gprd + - haproxy-main-56-lb-gprd gitlab-sv: - api-gke-us-east1-d referrer-policy: @@ -1160,11 +1165,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"3ebca48085fb6b34b7cd3012cbca94b5","version":"1"}' + - '{"correlation_id":"b23d5a7995dae9ddc3912ba0e2f39fa2","version":"1"}' x-request-id: - - 3ebca48085fb6b34b7cd3012cbca94b5 + - b23d5a7995dae9ddc3912ba0e2f39fa2 x-runtime: - - '0.585485' + - '0.870460' status: code: 201 message: Created @@ -1180,26 +1185,27 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + - _cfuvid=YieQ.47N9NRdlpbb_bni0sG7kCsoKb0HeEVuE1VFi9E-1709551423936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13158 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13540 response: body: - string: '{"id":142497600,"iid":13158,"project_id":42823949,"title":"[SN#3] This + string: '{"id":142912491,"iid":13540,"project_id":42823949,"title":"[SN#3] This is the title of the third test issue","description":"\nThis is the body of the third test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/3) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Tue Nov 21 08:03:57 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-03)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:33:50.552Z","updated_at":"2024-02-22T09:33:50.552Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13158","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13158","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13158/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13158/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13158","relative":"#13158","full":"gridhead/protop2g-test#13158"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:23:54.105Z","updated_at":"2024-03-04T11:23:54.105Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13540","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13540","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13540/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13540/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13540","relative":"#13540","full":"gridhead/protop2g-test#13540"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963ada0efd94ce-CCU + - 85f17f351cc394b9-CCU Connection: - keep-alive Content-Encoding: @@ -1207,11 +1213,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:51 GMT + - Mon, 04 Mar 2024 11:23:55 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=mop06CGxpeTLu5CrFewKaEvcTcVfRGwPKvgh6HQPUsJSVncGEcAudki%2BVOp3XAAhiIvwp0gGRJYJxXaUHLevzhvjl6hhCa%2BTV2q%2F9B2lw31qFd006xFx6Z%2BPMHHAeXNyTtFWWsbNjZg%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=rwBnXOBiG2hiSxRqQSKdwu4OALKz0fTQeSIDdVNDcHAKkxZRWl4xWhtyn94PEYe1%2F7SnaPVDM5UqkC83TB%2FQh6TrSsKXVAlraRRusfGfKK0aT2RcVMkkW6WiIa7QF3Yg23245tkMI4A%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1222,11 +1228,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"b418d45a5855445926a97e22cb4d7d86" + - W/"c5829f44199e8350cb9e76b828b4ac17" gitlab-lb: - - haproxy-main-39-lb-gprd + - haproxy-main-55-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -1238,11 +1244,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"546dfd2e0b2a55df4bbbadf8136f0760","version":"1"}' + - '{"correlation_id":"e9c7225514e4e7fe36dd1d517ab52418","version":"1"}' x-request-id: - - 546dfd2e0b2a55df4bbbadf8136f0760 + - e9c7225514e4e7fe36dd1d517ab52418 x-runtime: - - '0.172908' + - '0.144367' status: code: 200 message: OK @@ -1265,25 +1271,25 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + - _cfuvid=YieQ.47N9NRdlpbb_bni0sG7kCsoKb0HeEVuE1VFi9E-1709551423936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/13158/discussions + uri: https://gitlab.com/api/v4/projects/42823949/issues/13540/discussions response: body: - string: '{"id":"b5c9c8a70de6774c05859af6dff27992f95e249c","individual_note":false,"notes":[{"id":1784525993,"type":"DiscussionNote","body":"\nThis + string: '{"id":"261d59d4d93503f61f4ade8ecfabcc381965f0b3","individual_note":false,"notes":[{"id":1799293464,"type":"DiscussionNote","body":"\nThis is the first comment under the third test issue\n\n_This comment was originally created [here](https://pagure.io/protop2g-test-srce/issue/3#comment-885229) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) under\n[this](https://pagure.io/protop2g-test-srce/issue/3) issue ticket on a Pagure repository, [**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) on\n[**Tue Nov 21 08:04:40 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-04)._\n\n_This - comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2024-02-22T09:33:52.363Z","updated_at":"2024-02-22T09:33:52.363Z","system":false,"noteable_id":142497600,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13158,"commands_changes":{}}]}' + comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"created_at":"2024-03-04T11:23:56.067Z","updated_at":"2024-03-04T11:23:56.067Z","system":false,"noteable_id":142912491,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13540,"commands_changes":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963add59a494ce-CCU + - 85f17f386c2893bb-CCU Connection: - keep-alive Content-Length: @@ -1291,11 +1297,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:52 GMT + - Mon, 04 Mar 2024 11:23:56 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Krbuo3hID5vcEd7OBt4Gve0YwNwcHQGpe454WTYUbQM1AUVOAEhebkdBmbZ6teo2%2FqUG3By07X%2FBBAZrwAK7gLo4pbOAKDZvWY4Pjd2546YmW7v0QV78kdHguqb2hY%2BXcJoeg4Vg4iY%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=R2Utr9DzLKFFuoDyrBUaON%2FctPl1Yl9qReaEUc43HZJ9f27JLfHbxp60arJie5N4hKpJBGRZy%2FtjZh6bzH3cRY0i7%2F%2F872eK%2FXo3xD%2BAe9sTDlHYTJf3GMVmJJdPSUYNiK1DGurG04k%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1304,11 +1310,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"14df41d3ce95edaf8bde606265c0ad8e" + - W/"399e9a97b5d06068e0ca246c417dec82" gitlab-lb: - - haproxy-main-58-lb-gprd + - haproxy-main-35-lb-gprd gitlab-sv: - - api-gke-us-east1-c + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -1320,11 +1326,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"1b9d24e58d8ba5c927182361536c7498","version":"1"}' + - '{"correlation_id":"7652be0113ccd4ebee9948b0ff249713","version":"1"}' x-request-id: - - 1b9d24e58d8ba5c927182361536c7498 + - 7652be0113ccd4ebee9948b0ff249713 x-runtime: - - '0.807079' + - '0.431602' status: code: 201 message: Created @@ -1340,26 +1346,27 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + - _cfuvid=YieQ.47N9NRdlpbb_bni0sG7kCsoKb0HeEVuE1VFi9E-1709551423936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13158 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13540 response: body: - string: '{"id":142497600,"iid":13158,"project_id":42823949,"title":"[SN#3] This + string: '{"id":142912491,"iid":13540,"project_id":42823949,"title":"[SN#3] This is the title of the third test issue","description":"\nThis is the body of the third test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/3) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Tue Nov 21 08:03:57 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-03)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:33:50.552Z","updated_at":"2024-02-22T09:33:50.552Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":1,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13158","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13158","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13158/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13158/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13158","relative":"#13158","full":"gridhead/protop2g-test#13158"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:23:54.105Z","updated_at":"2024-03-04T11:23:54.105Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":1,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13540","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13540","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13540/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13540/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13540","relative":"#13540","full":"gridhead/protop2g-test#13540"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963ae4af5194c4-CCU + - 85f17f3e1b1a94bc-CCU Connection: - keep-alive Content-Encoding: @@ -1367,11 +1374,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:53 GMT + - Mon, 04 Mar 2024 11:23:56 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=XqzYYQjg1fdv7RyvxbbhA5JKrkzAg81Aoymnvo6cOsWJxG%2BBt2VQxGba8ySPkuE%2BT8WT6JFoBN49rh1GICakNKy4ahKGAnOMgjJWoo3S2h9cHksHtesI7LVCOkGENuoGgDA%2BwFqHDFU%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=5KSwiFKgefWbe9NhO9tgKBF8PVEzONk%2FFD%2Fi1c9d9Kc381dGvVRxApyfoLbm3GYga30SsBhHuDO5x7uj8ZDv8LFr6lSmYCPOmFggrHfMTR68R50CV6UTdv1zdghHll4EzWoixNNxG9Q%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1382,9 +1389,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"12872323f5c7a70ea8e4706cf3996604" + - W/"f8833298ba4d887c37585719b55467e1" gitlab-lb: - - haproxy-main-28-lb-gprd + - haproxy-main-55-lb-gprd gitlab-sv: - api-gke-us-east1-c referrer-policy: @@ -1398,11 +1405,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"85d414ecd44a8441b23d9a1e890635bd","version":"1"}' + - '{"correlation_id":"810dba62c1f9216e42956480259d2a5a","version":"1"}' x-request-id: - - 85d414ecd44a8441b23d9a1e890635bd + - 810dba62c1f9216e42956480259d2a5a x-runtime: - - '0.167205' + - '0.137117' status: code: 200 message: OK @@ -1425,25 +1432,25 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + - _cfuvid=YieQ.47N9NRdlpbb_bni0sG7kCsoKb0HeEVuE1VFi9E-1709551423936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/13158/discussions + uri: https://gitlab.com/api/v4/projects/42823949/issues/13540/discussions response: body: - string: '{"id":"bfb4298193215af35796c3a5879147e04afab2bf","individual_note":false,"notes":[{"id":1784526040,"type":"DiscussionNote","body":"\nThis + string: '{"id":"92ed4bfaa3a6a9955276b9a2c08f4546c9290709","individual_note":false,"notes":[{"id":1799293507,"type":"DiscussionNote","body":"\nThis is the second comment under the third test issue\n\n_This comment was originally created [here](https://pagure.io/protop2g-test-srce/issue/3#comment-885230) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) under\n[this](https://pagure.io/protop2g-test-srce/issue/3) issue ticket on a Pagure repository, [**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) on\n[**Tue Nov 21 08:04:52 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-04)._\n\n_This - comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2024-02-22T09:33:53.763Z","updated_at":"2024-02-22T09:33:53.763Z","system":false,"noteable_id":142497600,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13158,"commands_changes":{}}]}' + comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"created_at":"2024-03-04T11:23:57.588Z","updated_at":"2024-03-04T11:23:57.588Z","system":false,"noteable_id":142912491,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13540,"commands_changes":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963ae7e90794d0-CCU + - 85f17f420ed194bc-CCU Connection: - keep-alive Content-Length: @@ -1451,11 +1458,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:53 GMT + - Mon, 04 Mar 2024 11:23:57 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=BMQwcgnp3t4oUmqdxqweH82vpJbTlgUOSBDPsQGz6Dw3hKR93hyfr33qMuy7IE6B%2F27t7Ud7ukBaeQTtjF%2BWkA%2BWBEcY1Y2WhwIDFSBw2%2FtFLFO7e4JMtdVAEndeoSsq6oxjOLXPC04%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=QQUyDIDFpFwH45MnjugvlfFMcZVVkqaN0b3lwlORnkMY60av%2FV%2B80q4jSAhqhqZZIetdIJrwpbFM5vgf1csODjfLOviffoKNEJIYx%2B6iAvnUGPQkqS0yTUYZOIbUATzYkvgazW8hXhI%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1464,11 +1471,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"362f60deecb3eb9f109bce4241c8b03a" + - W/"eb30f12f447ba9795a570ea85087ff70" gitlab-lb: - - haproxy-main-07-lb-gprd + - haproxy-main-38-lb-gprd gitlab-sv: - - api-gke-us-east1-c + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -1480,11 +1487,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"bafc391f91220272801e39022b9c0df3","version":"1"}' + - '{"correlation_id":"7be402055b2e352ea0ea52a4ee262bb8","version":"1"}' x-request-id: - - bafc391f91220272801e39022b9c0df3 + - 7be402055b2e352ea0ea52a4ee262bb8 x-runtime: - - '0.426835' + - '0.395452' status: code: 201 message: Created @@ -1507,38 +1514,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + - _cfuvid=YieQ.47N9NRdlpbb_bni0sG7kCsoKb0HeEVuE1VFi9E-1709551423936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497601,"iid":13159,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142912493,"iid":13541,"project_id":42823949,"title":"[SN#2] This is the title of the second test issue","description":"\nThis is the body of the second test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/2) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 04:01:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:33:54.816Z","updated_at":"2024-02-22T09:33:54.816Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13159","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13159","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13159/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13159/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13159","relative":"#13159","full":"gridhead/protop2g-test#13159"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:23:58.421Z","updated_at":"2024-03-04T11:23:58.421Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13541","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13541","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13541/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13541/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13541","relative":"#13541","full":"gridhead/protop2g-test#13541"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963aecdce694bc-CCU + - 85f17f470a8893cb-CCU Connection: - keep-alive Content-Length: - - '2192' + - '2224' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:55 GMT + - Mon, 04 Mar 2024 11:23:59 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=eUOiumBLcCF8cB9IVIZHEui9jKojOzdLLPyhXV08%2B%2Fz%2FyMvqpTJSIh5S2g%2FFL0M7Re1HrTGq4%2FEd%2FeCpXGVuhZLdE16fXXnXdBOpu0Qf73Luarkz97J7gNbqC2oNJbV%2BX6Q7Xi5m%2FkY%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=S%2FP3EN8RWLpq6dyvFJIfx%2Fr%2BJbFuVA%2B28ztP8YldFdg33HbrKr756JPyACKOZTUVlBVAZWrD1NsByCidfBVh7cTpwnV%2BnwhPM12gNUAwod63kyQU365Yzxai2J6sf3QwrHVLNBO8Ug0%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1547,11 +1555,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"63b4694f0d68de921fb4abb46999250f" + - W/"54b4b0379b63647107cdb8e4b38ed341" gitlab-lb: - - haproxy-main-09-lb-gprd + - haproxy-main-01-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - gke-cny-api referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -1563,11 +1571,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"24ec3de9e6cfcc3e7c3cde40f7fca434","version":"1"}' + - '{"correlation_id":"c85e579d92f1a80e044143fa30e02075","version":"1"}' x-request-id: - - 24ec3de9e6cfcc3e7c3cde40f7fca434 + - c85e579d92f1a80e044143fa30e02075 x-runtime: - - '1.159478' + - '0.884942' status: code: 201 message: Created @@ -1583,26 +1591,27 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + - _cfuvid=YieQ.47N9NRdlpbb_bni0sG7kCsoKb0HeEVuE1VFi9E-1709551423936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13159 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13541 response: body: - string: '{"id":142497601,"iid":13159,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142912493,"iid":13541,"project_id":42823949,"title":"[SN#2] This is the title of the second test issue","description":"\nThis is the body of the second test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/2) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 04:01:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:33:54.816Z","updated_at":"2024-02-22T09:33:54.816Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13159","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13159","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13159/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13159/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13159","relative":"#13159","full":"gridhead/protop2g-test#13159"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:23:58.421Z","updated_at":"2024-03-04T11:23:58.421Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13541","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13541","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13541/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13541/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13541","relative":"#13541","full":"gridhead/protop2g-test#13541"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963af6bace93c8-CCU + - 85f17f4f5b2c94bf-CCU Connection: - keep-alive Content-Encoding: @@ -1610,11 +1619,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:56 GMT + - Mon, 04 Mar 2024 11:23:59 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=FDya%2BOPWClSkkC1EqWLHtXovUsUDvkUR5bO4wOl7COJRI%2Fg1vy%2FQc7sbnvyTJ9rDqk6j2eCfmqwKoszFdxEJrkF%2BrbGWhfynxI8ZUnapH7ULcQ9UzZHXoyhe3y79ejYtbdQOqhE7Jn0%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=nz0E85aWAXkfGtU4bBu0ixq6nr2EscOZvMkUqbWPuE0bD%2BirpFOVKSTP96U69dKoDCXa0jc99jtxmNA94%2BTLoYBuNnRWloFWdmdhheNM%2BwsW%2FRkYKnyFsd8W1ptY0BEn7Cg5cSDAkks%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1625,11 +1634,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"63b4694f0d68de921fb4abb46999250f" + - W/"54b4b0379b63647107cdb8e4b38ed341" gitlab-lb: - - haproxy-main-46-lb-gprd + - haproxy-main-11-lb-gprd gitlab-sv: - - api-gke-us-east1-c + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -1641,11 +1650,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"76ca95f921246d97829f49bfca1ab55c","version":"1"}' + - '{"correlation_id":"3ed8323711617e21e0607e399013fa5c","version":"1"}' x-request-id: - - 76ca95f921246d97829f49bfca1ab55c + - 3ed8323711617e21e0607e399013fa5c x-runtime: - - '0.161446' + - '0.169099' status: code: 200 message: OK @@ -1668,25 +1677,25 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + - _cfuvid=YieQ.47N9NRdlpbb_bni0sG7kCsoKb0HeEVuE1VFi9E-1709551423936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/13159/discussions + uri: https://gitlab.com/api/v4/projects/42823949/issues/13541/discussions response: body: - string: '{"id":"e23c002bdcc237590290105fcb2f446646438df7","individual_note":false,"notes":[{"id":1784526129,"type":"DiscussionNote","body":"\n**Metadata + string: '{"id":"96fcf2dde39965da9a9b5dba2a7f2c278ef521e3","individual_note":false,"notes":[{"id":1799293619,"type":"DiscussionNote","body":"\n**Metadata Update from \u0026t0xic0der**:\n- Issue tagged with: cccc, dddd\n\n_This comment was originally created [here](https://pagure.io/protop2g-test-srce/issue/2#comment-878472) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) under\n[this](https://pagure.io/protop2g-test-srce/issue/2) issue ticket on a Pagure repository, [**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) on\n[**Fri Oct 13 04:03:30 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-03)._\n\n_This - comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2024-02-22T09:33:56.608Z","updated_at":"2024-02-22T09:33:56.608Z","system":false,"noteable_id":142497601,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13159,"commands_changes":{}}]}' + comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"created_at":"2024-03-04T11:24:00.401Z","updated_at":"2024-03-04T11:24:00.401Z","system":false,"noteable_id":142912493,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13541,"commands_changes":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963af9f87994bf-CCU + - 85f17f53df0d93c8-CCU Connection: - keep-alive Content-Length: @@ -1694,11 +1703,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:56 GMT + - Mon, 04 Mar 2024 11:24:00 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=%2BVJnsq%2B0QVLW6zDFEl%2BOItQl3w11a2%2FEfT2COGgQV%2BXX0rn71SrQr4mYjCZVa6lKkn9zYKIV1pT%2BszoSYoiWOKhzjqUfmyLzZQ8rmQPyqw3UD9Ao2jnSzmemW0sqpbT9akhZQLjCqAE%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=qpIDiLHchK%2B8A4e%2Fn3joFzrxQ8L5hcCSSny%2B25E8YpcC%2BYCbo%2FP7KCGC6mrE3M%2BQCEXGPDvaqPVfMSOqn9n%2Bt2a3EELvfoW7ZRSgS0M6jxBZOPC73K5OHuFSeWkJAmvj1K1rOXdmrrw%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1707,11 +1716,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"da375205c31775b935e8821df357d981" + - W/"8bdb8afe7c8cbd0a13cc48fb8991aae2" gitlab-lb: - - haproxy-main-01-lb-gprd + - haproxy-main-14-lb-gprd gitlab-sv: - - api-gke-us-east1-c + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -1723,11 +1732,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"df8dfd7c12aec3c13a059096231cf927","version":"1"}' + - '{"correlation_id":"69e620543cf5908a45fd2bd63f459b32","version":"1"}' x-request-id: - - df8dfd7c12aec3c13a059096231cf927 + - 69e620543cf5908a45fd2bd63f459b32 x-runtime: - - '0.369093' + - '0.368898' status: code: 201 message: Created @@ -1743,26 +1752,27 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + - _cfuvid=YieQ.47N9NRdlpbb_bni0sG7kCsoKb0HeEVuE1VFi9E-1709551423936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13159 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13541 response: body: - string: '{"id":142497601,"iid":13159,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142912493,"iid":13541,"project_id":42823949,"title":"[SN#2] This is the title of the second test issue","description":"\nThis is the body of the second test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/2) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 04:01:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:33:54.816Z","updated_at":"2024-02-22T09:33:54.816Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":1,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13159","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13159","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13159/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13159/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13159","relative":"#13159","full":"gridhead/protop2g-test#13159"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:23:58.421Z","updated_at":"2024-03-04T11:23:58.421Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":1,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13541","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13541","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13541/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13541/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13541","relative":"#13541","full":"gridhead/protop2g-test#13541"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963afeafab94be-CCU + - 85f17f58fa7794ce-CCU Connection: - keep-alive Content-Encoding: @@ -1770,11 +1780,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:57 GMT + - Mon, 04 Mar 2024 11:24:01 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=U5QvtUO01XzUJL5OopOxWXiE42WHbKV%2FUG21prR%2BsV8fI985M0701QtIJXYC0y32P7ZXAkK0221HN8KzDpPmkgbncHshm7SfcCa5ei9V0D5u%2FQ%2BYl70PMghC6i2ggHWd2o2z0cNOLjw%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=ARVwMcnJrx1jDuKH0jE7CC6cnP1pKeOo6gAAnHq5HYbyRwr4FeyNMsh2m5%2BOjv00R6StqlsuCujZLW1fafFTZpp38GIbd4bbOG6O26xPLeubyWsYkYluAr7DjCtXaiu9BxiQ1EIBkxg%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1785,7 +1795,7 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"67f1c20783f416ece4ddb11a5e795620" + - W/"d4636b07516a7dd943d205603392977a" gitlab-lb: - haproxy-main-47-lb-gprd gitlab-sv: @@ -1801,11 +1811,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"b2a1334c408bab18b87e3adba86cfe5c","version":"1"}' + - '{"correlation_id":"c49b8891765509c1d573116dfdf00148","version":"1"}' x-request-id: - - b2a1334c408bab18b87e3adba86cfe5c + - c49b8891765509c1d573116dfdf00148 x-runtime: - - '0.213746' + - '0.247368' status: code: 200 message: OK @@ -1828,25 +1838,25 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + - _cfuvid=YieQ.47N9NRdlpbb_bni0sG7kCsoKb0HeEVuE1VFi9E-1709551423936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/13159/discussions + uri: https://gitlab.com/api/v4/projects/42823949/issues/13541/discussions response: body: - string: '{"id":"dad68a466e6a9d14fde1639ef3bf105c01220beb","individual_note":false,"notes":[{"id":1784526178,"type":"DiscussionNote","body":"\nThe + string: '{"id":"dd7abe754b812a6352b2962edf7e698d9a49e701","individual_note":false,"notes":[{"id":1799293675,"type":"DiscussionNote","body":"\nThe is the first comment under the second test issue\n\n_This comment was originally created [here](https://pagure.io/protop2g-test-srce/issue/2#comment-878475) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) under\n[this](https://pagure.io/protop2g-test-srce/issue/2) issue ticket on a Pagure repository, [**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) on\n[**Fri Oct 13 04:06:04 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-06)._\n\n_This - comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2024-02-22T09:33:58.418Z","updated_at":"2024-02-22T09:33:58.418Z","system":false,"noteable_id":142497601,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13159,"commands_changes":{}}]}' + comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"created_at":"2024-03-04T11:24:02.063Z","updated_at":"2024-03-04T11:24:02.063Z","system":false,"noteable_id":142912493,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13541,"commands_changes":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963b027c9194b2-CCU + - 85f17f5e1a8d94b9-CCU Connection: - keep-alive Content-Length: @@ -1854,11 +1864,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:58 GMT + - Mon, 04 Mar 2024 11:24:02 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=jB4Fd%2F2aj6R9eedYzEQW4y%2FFSK9dfoiFAfL9DFv%2F5OEMSyLEa4tYSLXZHmEddufyswml9T%2BAeoSTHdQcKAEPEeIyMDJGC4sG0xjFI6yeVIc5yPrEbmDPDpXL5Xo5QbVXhBggMOtVkUI%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=DbBNQ8enqRa9JrBoW%2Bbx7y%2Bc8Ge8PwbFepyq6KSHcYsJhBruegLVFFx1DHZcNRoEDH8I3QlnjGHJFhxmZgFb%2FvFSO19gjUh7xzTcY03bz3mRo5qIY3RAMSt2ZKgXWbYSB%2FtfLAOJeHk%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1867,11 +1877,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"c60f2bbdbcbbfe436822e86bfc2d9023" + - W/"1a07c894d00765ee1f49170c72477a65" gitlab-lb: - - haproxy-main-58-lb-gprd + - haproxy-main-29-lb-gprd gitlab-sv: - - api-gke-us-east1-c + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -1883,11 +1893,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"31d76ebde5a106b3bcd746518ef30e1d","version":"1"}' + - '{"correlation_id":"5b3447f181066ffcb8666c774b3a03ad","version":"1"}' x-request-id: - - 31d76ebde5a106b3bcd746518ef30e1d + - 5b3447f181066ffcb8666c774b3a03ad x-runtime: - - '0.703375' + - '0.378239' status: code: 201 message: Created @@ -1903,26 +1913,27 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + - _cfuvid=YieQ.47N9NRdlpbb_bni0sG7kCsoKb0HeEVuE1VFi9E-1709551423936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13159 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13541 response: body: - string: '{"id":142497601,"iid":13159,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142912493,"iid":13541,"project_id":42823949,"title":"[SN#2] This is the title of the second test issue","description":"\nThis is the body of the second test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/2) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 04:01:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:33:54.816Z","updated_at":"2024-02-22T09:33:54.816Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":2,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13159","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13159","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13159/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13159/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13159","relative":"#13159","full":"gridhead/protop2g-test#13159"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:23:58.421Z","updated_at":"2024-03-04T11:23:58.421Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":2,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13541","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13541","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13541/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13541/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13541","relative":"#13541","full":"gridhead/protop2g-test#13541"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963b0a5b4f94b2-CCU + - 85f17f63382194bf-CCU Connection: - keep-alive Content-Encoding: @@ -1930,11 +1941,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:59 GMT + - Mon, 04 Mar 2024 11:24:02 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=qdBqDq%2FOnWGsvhjmJ1lWC38%2FEcpmeOi8l0XpPQT%2B1YdlgA5cJtzI9gmt7bxj1gE4uhE2fxo4ErFO5qIqGriu6rGKuPxdX3kgV42Kw%2BifbycKDCIG9e4%2BYEV8xI085%2FSPmWiGn03K1RE%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=PdU2Fz%2BQwy9Qz6AQrdlkr5ndi2tyDqjYO9bUYqFtaBn83JSLdzDRoygOE3p3yEqKbTcI%2FHlQy9JrD7%2BEp0ULwL9t0jH5DM%2BDX4wDXIEw%2FNoSOtOQL%2FgGg63Z9xqSZcieCLP12vD%2BCoQ%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1945,11 +1956,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"bb1c4e0acd4dae1dd38c387b8a8e82fc" + - W/"c03e9b43c86abc8c39fcaaec0ac6dafa" gitlab-lb: - - haproxy-main-60-lb-gprd + - haproxy-main-13-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -1961,11 +1972,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"e2c60e11dd0045353b6dc409762fe0b2","version":"1"}' + - '{"correlation_id":"a99f8d2f65aca3f6701e6669a0259562","version":"1"}' x-request-id: - - e2c60e11dd0045353b6dc409762fe0b2 + - a99f8d2f65aca3f6701e6669a0259562 x-runtime: - - '0.416418' + - '0.189168' status: code: 200 message: OK @@ -1988,25 +1999,25 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + - _cfuvid=YieQ.47N9NRdlpbb_bni0sG7kCsoKb0HeEVuE1VFi9E-1709551423936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/13159/discussions + uri: https://gitlab.com/api/v4/projects/42823949/issues/13541/discussions response: body: - string: '{"id":"ae178edbc856ab75904b79b0ddbcac7f1b070b87","individual_note":false,"notes":[{"id":1784526238,"type":"DiscussionNote","body":"\nThe + string: '{"id":"562ad9519b91f864f3c51089338b7262d5275510","individual_note":false,"notes":[{"id":1799293719,"type":"DiscussionNote","body":"\nThe is the second comment under the second test issue\n\n_This comment was originally created [here](https://pagure.io/protop2g-test-srce/issue/2#comment-878476) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) under\n[this](https://pagure.io/protop2g-test-srce/issue/2) issue ticket on a Pagure repository, [**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) on\n[**Fri Oct 13 04:06:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-06)._\n\n_This - comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2024-02-22T09:34:00.544Z","updated_at":"2024-02-22T09:34:00.544Z","system":false,"noteable_id":142497601,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13159,"commands_changes":{}}]}' + comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"created_at":"2024-03-04T11:24:03.562Z","updated_at":"2024-03-04T11:24:03.562Z","system":false,"noteable_id":142912493,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13541,"commands_changes":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963b0f5bf394c2-CCU + - 85f17f66feba93c8-CCU Connection: - keep-alive Content-Length: @@ -2014,11 +2025,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:01 GMT + - Mon, 04 Mar 2024 11:24:04 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=yXNboZBJgYKazYbTiqoMDEGdDWZYhVL5UaqlDw%2B6htYVoUERv1auaLM2sCpVROdvQGtG8ATrUXgXTxWrrgykWE5fdFGpv%2FF1WKkeciwgIp0uUIZs%2FQRUPYTYJwgxmjmYqu9d6EqUvEU%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=KS%2BMLDxg%2FBNyTm0cfB95qilJ0phyqNWgpDLeLfra4JIc%2FJc0c00gF8vJQ5i%2FGbB9SL2K6a6wbvGiyYdBADgET%2B3%2B9INnzlTMG0LMb%2FHnLGWsFB66150%2FY8RF2y6pm47Kis2iLIIHmj0%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -2027,11 +2038,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"2d4b4ba1c91efae6815cb473c161c118" + - W/"3169be4cf8b4418edf7ebb7310a16531" gitlab-lb: - - haproxy-main-01-lb-gprd + - haproxy-main-14-lb-gprd gitlab-sv: - - gke-cny-api + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -2043,11 +2054,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"72a8e4da822aee98ee8cf9b505d7b64e","version":"1"}' + - '{"correlation_id":"9b7f7f2cb9fece0acc0dff988269b65a","version":"1"}' x-request-id: - - 72a8e4da822aee98ee8cf9b505d7b64e + - 9b7f7f2cb9fece0acc0dff988269b65a x-runtime: - - '1.123980' + - '0.972391' status: code: 201 message: Created @@ -2063,26 +2074,27 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + - _cfuvid=YieQ.47N9NRdlpbb_bni0sG7kCsoKb0HeEVuE1VFi9E-1709551423936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13159 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13541 response: body: - string: '{"id":142497601,"iid":13159,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142912493,"iid":13541,"project_id":42823949,"title":"[SN#2] This is the title of the second test issue","description":"\nThis is the body of the second test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/2) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 04:01:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:33:54.816Z","updated_at":"2024-02-22T09:33:54.816Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":3,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13159","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13159","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13159/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13159/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13159","relative":"#13159","full":"gridhead/protop2g-test#13159"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:23:58.421Z","updated_at":"2024-03-04T11:23:58.421Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":3,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13541","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13541","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13541/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13541/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13541","relative":"#13541","full":"gridhead/protop2g-test#13541"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963b18cba794c4-CCU + - 85f17f6ff91893c8-CCU Connection: - keep-alive Content-Encoding: @@ -2090,11 +2102,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:01 GMT + - Mon, 04 Mar 2024 11:24:04 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=lGFnzEKcF7Fz7LCNa38chQs6Vnr2UExAWJBzFnrQjmRpmk6jemeGMYAShvBG0%2FVlh4d8mr61In653yUE1CE%2FDiYKckpg09B2ziLq%2BpLRhOQ6dZbfo%2BxGkUkt9DchbffpVoHbculB9tU%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=DV0%2BKYuBu4tE7O%2BTUlAVMBkrFwgsiNEcvAc%2FIQyfhCI5FsCRifg8JqYQPTWCbyepsxfgh1V2Gl2vGiEQpPq%2BCF9b66dkZyhh%2BoFYr1WneQWXZFYGRLaaWJ%2BKmJZBghJbLrJud%2BMme8M%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -2105,9 +2117,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"734dd1684fa89453e8a2dafe1e9a4182" + - W/"071bccb17ad3599cdeb903a9f1a0c658" gitlab-lb: - - haproxy-main-56-lb-gprd + - haproxy-main-59-lb-gprd gitlab-sv: - api-gke-us-east1-d referrer-policy: @@ -2121,11 +2133,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"bf52a1ecec1022084167e4128e9dc701","version":"1"}' + - '{"correlation_id":"f3de39beeeea1746bd375a9368d3bc2c","version":"1"}' x-request-id: - - bf52a1ecec1022084167e4128e9dc701 + - f3de39beeeea1746bd375a9368d3bc2c x-runtime: - - '0.193886' + - '0.134323' status: code: 200 message: OK @@ -2148,25 +2160,25 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + - _cfuvid=YieQ.47N9NRdlpbb_bni0sG7kCsoKb0HeEVuE1VFi9E-1709551423936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/13159/discussions + uri: https://gitlab.com/api/v4/projects/42823949/issues/13541/discussions response: body: - string: '{"id":"df4859cbcba6b28cdce91f2b6c253c2bd1593160","individual_note":false,"notes":[{"id":1784526277,"type":"DiscussionNote","body":"\n**Metadata + string: '{"id":"30b8b39edba134435079227b49fe61bb6f3ab6be","individual_note":false,"notes":[{"id":1799293799,"type":"DiscussionNote","body":"\n**Metadata Update from \u0026t0xic0der**:\n- Issue status updated to: Closed (was: Open)\n\n_This comment was originally created [here](https://pagure.io/protop2g-test-srce/issue/2#comment-878477) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) under\n[this](https://pagure.io/protop2g-test-srce/issue/2) issue ticket on a Pagure repository, [**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) on\n[**Fri Oct 13 04:07:12 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-07)._\n\n_This - comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2024-02-22T09:34:02.139Z","updated_at":"2024-02-22T09:34:02.139Z","system":false,"noteable_id":142497601,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13159,"commands_changes":{}}]}' + comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"created_at":"2024-03-04T11:24:05.528Z","updated_at":"2024-03-04T11:24:05.528Z","system":false,"noteable_id":142912493,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13541,"commands_changes":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963b1c5c2794b6-CCU + - 85f17f73dd6493c1-CCU Connection: - keep-alive Content-Length: @@ -2174,11 +2186,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:02 GMT + - Mon, 04 Mar 2024 11:24:05 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=%2FnYP%2Fcpji5S%2BkELT1de5Wy7%2B5lK2FoaAIpussav4LXVQOnxbTT5StIAlN0TxaIkGDxXOJ6NFyI%2B7SHcOxWF3rEuBbGvB3BJn3NhqNqPdJHy7cHCn4Xvl%2FK4LKCyoVcISNiv9k1uNkfo%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=pP3iuesralHDvz7U7FWnWhbwsFrcr23jbM813vEUar5ckKy4UI%2BbzJ3FzDlJfEdgPTHwwaTuyMEAMC%2FdCdDcp6RcSTF0%2FOH%2BzVauIJQ%2BEla036byCgFCcEe28sltiHTjaYDy%2FQyS4uM%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -2187,7 +2199,7 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"1c84ce2cea52564e4e04cb1fc0f94413" + - W/"2b75954e369a378b9f76aa97e4adeb8e" gitlab-lb: - haproxy-main-30-lb-gprd gitlab-sv: @@ -2203,11 +2215,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"f3b5bc3d4dcec5723c6e5fdbf936838f","version":"1"}' + - '{"correlation_id":"b5239a4e143e6484aeb8169a87574d36","version":"1"}' x-request-id: - - f3b5bc3d4dcec5723c6e5fdbf936838f + - b5239a4e143e6484aeb8169a87574d36 x-runtime: - - '0.837271' + - '0.377962' status: code: 201 message: Created @@ -2230,38 +2242,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + - _cfuvid=YieQ.47N9NRdlpbb_bni0sG7kCsoKb0HeEVuE1VFi9E-1709551423936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497605,"iid":13160,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142912499,"iid":13542,"project_id":42823949,"title":"[SN#1] This is the title of the first test issue","description":"\nThis is the body of the first test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/1) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 03:57:42 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/03-57)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:34:03.373Z","updated_at":"2024-02-22T09:34:03.373Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13160","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13160","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13160/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13160/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13160","relative":"#13160","full":"gridhead/protop2g-test#13160"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:24:07.009Z","updated_at":"2024-03-04T11:24:07.009Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13542","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13542","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13542/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13542/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13542","relative":"#13542","full":"gridhead/protop2g-test#13542"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963b23f9c994b0-CCU + - 85f17f78fab993c2-CCU Connection: - keep-alive Content-Length: - - '2190' + - '2222' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:03 GMT + - Mon, 04 Mar 2024 11:24:07 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=y5e8U4yUuj6rpg0EAj1ToZ1gmVXuuLPnQpShvOnbyJvOSfRzAmfx6tcUKlnfxN59GrbwI7QjjZz0JxVUclCdCJezviUFSxJQijBWu8852Am7OB57QIYUn6kieKJ2yKBNqouHQf3SPs0%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=f74B6W695NTgbDBhL9s01gBQCDNNwZAYqmCaQYCgaUyKoKTHFXZfQbqDsu5HG04paxFC%2BnpF4YJ6IrycN6Eg1Mvmok6m4Ytm1xmNqa4Yrxk13PX%2B%2Bmwbz2AulllOE3geUUwdB5QCv9c%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -2270,11 +2283,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"7a21b94ccd7b0e985fe29ea7e0940826" + - W/"d93cfee95031d195261a65ac97fce998" gitlab-lb: - - haproxy-main-58-lb-gprd + - haproxy-main-42-lb-gprd gitlab-sv: - - api-gke-us-east1-c + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -2286,11 +2299,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"76af129d7ff0b4ceaa66fd85ae20ab16","version":"1"}' + - '{"correlation_id":"dff98175a160252235b0f19bfc989413","version":"1"}' x-request-id: - - 76af129d7ff0b4ceaa66fd85ae20ab16 + - dff98175a160252235b0f19bfc989413 x-runtime: - - '0.492987' + - '0.483533' status: code: 201 message: Created @@ -2306,26 +2319,27 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + - _cfuvid=YieQ.47N9NRdlpbb_bni0sG7kCsoKb0HeEVuE1VFi9E-1709551423936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13160 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13542 response: body: - string: '{"id":142497605,"iid":13160,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142912499,"iid":13542,"project_id":42823949,"title":"[SN#1] This is the title of the first test issue","description":"\nThis is the body of the first test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/1) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 03:57:42 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/03-57)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:34:03.373Z","updated_at":"2024-02-22T09:34:03.373Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13160","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13160","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13160/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13160/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13160","relative":"#13160","full":"gridhead/protop2g-test#13160"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:24:07.009Z","updated_at":"2024-03-04T11:24:07.009Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13542","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13542","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13542/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13542/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13542","relative":"#13542","full":"gridhead/protop2g-test#13542"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963b29c82694b6-CCU + - 85f17f823d5293bb-CCU Connection: - keep-alive Content-Encoding: @@ -2333,11 +2347,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:04 GMT + - Mon, 04 Mar 2024 11:24:07 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=8v%2BkJ%2B%2FjE9Vy8gerli8qWGf6iwDezzFeYvn9bT3NDlPLyvL%2BBCrxR9lyhanCKfIF9Suafp%2FRHOhhTS7vGlqNbNIGlIVu6azh5LPVfMdOPyprWR4vpIon9ML2LIQj%2FCHRJhBGDLiiXwE%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=eEDPBvyc%2F%2Be9Zo%2BdxipMj7HqEdVH%2FSWBl2LXHwwn%2FGWilAK%2F86qjlXCZnw3p11BAqxntZgFMHC%2FVTn4FLd5Yzh6uUMeE3kgKw1vyLkfuRErBcxL4vYTqgaG%2BLIV3sAdsM37VdOBL5GA%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -2348,11 +2362,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"7a21b94ccd7b0e985fe29ea7e0940826" + - W/"d93cfee95031d195261a65ac97fce998" gitlab-lb: - - haproxy-main-25-lb-gprd + - haproxy-main-48-lb-gprd gitlab-sv: - - api-gke-us-east1-c + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -2364,11 +2378,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"925f57fc200010571d05022640862893","version":"1"}' + - '{"correlation_id":"7f2d6c8f313dc58949479b7f88d1fc58","version":"1"}' x-request-id: - - 925f57fc200010571d05022640862893 + - 7f2d6c8f313dc58949479b7f88d1fc58 x-runtime: - - '0.153205' + - '0.136903' status: code: 200 message: OK @@ -2391,25 +2405,25 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + - _cfuvid=YieQ.47N9NRdlpbb_bni0sG7kCsoKb0HeEVuE1VFi9E-1709551423936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/13160/discussions + uri: https://gitlab.com/api/v4/projects/42823949/issues/13542/discussions response: body: - string: '{"id":"cd597dbc996aaedb409a7315de03f67ef67c2ac4","individual_note":false,"notes":[{"id":1784526358,"type":"DiscussionNote","body":"\n**Metadata + string: '{"id":"433220b3d049a96bc1652ca06d7cc465ed0ca98f","individual_note":false,"notes":[{"id":1799293908,"type":"DiscussionNote","body":"\n**Metadata Update from \u0026t0xic0der**:\n- Issue tagged with: aaaa, bbbb\n\n_This comment was originally created [here](https://pagure.io/protop2g-test-srce/issue/1#comment-878471) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) under\n[this](https://pagure.io/protop2g-test-srce/issue/1) issue ticket on a Pagure repository, [**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) on\n[**Fri Oct 13 04:01:39 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2024-02-22T09:34:04.891Z","updated_at":"2024-02-22T09:34:04.891Z","system":false,"noteable_id":142497605,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13160,"commands_changes":{}}]}' + comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"created_at":"2024-03-04T11:24:08.744Z","updated_at":"2024-03-04T11:24:08.744Z","system":false,"noteable_id":142912499,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13542,"commands_changes":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963b2d183393bb-CCU + - 85f17f85cce394b6-CCU Connection: - keep-alive Content-Length: @@ -2417,11 +2431,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:05 GMT + - Mon, 04 Mar 2024 11:24:08 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=8Hf0U7IiiOb95Oxo0RkvprnfyWL3RLVEr0CcmSHDPf58a8mLRCX6%2FI%2FOGR3yWR%2Byg%2FA4r7PaN3C4hGJhBmYSuj0Cbt2IevF3HeTRyHdmf%2Bw6KpJCpqxujGwvpwnLn4irDDtjNvexIvA%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=t1cL%2FjRMj2%2BNW5Ly392B4Ngg%2F9dkdYoK7wx2LtIwN7zU5cVDPbzWLX4Kt43w5rsfQ1gyzSZZHhwF6WkwMbCliOZTb%2ByazzhKciO19j54ttf%2B954IClIHz8JJy9mM8AMA1udba7e%2B4%2BY%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -2430,9 +2444,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"44ef60e5c03eb4dff53c92084d9e4def" + - W/"7b0270776e2ab959bb0b1cf008d36e2b" gitlab-lb: - - haproxy-main-18-lb-gprd + - haproxy-main-48-lb-gprd gitlab-sv: - api-gke-us-east1-b referrer-policy: @@ -2446,11 +2460,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"ef8a4478e16b34abb8f190a48d502c82","version":"1"}' + - '{"correlation_id":"c24e76cb2ec0c843eed8cd1f79f04451","version":"1"}' x-request-id: - - ef8a4478e16b34abb8f190a48d502c82 + - c24e76cb2ec0c843eed8cd1f79f04451 x-runtime: - - '0.458175' + - '0.727857' status: code: 201 message: Created @@ -2466,26 +2480,27 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + - _cfuvid=YieQ.47N9NRdlpbb_bni0sG7kCsoKb0HeEVuE1VFi9E-1709551423936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13160 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13542 response: body: - string: '{"id":142497605,"iid":13160,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142912499,"iid":13542,"project_id":42823949,"title":"[SN#1] This is the title of the first test issue","description":"\nThis is the body of the first test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/1) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 03:57:42 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/03-57)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:34:03.373Z","updated_at":"2024-02-22T09:34:03.373Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":1,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13160","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13160","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13160/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13160/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13160","relative":"#13160","full":"gridhead/protop2g-test#13160"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:24:07.009Z","updated_at":"2024-03-04T11:24:07.009Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":1,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13542","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13542","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13542/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13542/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13542","relative":"#13542","full":"gridhead/protop2g-test#13542"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963b326b5094c4-CCU + - 85f17f8cdf9d93c2-CCU Connection: - keep-alive Content-Encoding: @@ -2493,11 +2508,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:05 GMT + - Mon, 04 Mar 2024 11:24:09 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=izjRYlfRI0pdm384tLJTCxrxRQ07jDMxijfjIHO3ZgIoPLm8Iz0OXGnivMl6G8vhq6Qqh3iaVjP7nGgfOw6QC109iUyDRgMNRJeEZX6eCXYwWHEAATK9P4hUAHBfLYCiIHt6abJabG4%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=3k%2Bf%2B%2FFbPCF9DM2dN%2FfXmXxT0tQSVN8MzI6GmgHkBhFmgMIh%2F4qiYOMGic5q34UMbPc0fwu%2BDXLCmZZqDyu02q7RdIOr56hrO6WmtTIiDcc2Ftnx3M3N7EsvQoJx9LcqYRlsW7CU8mQ%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -2508,11 +2523,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"475c9f33946f78e92230a9dea51f31d3" + - W/"0a2a532f00c0ac42ea9dab5899e59b82" gitlab-lb: - - haproxy-main-13-lb-gprd + - haproxy-main-11-lb-gprd gitlab-sv: - - api-gke-us-east1-c + - gke-cny-api referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -2524,11 +2539,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"a9f4f1c262ae98b77fb78f05b59e9630","version":"1"}' + - '{"correlation_id":"3a17d922875d6e7a929975a09922d486","version":"1"}' x-request-id: - - a9f4f1c262ae98b77fb78f05b59e9630 + - 3a17d922875d6e7a929975a09922d486 x-runtime: - - '0.235603' + - '0.195068' status: code: 200 message: OK @@ -2551,25 +2566,25 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + - _cfuvid=YieQ.47N9NRdlpbb_bni0sG7kCsoKb0HeEVuE1VFi9E-1709551423936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/13160/discussions + uri: https://gitlab.com/api/v4/projects/42823949/issues/13542/discussions response: body: - string: '{"id":"b423529068430d5e926af3ab79c68c5b7b0558da","individual_note":false,"notes":[{"id":1784526398,"type":"DiscussionNote","body":"\nThis + string: '{"id":"167784fd91a1426dc81652d03c745f76e0529098","individual_note":false,"notes":[{"id":1799293935,"type":"DiscussionNote","body":"\nThis is the first comment under the first test issue\n\n_This comment was originally created [here](https://pagure.io/protop2g-test-srce/issue/1#comment-878473) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) under\n[this](https://pagure.io/protop2g-test-srce/issue/1) issue ticket on a Pagure repository, [**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) on\n[**Fri Oct 13 04:04:40 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-04)._\n\n_This - comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2024-02-22T09:34:06.303Z","updated_at":"2024-02-22T09:34:06.303Z","system":false,"noteable_id":142497605,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13160,"commands_changes":{}}]}' + comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"created_at":"2024-03-04T11:24:10.169Z","updated_at":"2024-03-04T11:24:10.169Z","system":false,"noteable_id":142912499,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13542,"commands_changes":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963b362bb293c1-CCU + - 85f17f90ae8694d0-CCU Connection: - keep-alive Content-Length: @@ -2577,11 +2592,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:06 GMT + - Mon, 04 Mar 2024 11:24:10 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=1t23RnZKP%2ByQw%2FgGnrFR9CljEUaBNrulaqeXuV8n9v%2B1wFov4vWmZ0ns%2FNxJU5CbIwnH0SF%2F58wmVwrDpzLHA2tqsUZ9MoVrVo2yiRN8QzzFNVHvK6tx6OygH3FhPRDBHk0MoPYcuOA%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Qq4Av3UJNGKTVsQY7w87Cn4J0HGFB%2Bja8iCEsN5MD%2FmCYjxiV7gjsYVV%2FdiM8%2BCtLZ6t4gtdjLYcPi3X%2F%2BuEdH%2BdFlNdWMoMB23bIvkfW2dQLGyUuES6mvMU47xdonxdtjW7ie46fys%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -2590,11 +2605,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"fb00f403310bc8ec33e94e7dce9b81ad" + - W/"b5eabe2eda700b4734a8b1580b776f87" gitlab-lb: - - haproxy-main-53-lb-gprd + - haproxy-main-13-lb-gprd gitlab-sv: - - api-gke-us-east1-d + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -2606,11 +2621,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"0ef7ebf2544e932c721409743570e45a","version":"1"}' + - '{"correlation_id":"505c702cf0529d7f4c2a6281f9699a17","version":"1"}' x-request-id: - - 0ef7ebf2544e932c721409743570e45a + - 505c702cf0529d7f4c2a6281f9699a17 x-runtime: - - '0.455048' + - '0.400559' status: code: 201 message: Created @@ -2626,26 +2641,27 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + - _cfuvid=YieQ.47N9NRdlpbb_bni0sG7kCsoKb0HeEVuE1VFi9E-1709551423936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13160 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13542 response: body: - string: '{"id":142497605,"iid":13160,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142912499,"iid":13542,"project_id":42823949,"title":"[SN#1] This is the title of the first test issue","description":"\nThis is the body of the first test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/1) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 03:57:42 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/03-57)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:34:03.373Z","updated_at":"2024-02-22T09:34:03.373Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":2,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13160","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13160","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13160/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13160/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13160","relative":"#13160","full":"gridhead/protop2g-test#13160"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:24:07.009Z","updated_at":"2024-03-04T11:24:07.009Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":2,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13542","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13542","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13542/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13542/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13542","relative":"#13542","full":"gridhead/protop2g-test#13542"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963b3b687193c1-CCU + - 85f17f95cabd94b0-CCU Connection: - keep-alive Content-Encoding: @@ -2653,11 +2669,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:07 GMT + - Mon, 04 Mar 2024 11:24:11 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=fx%2Fyd8XzvDC1bFvc7cwQu3LtGuU%2F5%2Bo2%2FNGr%2Bxn8nwYbt4Oi9st3z8jtFQQOI4ic8SzN5C9dxB6U2kvP84HUJ35Gh812RDglTpxRBaACi77oHJy1mQqUCylEehIgrRRrHIb%2FoTd8qOo%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=u2b%2Fl3GJ87GmqwlN2I02YVuCry1wrEi%2FU5Y7zGWKdJbdLma0sZlngEL8CpNRLl6xirG7cMW%2FENojqJmMg13bMR7hTgY3u%2F6G5BaS7I41rHmclj1Rr0zwEs1CR%2B%2Bv8BV2Cytbv2LS4Ms%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -2668,11 +2684,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"4e599a5f48d657fbafd00c1c002b1c1a" + - W/"a791023d65a65a8a0fd7abf6afe7762b" gitlab-lb: - - haproxy-main-03-lb-gprd + - haproxy-main-56-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -2684,11 +2700,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"53ff2ecd3a75e517d1ec1d70503af679","version":"1"}' + - '{"correlation_id":"586a469205d2fa8a852878063f85a591","version":"1"}' x-request-id: - - 53ff2ecd3a75e517d1ec1d70503af679 + - 586a469205d2fa8a852878063f85a591 x-runtime: - - '0.151908' + - '0.148425' status: code: 200 message: OK @@ -2711,25 +2727,25 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + - _cfuvid=YieQ.47N9NRdlpbb_bni0sG7kCsoKb0HeEVuE1VFi9E-1709551423936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/13160/discussions + uri: https://gitlab.com/api/v4/projects/42823949/issues/13542/discussions response: body: - string: '{"id":"3cbae572fa2175997868e6ff9ae66ed6afaf7975","individual_note":false,"notes":[{"id":1784526431,"type":"DiscussionNote","body":"\nThis + string: '{"id":"aefc2228e7982feeab551608a25d9be2f26d69d0","individual_note":false,"notes":[{"id":1799293991,"type":"DiscussionNote","body":"\nThis is the second comment under the first test issue\n\n_This comment was originally created [here](https://pagure.io/protop2g-test-srce/issue/1#comment-878474) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) under\n[this](https://pagure.io/protop2g-test-srce/issue/1) issue ticket on a Pagure repository, [**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) on\n[**Fri Oct 13 04:05:24 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-05)._\n\n_This - comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2024-02-22T09:34:07.608Z","updated_at":"2024-02-22T09:34:07.608Z","system":false,"noteable_id":142497605,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13160,"commands_changes":{}}]}' + comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"created_at":"2024-03-04T11:24:11.808Z","updated_at":"2024-03-04T11:24:11.808Z","system":false,"noteable_id":142912499,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13542,"commands_changes":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963b3e9e4d94c4-CCU + - 85f17f99ce2394ce-CCU Connection: - keep-alive Content-Length: @@ -2737,11 +2753,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:07 GMT + - Mon, 04 Mar 2024 11:24:12 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Dd1zWURaix%2F7EacLD59fhksPi4LT%2BqVqVeM%2BQHlIINLliFgtXArBCgMlJ71o0pyjP9%2B7vcTumtjI4KnX7N3UAhdqIPCxir2V832vZ89FTvHVtUzC847xSfFfcN0QRD%2FlGQK0U5pRQ%2Fc%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=%2BvgFdTMY60%2FJt%2FIPybLPcMYTWhLGp8mg7tAuJDEd4IPaV6gJNTrYFrN2FWuU33q306L0EvxRPC4skfn8vDpQ2r3W%2FJn8OGyKd1O65o9u%2FSNGycdIryBrOfRameo2QtjM1DGrfh%2FVpW0%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -2750,11 +2766,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"b8fb14c3bd47a6ac0818bb07f453ed38" + - W/"ebcf33d9a67f118773ced65f6dd4a5cc" gitlab-lb: - - haproxy-main-38-lb-gprd + - haproxy-main-24-lb-gprd gitlab-sv: - - api-gke-us-east1-d + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -2766,11 +2782,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"8e62ea9d5ea4925bc79be850daa9becf","version":"1"}' + - '{"correlation_id":"606985eaebda7754fcc7d1a163dfdf59","version":"1"}' x-request-id: - - 8e62ea9d5ea4925bc79be850daa9becf + - 606985eaebda7754fcc7d1a163dfdf59 x-runtime: - - '0.464512' + - '0.750036' status: code: 201 message: Created diff --git a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with FULL status along with labels but without states, without privacy and without comments].yaml b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with FULL status along with labels but without states, without privacy and without comments].yaml index 364c191..5c24136 100644 --- a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with FULL status along with labels but without states, without privacy and without comments].yaml +++ b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with FULL status along with labels but without states, without privacy and without comments].yaml @@ -34,14 +34,14 @@ interactions: Content-Length: - '902' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-c3ENjpH6nD28kWhn4SJrrQNRY'; style-src - 'self' 'nonce-c3ENjpH6nD28kWhn4SJrrQNRY'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-b00BpoYYXIAQV651BRAJLM1YW'; style-src + 'self' 'nonce-b00BpoYYXIAQV651BRAJLM1YW'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:57 GMT + - Mon, 04 Mar 2024 11:22:57 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -80,14 +80,14 @@ interactions: response: body: string: '{"id":42823949,"description":null,"name":"protop2g-test","name_with_namespace":"Akashdeep - Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-02-22T09:31:08.610Z","namespace":{"id":13984834,"name":"Akashdeep + Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-03-04T11:20:52.799Z","namespace":{"id":13984834,"name":"Akashdeep Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"container_registry_image_prefix":"registry.gitlab.com/gridhead/protop2g-test","_links":{"self":"https://gitlab.com/api/v4/projects/42823949","issues":"https://gitlab.com/api/v4/projects/42823949/issues","merge_requests":"https://gitlab.com/api/v4/projects/42823949/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/42823949/repository/branches","labels":"https://gitlab.com/api/v4/projects/42823949/labels","events":"https://gitlab.com/api/v4/projects/42823949/events","members":"https://gitlab.com/api/v4/projects/42823949/members","cluster_agents":"https://gitlab.com/api/v4/projects/42823949/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"public","owner":{"id":10115999,"username":"gridhead","name":"Akashdeep - Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":5439,"description_html":"","updated_at":"2024-02-22T09:31:08.610Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":null}}' + Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":19,"description_html":"","updated_at":"2024-03-04T11:20:52.799Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":50,"notification_level":3},"group_access":null}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 8596398abf8993c8-CCU + - 85f17dd1081894c2-CCU Connection: - keep-alive Content-Encoding: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:57 GMT + - Mon, 04 Mar 2024 11:22:58 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=9BFVML2EvDRxGQPr1bIlMg%2Ff6PRKiolk3FvAOdj8IHZVVsDRbeRI6qGTOx09rurKR3S2LPq0Wtv%2BQU4VVwgMds1IpsdKGi0fLD%2B0%2FKNT8UwCLvD5gKv2491d5fdaHqyPZQ21bxpi4ps%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=isIErjEFxLemcuiE9%2Fob3W3YrrNA1cBvKFp5hsmYahZoVnKPaZOrwbXE4H5Tpz%2F9SLR9LizpLzbg3ByHf93ZhJvLHQzzWzcqst9yfjWQvYyXEVfLa7afchvwJDG7mk6HWypxv%2BU1XqY%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -110,11 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"7844e8f403505d2d1c3a1714e832e397" + - W/"91863c380dcb51e74c9e6fefb231f40e" gitlab-lb: - - haproxy-main-39-lb-gprd + - haproxy-main-14-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -126,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"073b6de684e0c58118a014a7741c2f42","version":"1"}' + - '{"correlation_id":"add7055592c202501d4ed8e70458b1cd","version":"1"}' x-request-id: - - 073b6de684e0c58118a014a7741c2f42 + - add7055592c202501d4ed8e70458b1cd x-runtime: - - '0.172140' + - '0.145679' status: code: 200 message: OK @@ -300,14 +300,14 @@ interactions: Content-Length: - '10774' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-qLsNE3X7buQIKcAEmb7OremuZ'; style-src - 'self' 'nonce-qLsNE3X7buQIKcAEmb7OremuZ'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-RT9ssXfIm6qkOWqC6T3GEkeOA'; style-src + 'self' 'nonce-RT9ssXfIm6qkOWqC6T3GEkeOA'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:58 GMT + - Mon, 04 Mar 2024 11:22:59 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -494,14 +494,14 @@ interactions: Content-Length: - '10774' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-c3sADhaQyVGtW80E7Soxxn1WX'; style-src - 'self' 'nonce-c3sADhaQyVGtW80E7Soxxn1WX'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-gvUL2WH7ecFpsDUtoclUBQztu'; style-src + 'self' 'nonce-gvUL2WH7ecFpsDUtoclUBQztu'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:00 GMT + - Mon, 04 Mar 2024 11:23:00 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -542,38 +542,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=ebk1nPm6731.LaTsN6C0sHyMmryIyFo6wSZ5hNUu.sk-1708594377844-0.0-604800000 + - _cfuvid=3nZqe7WsKf2fDwa__acNSJ_YTQ2qw9PMyI5.hUR5FiQ-1709551378575-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497554,"iid":13149,"project_id":42823949,"title":"[SN#4] This + string: '{"id":142912456,"iid":13531,"project_id":42823949,"title":"[SN#4] This is the title of the fourth test issue","description":"\nThis is the body of the fourth test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/4) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Tue Nov 21 08:06:56 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-06)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:33:01.091Z","updated_at":"2024-02-22T09:33:01.091Z","closed_at":null,"closed_by":null,"labels":["gggg","hhhh"],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13149","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13149","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13149/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13149/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13149","relative":"#13149","full":"gridhead/protop2g-test#13149"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:23:01.704Z","updated_at":"2024-03-04T11:23:01.704Z","closed_at":null,"closed_by":null,"labels":["gggg","hhhh"],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13531","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13531","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13531/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13531/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13531","relative":"#13531","full":"gridhead/protop2g-test#13531"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 8596399efbd994bc-CCU + - 85f17de4dcad94ce-CCU Connection: - keep-alive Content-Length: - - '2205' + - '2237' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:01 GMT + - Mon, 04 Mar 2024 11:23:02 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=NwAS3icpAo1r5rARmW%2B%2FQvAEGo%2FXOVlvLk1DD7MqtdanTDjYgTVUNRl7xx%2BSzKzy%2Bn4lelXSx6nlAT3LJg0CB7Y0g%2FfFeK2e7YUjmL0J4Ou4c%2Bmdzp4TEBHjkQ2Wh6B2jv%2BaCcWGusI%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=b7Pb4CUwMAd1UaeeSJgN6O6CrodWcVw5atO1nb5CnAb9RP2cq5R0VcjTaAPcyinXfUPO4mp3Ti8LMe2WBCd6ygpIHicONHZmItM1mly5gkjuFUfnnAyU7GQbQiuv7ZiWggpbiVs6zLw%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -582,11 +583,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"b65f129a71190f3ac0769a1c56044aad" + - W/"dc8991f5df4e33a144e0331151b1d56a" gitlab-lb: - - haproxy-main-48-lb-gprd + - haproxy-main-28-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -598,11 +599,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"0666da393eca5e7dc1357fa244b5231b","version":"1"}' + - '{"correlation_id":"a08f8fdbbd7a807a89da1afc4e5560ad","version":"1"}' x-request-id: - - 0666da393eca5e7dc1357fa244b5231b + - a08f8fdbbd7a807a89da1afc4e5560ad x-runtime: - - '0.627721' + - '0.887299' status: code: 201 message: Created @@ -626,38 +627,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=ebk1nPm6731.LaTsN6C0sHyMmryIyFo6wSZ5hNUu.sk-1708594377844-0.0-604800000 + - _cfuvid=3nZqe7WsKf2fDwa__acNSJ_YTQ2qw9PMyI5.hUR5FiQ-1709551378575-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497557,"iid":13150,"project_id":42823949,"title":"[SN#3] This + string: '{"id":142912458,"iid":13532,"project_id":42823949,"title":"[SN#3] This is the title of the third test issue","description":"\nThis is the body of the third test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/3) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Tue Nov 21 08:03:57 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-03)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:33:02.307Z","updated_at":"2024-02-22T09:33:02.307Z","closed_at":null,"closed_by":null,"labels":["eeee","ffff"],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13150","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13150","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13150/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13150/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13150","relative":"#13150","full":"gridhead/protop2g-test#13150"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:23:03.005Z","updated_at":"2024-03-04T11:23:03.005Z","closed_at":null,"closed_by":null,"labels":["eeee","ffff"],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13532","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13532","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13532/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13532/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13532","relative":"#13532","full":"gridhead/protop2g-test#13532"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 859639a53b3193cb-CCU + - 85f17deccdee94b6-CCU Connection: - keep-alive Content-Length: - - '2203' + - '2235' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:02 GMT + - Mon, 04 Mar 2024 11:23:03 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=IRM0%2B%2FhVHC9R0rWG7dp7nX3GSo50yA8ThCAWcYPnDXWcFoiE7UiaqGfPGfAJnHawhWwiuecvPILetISaT5vH1liK56YFvhZDTvF0a%2BrobgZvAQ6udNXlumbBp%2BCdsOP1CIFTK6blXnY%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=8%2Ft2Lq62R4fnnL96W8VvSDys7qYya4GpKaauQnHVC9d01zP40PSfAk%2FiYc57lSdUyoxKXBWqKBMyVaYZirwUjMQYjK%2FszFJrQdh7E0f2OIrApN62wo0Sbrs1ee6nKTKIiDaPM4bZi34%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -666,11 +668,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"b882ae973f7a056c09159abd427d6578" + - W/"28aa818ba570cac94bce5ce5d47fba96" gitlab-lb: - - haproxy-main-14-lb-gprd + - haproxy-main-36-lb-gprd gitlab-sv: - - api-gke-us-east1-d + - gke-cny-api referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -682,11 +684,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"43f81f3ea247929966af887ebd9d55b5","version":"1"}' + - '{"correlation_id":"aa248d7c3ea39061798c77380ef10f69","version":"1"}' x-request-id: - - 43f81f3ea247929966af887ebd9d55b5 + - aa248d7c3ea39061798c77380ef10f69 x-runtime: - - '0.910069' + - '0.541080' status: code: 201 message: Created @@ -710,38 +712,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=ebk1nPm6731.LaTsN6C0sHyMmryIyFo6wSZ5hNUu.sk-1708594377844-0.0-604800000 + - _cfuvid=3nZqe7WsKf2fDwa__acNSJ_YTQ2qw9PMyI5.hUR5FiQ-1709551378575-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497561,"iid":13151,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142912459,"iid":13533,"project_id":42823949,"title":"[SN#2] This is the title of the second test issue","description":"\nThis is the body of the second test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/2) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 04:01:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:33:04.118Z","updated_at":"2024-02-22T09:33:04.118Z","closed_at":null,"closed_by":null,"labels":["cccc","dddd"],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13151","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13151","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13151/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13151/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13151","relative":"#13151","full":"gridhead/protop2g-test#13151"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:23:03.901Z","updated_at":"2024-03-04T11:23:03.901Z","closed_at":null,"closed_by":null,"labels":["cccc","dddd"],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13533","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13533","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13533/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13533/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13533","relative":"#13533","full":"gridhead/protop2g-test#13533"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 859639ad3fca94c4-CCU + - 85f17df25d7093cb-CCU Connection: - keep-alive Content-Length: - - '2205' + - '2237' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:04 GMT + - Mon, 04 Mar 2024 11:23:04 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=wPD6y%2BckKxUELG8y0tXYDAjoGRsV3VUzgXokdvH4G30tNuMrzMpv9j5CchE8%2BwTcpqKfbY51Nh4AhijXQUJ2nRSXx7mfVNccBkyLsaStu6z991wJQQcFMXdfBepyk3x8E2bWbm%2FKPIQ%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=0FAaLr8TX5Pe7G%2BNcWsnt4lhgrdOMcbUNIakwRoS9ZT5kZj4YUivZgCOTPh%2Bz2T%2FAhFrGximRuyVDH%2BL8YBh4Sq6beqohpf3F7284XlRYl21sYav4lG%2B3JFlV%2FMxr8TOrxkm7xIeSZ4%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -750,9 +753,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"e0c4efef86235b653e562b5083b29b3e" + - W/"193a7cad52c7b1d77035e2bbde0a9ee5" gitlab-lb: - - haproxy-main-08-lb-gprd + - haproxy-main-05-lb-gprd gitlab-sv: - api-gke-us-east1-d referrer-policy: @@ -766,11 +769,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"ad5a737fde37ae6943723864460460c3","version":"1"}' + - '{"correlation_id":"6da0951f1ab17d58226d064efc996a29","version":"1"}' x-request-id: - - ad5a737fde37ae6943723864460460c3 + - 6da0951f1ab17d58226d064efc996a29 x-runtime: - - '1.288975' + - '0.867822' status: code: 201 message: Created @@ -794,38 +797,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=ebk1nPm6731.LaTsN6C0sHyMmryIyFo6wSZ5hNUu.sk-1708594377844-0.0-604800000 + - _cfuvid=3nZqe7WsKf2fDwa__acNSJ_YTQ2qw9PMyI5.hUR5FiQ-1709551378575-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497564,"iid":13152,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142912460,"iid":13534,"project_id":42823949,"title":"[SN#1] This is the title of the first test issue","description":"\nThis is the body of the first test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/1) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 03:57:42 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/03-57)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:33:05.762Z","updated_at":"2024-02-22T09:33:05.762Z","closed_at":null,"closed_by":null,"labels":["aaaa","bbbb"],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13152","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13152","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13152/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13152/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13152","relative":"#13152","full":"gridhead/protop2g-test#13152"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:23:05.146Z","updated_at":"2024-03-04T11:23:05.146Z","closed_at":null,"closed_by":null,"labels":["aaaa","bbbb"],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13534","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13534","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13534/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13534/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13534","relative":"#13534","full":"gridhead/protop2g-test#13534"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 859639b80e0793c5-CCU + - 85f17dfa4ec493c2-CCU Connection: - keep-alive Content-Length: - - '2203' + - '2235' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:06 GMT + - Mon, 04 Mar 2024 11:23:05 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Bz46M6Ft8alKAladO%2FC3k7qQJg%2FfZwKn8acHtO2FMzqBuX4EX5U0E4eTLY3NOXi49bdWBc42dPKQb99fVTs%2B5ETi9iNcdlNU%2FlOpkMptqO2SF%2FNk0%2BeKyKkewCDacQDF956bvs8G3Ks%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=iPgtFSpZXc%2FjbVyIuWCEUG4KEBYfFuUzlyBAZ4hfyWb3%2Ft5tP1ygq%2B9oN8c0%2BwaNyTdJi%2FIA50GHIgNJnJx5g%2BiAIIXjX0N4WrlTgzm9C894BlsT6FIkbooHlBydcqMl2tBmPOcizn0%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -834,11 +838,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"aadcabbb9d39052bea1987e1034c31dc" + - W/"e706f060f021a0bb4a3e3a6a87a54ad2" gitlab-lb: - - haproxy-main-07-lb-gprd + - haproxy-main-42-lb-gprd gitlab-sv: - - api-gke-us-east1-c + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -850,11 +854,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"0cb3b8e86f466290520f050ddae217c3","version":"1"}' + - '{"correlation_id":"8645a344a19fb51cca4723b9bade1050","version":"1"}' x-request-id: - - 0cb3b8e86f466290520f050ddae217c3 + - 8645a344a19fb51cca4723b9bade1050 x-runtime: - - '1.069024' + - '0.550842' status: code: 201 message: Created diff --git a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with FULL status along with states but without comments, without privacy and without labels].yaml b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with FULL status along with states but without comments, without privacy and without labels].yaml index 0c27d70..b24cc53 100644 --- a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with FULL status along with states but without comments, without privacy and without labels].yaml +++ b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with FULL status along with states but without comments, without privacy and without labels].yaml @@ -34,14 +34,14 @@ interactions: Content-Length: - '902' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-cJI296OMVZNKTtQ6pzHB75mJe'; style-src - 'self' 'nonce-cJI296OMVZNKTtQ6pzHB75mJe'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-J9qseBKI1NJcDIft5WsmLuZch'; style-src + 'self' 'nonce-J9qseBKI1NJcDIft5WsmLuZch'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:33 GMT + - Mon, 04 Mar 2024 11:22:25 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -80,14 +80,14 @@ interactions: response: body: string: '{"id":42823949,"description":null,"name":"protop2g-test","name_with_namespace":"Akashdeep - Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-02-22T09:31:08.610Z","namespace":{"id":13984834,"name":"Akashdeep + Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-03-04T11:20:52.799Z","namespace":{"id":13984834,"name":"Akashdeep Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"container_registry_image_prefix":"registry.gitlab.com/gridhead/protop2g-test","_links":{"self":"https://gitlab.com/api/v4/projects/42823949","issues":"https://gitlab.com/api/v4/projects/42823949/issues","merge_requests":"https://gitlab.com/api/v4/projects/42823949/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/42823949/repository/branches","labels":"https://gitlab.com/api/v4/projects/42823949/labels","events":"https://gitlab.com/api/v4/projects/42823949/events","members":"https://gitlab.com/api/v4/projects/42823949/members","cluster_agents":"https://gitlab.com/api/v4/projects/42823949/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"public","owner":{"id":10115999,"username":"gridhead","name":"Akashdeep - Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":5433,"description_html":"","updated_at":"2024-02-22T09:31:08.610Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":null}}' + Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":13,"description_html":"","updated_at":"2024-03-04T11:20:52.799Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":50,"notification_level":3},"group_access":null}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 859638f9ba1094bf-CCU + - 85f17d069df394be-CCU Connection: - keep-alive Content-Encoding: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:34 GMT + - Mon, 04 Mar 2024 11:22:26 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=VpE5PPcstfOyPGfYNjR8ogwJ0JyEk4LzFrahNOa1pgkKeQd5OkRgR%2B%2B5fTERpch9jL2gD5ib5pNK1S3Mq1LwFlPasG%2Boe6UjZLgSGRv1O1S%2F%2FhkkKY0alwGmL1wC8%2FhVIHes2iUyoyI%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=mhM%2BRZf6swJHs13frfTpTqwmOUyEDK%2FxS2NU%2BN8fQCuZAi38vrSzWBrnfP7hRH8qxtdckwq7OrWM3Wc9bv9m9GeJFGfJ7xMA2XON%2FeWpbK8nQxBI9hSSGlIWlvjLzJPmxRUWUomCGlg%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -110,11 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"a937f65292ea5589e6eb054dc9a6e1f6" + - W/"bd281e03757a53ee34290cd306b360f0" gitlab-lb: - - haproxy-main-10-lb-gprd + - haproxy-main-11-lb-gprd gitlab-sv: - - api-gke-us-east1-c + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -126,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"e8cf9524859174cf1ed4efa925564191","version":"1"}' + - '{"correlation_id":"6b7bed033dcc9f8346985cf2fa0d11cf","version":"1"}' x-request-id: - - e8cf9524859174cf1ed4efa925564191 + - 6b7bed033dcc9f8346985cf2fa0d11cf x-runtime: - - '0.127270' + - '0.110955' status: code: 200 message: OK @@ -300,14 +300,14 @@ interactions: Content-Length: - '10774' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-ZhMrqYCHZOEiyA3OUigNcKNhY'; style-src - 'self' 'nonce-ZhMrqYCHZOEiyA3OUigNcKNhY'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-k7GbB0XVLLlDyh2M2vs1g4EGA'; style-src + 'self' 'nonce-k7GbB0XVLLlDyh2M2vs1g4EGA'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:35 GMT + - Mon, 04 Mar 2024 11:22:28 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -494,14 +494,14 @@ interactions: Content-Length: - '10774' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-93rfekqjOGEqKL7iZVdMyJxeR'; style-src - 'self' 'nonce-93rfekqjOGEqKL7iZVdMyJxeR'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-1GL9IzeT2ngaBaQwCIzjglar2'; style-src + 'self' 'nonce-1GL9IzeT2ngaBaQwCIzjglar2'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:36 GMT + - Mon, 04 Mar 2024 11:22:29 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -541,38 +541,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=xGaLcDSkJeTOx4zh8AVqlBJ_ryadTs4mIcFDMBqA9dI-1708594354616-0.0-604800000 + - _cfuvid=3flGn36EXcR762YsaftAywaZWSTciCkiiB.nr_1_h6c-1709551346936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497527,"iid":13141,"project_id":42823949,"title":"[SN#4] This + string: '{"id":142912435,"iid":13523,"project_id":42823949,"title":"[SN#4] This is the title of the fourth test issue","description":"\nThis is the body of the fourth test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/4) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Tue Nov 21 08:06:56 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-06)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:32:37.422Z","updated_at":"2024-02-22T09:32:37.422Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13141","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13141","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13141/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13141/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13141","relative":"#13141","full":"gridhead/protop2g-test#13141"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:22:30.581Z","updated_at":"2024-03-04T11:22:30.581Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13523","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13523","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13523/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13523/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13523","relative":"#13523","full":"gridhead/protop2g-test#13523"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 8596390afbb594b6-CCU + - 85f17d227d1c94c4-CCU Connection: - keep-alive Content-Length: - - '2192' + - '2224' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:37 GMT + - Mon, 04 Mar 2024 11:22:31 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=zd1Xb9eU3bm3qBX%2BalW8ku0bcUHAita7f5IjFNawMEpp9zeODt3lo8On1F5xeiBOOErvEGpOct5GFmDhUPAufP4Uq8j7YTMyict6JVdew7qwLeqsJGmZ5MCrjhdPgevsi6SO60pwB%2FE%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=mCk5vBguBbw05KTwxEiHrQX%2BCo9mHlPX2ir0i3uSNrn7%2BJnu%2FayES9q3F2s27v3AiySbD7MKRLjeGIhVp8ElG6RciRQM8dSxQ8keNZPoHY8tEO5bDTrsZd8shlVhUUxUpU8QnR5aY%2BU%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -581,11 +582,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"476bdb5f58fffa03a1e50bd2e3c6b10d" + - W/"469cc5119cb55d094dd66af5b5d5c447" gitlab-lb: - - haproxy-main-48-lb-gprd + - haproxy-main-07-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -597,11 +598,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"286b3c8097dddb7b2fc0f7afc8481f0d","version":"1"}' + - '{"correlation_id":"cafa71ac0a8351c9ee9868e5fdb4097b","version":"1"}' x-request-id: - - 286b3c8097dddb7b2fc0f7afc8481f0d + - cafa71ac0a8351c9ee9868e5fdb4097b x-runtime: - - '0.535511' + - '0.798804' status: code: 201 message: Created @@ -617,26 +618,27 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=xGaLcDSkJeTOx4zh8AVqlBJ_ryadTs4mIcFDMBqA9dI-1708594354616-0.0-604800000 + - _cfuvid=3flGn36EXcR762YsaftAywaZWSTciCkiiB.nr_1_h6c-1709551346936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13141 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13523 response: body: - string: '{"id":142497527,"iid":13141,"project_id":42823949,"title":"[SN#4] This + string: '{"id":142912435,"iid":13523,"project_id":42823949,"title":"[SN#4] This is the title of the fourth test issue","description":"\nThis is the body of the fourth test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/4) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Tue Nov 21 08:06:56 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-06)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:32:37.422Z","updated_at":"2024-02-22T09:32:37.422Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13141","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13141","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13141/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13141/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13141","relative":"#13141","full":"gridhead/protop2g-test#13141"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:22:30.581Z","updated_at":"2024-03-04T11:22:30.581Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13523","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13523","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13523/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13523/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13523","relative":"#13523","full":"gridhead/protop2g-test#13523"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963910aabd93c2-CCU + - 85f17d29ec3294c2-CCU Connection: - keep-alive Content-Encoding: @@ -644,11 +646,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:38 GMT + - Mon, 04 Mar 2024 11:22:32 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=zDfp9XPBa%2BfSdB%2Bi7DXKoRAUfjxGafnMohxLF3CAOcPkijSJolfjrtel5m0LTce22X5AgKO0SvnF%2BY5P%2Fdz26QlTS5Q%2Bz81l0TH7M9ygvlGMu586aopdhNbsasKlXg%2BvzRcNxfKY%2Bl8%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=PRSfIMeshf8UBW1EiXkGdj4kedzzcW6Bxf9eXbYeEPH53Vos17YO7MbNiDMb9S%2BR0oagG9FtMogqH%2FhLBeKbz4IHEOp%2FdE4pCpVM0wHuxE1vw0vJVPjRH80cY2yAT1QcO50FEb8Jjsw%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -659,11 +661,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"476bdb5f58fffa03a1e50bd2e3c6b10d" + - W/"469cc5119cb55d094dd66af5b5d5c447" gitlab-lb: - - haproxy-main-23-lb-gprd + - haproxy-main-48-lb-gprd gitlab-sv: - - api-gke-us-east1-d + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -675,11 +677,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"0ccc23f8dba9172294dadf765024e6d6","version":"1"}' + - '{"correlation_id":"da8dd901ff51aab45bbb93c6ee684fb7","version":"1"}' x-request-id: - - 0ccc23f8dba9172294dadf765024e6d6 + - da8dd901ff51aab45bbb93c6ee684fb7 x-runtime: - - '0.314566' + - '0.983417' status: code: 200 message: OK @@ -697,26 +699,28 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=xGaLcDSkJeTOx4zh8AVqlBJ_ryadTs4mIcFDMBqA9dI-1708594354616-0.0-604800000 + - _cfuvid=3flGn36EXcR762YsaftAywaZWSTciCkiiB.nr_1_h6c-1709551346936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: PUT - uri: https://gitlab.com/api/v4/projects/42823949/issues/13141 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13523 response: body: - string: '{"id":142497527,"iid":13141,"project_id":42823949,"title":"[SN#4] This + string: '{"id":142912435,"iid":13523,"project_id":42823949,"title":"[SN#4] This is the title of the fourth test issue","description":"\nThis is the body of the fourth test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/4) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Tue Nov 21 08:06:56 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-06)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"closed","created_at":"2024-02-22T09:32:37.422Z","updated_at":"2024-02-22T09:32:39.382Z","closed_at":"2024-02-22T09:32:39.372Z","closed_by":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13141","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13141","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13141/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13141/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13141","relative":"#13141","full":"gridhead/protop2g-test#13141"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"closed","created_at":"2024-03-04T11:22:30.581Z","updated_at":"2024-03-04T11:22:33.211Z","closed_at":"2024-03-04T11:22:33.197Z","closed_by":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13523","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13523","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13523/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13523/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13523","relative":"#13523","full":"gridhead/protop2g-test#13523"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963915597394b0-CCU + - 85f17d33dbfb93cb-CCU Connection: - keep-alive Content-Encoding: @@ -724,11 +728,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:39 GMT + - Mon, 04 Mar 2024 11:22:33 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=M%2BJlid8G%2F%2BsjGhC8OP%2B6tBzYK3REblDDvWgnqUtEyIekoHExgSPoS4w35SvCutqQY6EoGFZstU9Q%2FdZdrHpCPvrrHuLRZrmomfzX50FJsb3j1U4KJ912kedo0krxdMpC4qIWXG3MtKc%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=KpQDG0iHO4fM9WiBHmYadjTSJOOJwYn5Tl%2BNdfHXjIJTx2oAxNSMpasx2iiIOApoVXcXBKziOH8tLJOhi3RmtI9d9J7l3DKu%2BDCoXUEK6eEWynRhrU%2B%2BW660jqY0vXEcK9khAPinUF8%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -739,9 +743,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"b7fab2820124c89fa700b824578841c7" + - W/"2d7ec6e96b974677a09180fa8525c97f" gitlab-lb: - - haproxy-main-16-lb-gprd + - haproxy-main-28-lb-gprd gitlab-sv: - api-gke-us-east1-c referrer-policy: @@ -755,11 +759,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"f73cd4e8bbdf0d979edfb6afea1da8cf","version":"1"}' + - '{"correlation_id":"69000d458952591c4c1ecf73741a06fd","version":"1"}' x-request-id: - - f73cd4e8bbdf0d979edfb6afea1da8cf + - 69000d458952591c4c1ecf73741a06fd x-runtime: - - '0.308202' + - '0.678965' status: code: 200 message: OK @@ -782,38 +786,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=xGaLcDSkJeTOx4zh8AVqlBJ_ryadTs4mIcFDMBqA9dI-1708594354616-0.0-604800000 + - _cfuvid=3flGn36EXcR762YsaftAywaZWSTciCkiiB.nr_1_h6c-1709551346936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497530,"iid":13142,"project_id":42823949,"title":"[SN#3] This + string: '{"id":142912437,"iid":13524,"project_id":42823949,"title":"[SN#3] This is the title of the third test issue","description":"\nThis is the body of the third test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/3) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Tue Nov 21 08:03:57 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-03)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:32:40.317Z","updated_at":"2024-02-22T09:32:40.317Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13142","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13142","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13142/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13142/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13142","relative":"#13142","full":"gridhead/protop2g-test#13142"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:22:34.453Z","updated_at":"2024-03-04T11:22:34.453Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13524","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13524","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13524/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13524/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13524","relative":"#13524","full":"gridhead/protop2g-test#13524"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 8596391cdfcb94d0-CCU + - 85f17d3a6ca694b6-CCU Connection: - keep-alive Content-Length: - - '2190' + - '2222' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:40 GMT + - Mon, 04 Mar 2024 11:22:35 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=GmjfboZgrH1FCJSNKFUG2Ugsi7oQaDgak%2FwCQ4n1ehUTIIIUc%2FD5Uw46bJvGbh1Cy3%2ByKrvdTomwI3AjRYqx0oFmpeVhMLwPXQocDVs%2B9gJswOYBSlYpapah%2BptHQ3kfgGeXLBIxcB4%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=CsRoq2ycqMydsvK7zfx5OXwIJrkxDGTaUoibEfekCCpnndOf92c%2FsQvZozNscRwsFq%2BDay094cxj3GGuwtU1dq0DlUf6tNS3QtHMc13O4mLBcEfMRyFcg%2FMv0FmbYK5Fl8wi1DDjfn0%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -822,11 +827,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"2ffc69d0df8999aebb7e6ad35d4741a1" + - W/"4e44594c7e06bfe5878c2ff25769e7d8" gitlab-lb: - - haproxy-main-54-lb-gprd + - haproxy-main-26-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -838,11 +843,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"057a83104ff1cbbb62ffe55e567dad32","version":"1"}' + - '{"correlation_id":"bd2a48febb18d02dcc03f1c5e0baded1","version":"1"}' x-request-id: - - 057a83104ff1cbbb62ffe55e567dad32 + - bd2a48febb18d02dcc03f1c5e0baded1 x-runtime: - - '0.563546' + - '0.835901' status: code: 201 message: Created @@ -865,38 +870,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=xGaLcDSkJeTOx4zh8AVqlBJ_ryadTs4mIcFDMBqA9dI-1708594354616-0.0-604800000 + - _cfuvid=3flGn36EXcR762YsaftAywaZWSTciCkiiB.nr_1_h6c-1709551346936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497532,"iid":13143,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142912439,"iid":13525,"project_id":42823949,"title":"[SN#2] This is the title of the second test issue","description":"\nThis is the body of the second test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/2) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 04:01:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:32:41.234Z","updated_at":"2024-02-22T09:32:41.234Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13143","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13143","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13143/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13143/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13143","relative":"#13143","full":"gridhead/protop2g-test#13143"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:22:35.669Z","updated_at":"2024-03-04T11:22:35.669Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13525","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13525","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13525/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13525/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13525","relative":"#13525","full":"gridhead/protop2g-test#13525"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963922cdad94ce-CCU + - 85f17d41fcce94b2-CCU Connection: - keep-alive Content-Length: - - '2192' + - '2224' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:41 GMT + - Mon, 04 Mar 2024 11:22:35 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=tjV%2Bu4L2RMMLZ4fPO295xr7lV6nSAPNEIdqnxSzEKoA8KThUiQBwCaOIiM5iqS9yoh1JhnHH9nbArzUZ%2B8Q1TPzaVf8fXQ5CqQhb7ePaS02XdNWDP%2BI%2Fy2%2FJsFt6GFp0wgiZ38cJkEA%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=iMDo6%2BAgIpKXCWYhgYfWo8PGRzUJCnZt1cxDmMb8PJgUK9Rn8jJjkw4OBso4u4pwbe7F3DSo%2FNNnfVfVw9jFH%2FdhowHty3cvlMRweIbEZfhGiVJObi%2Be0URkc6ajvou6%2FrMcLfcb1Jg%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -905,11 +911,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"38e7811dbf74126eebe1f7b275dfc5e8" + - W/"e5c9444a10e67692fb356573dfdc31a0" gitlab-lb: - - haproxy-main-27-lb-gprd + - haproxy-main-46-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -921,11 +927,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"b5f28439c311779e527af70183354584","version":"1"}' + - '{"correlation_id":"70d5b54f4d8b15f1bcdd292de69d8e8e","version":"1"}' x-request-id: - - b5f28439c311779e527af70183354584 + - 70d5b54f4d8b15f1bcdd292de69d8e8e x-runtime: - - '0.493841' + - '0.510756' status: code: 201 message: Created @@ -941,26 +947,27 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=xGaLcDSkJeTOx4zh8AVqlBJ_ryadTs4mIcFDMBqA9dI-1708594354616-0.0-604800000 + - _cfuvid=3flGn36EXcR762YsaftAywaZWSTciCkiiB.nr_1_h6c-1709551346936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13143 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13525 response: body: - string: '{"id":142497532,"iid":13143,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142912439,"iid":13525,"project_id":42823949,"title":"[SN#2] This is the title of the second test issue","description":"\nThis is the body of the second test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/2) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 04:01:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:32:41.234Z","updated_at":"2024-02-22T09:32:41.234Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13143","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13143","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13143/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13143/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13143","relative":"#13143","full":"gridhead/protop2g-test#13143"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:22:35.669Z","updated_at":"2024-03-04T11:22:35.669Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13525","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13525","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13525/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13525/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13525","relative":"#13525","full":"gridhead/protop2g-test#13525"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 859639282ab394b9-CCU + - 85f17d484a8a93cb-CCU Connection: - keep-alive Content-Encoding: @@ -968,11 +975,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:42 GMT + - Mon, 04 Mar 2024 11:22:36 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=2DiMX3XLYGfbY9GeEzn135h8fZ3TEtamtm1tztNAdZ167XNBssL7FJ7lQR8ZidKezLNvgppbivsbgpAAk8enykMBy8padJXlgCbiB3TnIrEsdrKwyAGWg%2F0u1BtwvXrHUahi%2BfVnPvU%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=UnZmUYzhdfJTECM8SfvDTL6lJSoSn00m6AiqSlq1HxJeKxd4vlyJ%2BD2%2FfWRD3AnlTLex20ONIcGtZeFZoEmDs073FwRExOvaBk4Uj2jNAveAnICWiEJqo%2BmTZLD825AJqvL7f2oaw0s%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -983,9 +990,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"38e7811dbf74126eebe1f7b275dfc5e8" + - W/"e5c9444a10e67692fb356573dfdc31a0" gitlab-lb: - - haproxy-main-36-lb-gprd + - haproxy-main-60-lb-gprd gitlab-sv: - api-gke-us-east1-b referrer-policy: @@ -999,11 +1006,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"56067d23847bac5d7c7ada3b03a2d5da","version":"1"}' + - '{"correlation_id":"07258aa5916b3174db6ceb68aac606bc","version":"1"}' x-request-id: - - 56067d23847bac5d7c7ada3b03a2d5da + - 07258aa5916b3174db6ceb68aac606bc x-runtime: - - '0.152821' + - '0.152655' status: code: 200 message: OK @@ -1021,26 +1028,28 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=xGaLcDSkJeTOx4zh8AVqlBJ_ryadTs4mIcFDMBqA9dI-1708594354616-0.0-604800000 + - _cfuvid=3flGn36EXcR762YsaftAywaZWSTciCkiiB.nr_1_h6c-1709551346936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: PUT - uri: https://gitlab.com/api/v4/projects/42823949/issues/13143 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13525 response: body: - string: '{"id":142497532,"iid":13143,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142912439,"iid":13525,"project_id":42823949,"title":"[SN#2] This is the title of the second test issue","description":"\nThis is the body of the second test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/2) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 04:01:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"closed","created_at":"2024-02-22T09:32:41.234Z","updated_at":"2024-02-22T09:32:42.934Z","closed_at":"2024-02-22T09:32:42.925Z","closed_by":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13143","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13143","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13143/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13143/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13143","relative":"#13143","full":"gridhead/protop2g-test#13143"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"closed","created_at":"2024-03-04T11:22:35.669Z","updated_at":"2024-03-04T11:22:37.123Z","closed_at":"2024-03-04T11:22:37.112Z","closed_by":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13525","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13525","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13525/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13525/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13525","relative":"#13525","full":"gridhead/protop2g-test#13525"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 8596392b7c9b94ce-CCU + - 85f17d4c29b793c2-CCU Connection: - keep-alive Content-Encoding: @@ -1048,11 +1057,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:43 GMT + - Mon, 04 Mar 2024 11:22:37 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=6Gn9sfCWJSRnVrRWcW%2F%2B4rItrIGfDltnqsBjn4NoEH7XbVYTCRegAbsVaEHOWwKcVPWGgP81agFDoCNSbV3SzFVG1Oga%2FsU8bu5k3%2FZSVLRsI5tBM3d4%2FyOTdFe7wkjk09XdYoj2tZE%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=SoZ0Q00rq3NPFR6m22jOYwfvSuu3ZwmjnZ%2FPqfMtAOjsyf%2Bd2h4XJOrG%2BgLJkobYWnw3I1b45QRPTUsXZYTVa5ahZaBmE%2BPEbIQwwVsq1lzPU0yEQNaGRqzBgcQq%2FlvRFDpOz2Ry%2B4U%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1063,11 +1072,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"eb22843a56b98374e56c93d2a23d32cc" + - W/"fa09c33cc131bca58b9cf804c0fcfcaa" gitlab-lb: - - haproxy-main-10-lb-gprd + - haproxy-main-20-lb-gprd gitlab-sv: - - api-gke-us-east1-c + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -1079,11 +1088,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"e176a43e77824dbb10b2c1faf5004c6e","version":"1"}' + - '{"correlation_id":"f753c87fad50c5a562adc1a092f6b4ba","version":"1"}' x-request-id: - - e176a43e77824dbb10b2c1faf5004c6e + - f753c87fad50c5a562adc1a092f6b4ba x-runtime: - - '0.342371' + - '0.631335' status: code: 200 message: OK @@ -1106,38 +1115,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=xGaLcDSkJeTOx4zh8AVqlBJ_ryadTs4mIcFDMBqA9dI-1708594354616-0.0-604800000 + - _cfuvid=3flGn36EXcR762YsaftAywaZWSTciCkiiB.nr_1_h6c-1709551346936-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497536,"iid":13144,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142912443,"iid":13526,"project_id":42823949,"title":"[SN#1] This is the title of the first test issue","description":"\nThis is the body of the first test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/1) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 03:57:42 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/03-57)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:32:43.900Z","updated_at":"2024-02-22T09:32:43.900Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13144","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13144","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13144/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13144/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13144","relative":"#13144","full":"gridhead/protop2g-test#13144"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:22:38.395Z","updated_at":"2024-03-04T11:22:38.395Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13526","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13526","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13526/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13526/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13526","relative":"#13526","full":"gridhead/protop2g-test#13526"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 859639337cd794b0-CCU + - 85f17d533f0194b2-CCU Connection: - keep-alive Content-Length: - - '2190' + - '2222' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:44 GMT + - Mon, 04 Mar 2024 11:22:38 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=ztJ8qvsRU47lSS23OdQYZpncolm9ZFVtwVQINMz9Lxh0CakJWMjXHfwMeuabPmaUJHr9UHqKRxZvl60f8AQYysVSt9%2F823yG%2BzOj7y9u%2B2ejiUlkmT1u8j6kEQD1BCLTepKaxGJ%2BstM%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=MuFnDexJKVmXM7ViyaPGdWh7SinSl%2BdK9tDEXGxn6Tp71eWiqarNoTiwgvZanZ0wcHf8OqvClY0xGLHX1oLYEkOyp7m8bdneJtQ0WkQrMcHDLd9Y%2Fa9BR6YIK8Y4Ly6IJVWRmFPKPSc%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1146,11 +1156,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"0eebcb87a9f507771004307e6da709f8" + - W/"924a70b1dc7478ea38da3d104db2d11b" gitlab-lb: - - haproxy-main-06-lb-gprd + - haproxy-main-52-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -1162,11 +1172,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"8985868daab8db5447f209781dead760","version":"1"}' + - '{"correlation_id":"a633c31ab6165e192deebe5d97253114","version":"1"}' x-request-id: - - 8985868daab8db5447f209781dead760 + - a633c31ab6165e192deebe5d97253114 x-runtime: - - '0.539259' + - '0.476254' status: code: 201 message: Created diff --git a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with FULL status without labels, without states, without privacy and without comments the identities of which fall in the given range].yaml b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with FULL status without labels, without states, without privacy and without comments the identities of which fall in the given range].yaml index 83bfa4e..f8bb3d1 100644 --- a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with FULL status without labels, without states, without privacy and without comments the identities of which fall in the given range].yaml +++ b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with FULL status without labels, without states, without privacy and without comments the identities of which fall in the given range].yaml @@ -34,14 +34,14 @@ interactions: Content-Length: - '902' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-dUlAiHMiKtJapHKHwdl0jMlCk'; style-src - 'self' 'nonce-dUlAiHMiKtJapHKHwdl0jMlCk'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-VsJ26FmFemlC91qBWGKECe4I5'; style-src + 'self' 'nonce-VsJ26FmFemlC91qBWGKECe4I5'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:20 GMT + - Mon, 04 Mar 2024 11:24:27 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -80,14 +80,14 @@ interactions: response: body: string: '{"id":42823949,"description":null,"name":"protop2g-test","name_with_namespace":"Akashdeep - Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-02-22T09:31:08.610Z","namespace":{"id":13984834,"name":"Akashdeep + Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-03-04T11:20:52.799Z","namespace":{"id":13984834,"name":"Akashdeep Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"container_registry_image_prefix":"registry.gitlab.com/gridhead/protop2g-test","_links":{"self":"https://gitlab.com/api/v4/projects/42823949","issues":"https://gitlab.com/api/v4/projects/42823949/issues","merge_requests":"https://gitlab.com/api/v4/projects/42823949/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/42823949/repository/branches","labels":"https://gitlab.com/api/v4/projects/42823949/labels","events":"https://gitlab.com/api/v4/projects/42823949/events","members":"https://gitlab.com/api/v4/projects/42823949/members","cluster_agents":"https://gitlab.com/api/v4/projects/42823949/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"public","owner":{"id":10115999,"username":"gridhead","name":"Akashdeep - Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":5453,"description_html":"","updated_at":"2024-02-22T09:31:08.610Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":null}}' + Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":33,"description_html":"","updated_at":"2024-03-04T11:20:52.799Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":50,"notification_level":3},"group_access":null}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963b94994c94d0-CCU + - 85f18001a82093bb-CCU Connection: - keep-alive Content-Encoding: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:21 GMT + - Mon, 04 Mar 2024 11:24:28 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=ZC50ixVV98fKMo8a%2Bt9t2skk9VzVOivBFIuJAembz4bQV81tGijmmkOMXgQG%2B9hZkWNIPQs%2F6aO%2B8KrAsxaTXWYml2a%2BxL1olSxIfnnKAQHjX8VrnD4201oZsbzUMH%2FpY6FsXvVBozo%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=ouokPOwR572F%2Bn4KxAzUT1Xpd3R%2BjYTqk9GlnznUDzH4ws6nU85IhEgNrnInG%2Fe6s9Zzn4%2B9I5tkaDPQULhp6yYusOyDvo%2BUwnjsejC%2Bc%2FBtRNSLNvO0DZ2f38LIrHL%2Btdj4ffqlfis%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -110,11 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"11a7a239926e33ed21d497c4ae1a6d67" + - W/"0f070d519cf87e129225a1f8eb4fbe2f" gitlab-lb: - - haproxy-main-14-lb-gprd + - haproxy-main-52-lb-gprd gitlab-sv: - - api-gke-us-east1-d + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -126,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"32915f37ce6e0ad17b185b95a3aa0c31","version":"1"}' + - '{"correlation_id":"17c0898ca8813750ca74c37e50de31de","version":"1"}' x-request-id: - - 32915f37ce6e0ad17b185b95a3aa0c31 + - 17c0898ca8813750ca74c37e50de31de x-runtime: - - '0.183519' + - '0.144546' status: code: 200 message: OK @@ -186,14 +186,14 @@ interactions: Content-Length: - '2135' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-c8NX7gnXRZdhmGYLDLvFpmMJJ'; style-src - 'self' 'nonce-c8NX7gnXRZdhmGYLDLvFpmMJJ'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-mxOEtyTFsDQUUNFb7H5adCi8e'; style-src + 'self' 'nonce-mxOEtyTFsDQUUNFb7H5adCi8e'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:22 GMT + - Mon, 04 Mar 2024 11:24:29 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -233,38 +233,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=A6PesXtYvynbaVL6sS64s4at1IwOJV1Lq4nRtN3xJY8-1708594461364-0.0-604800000 + - _cfuvid=akmDcVncbS.et0DZKUzWox6z3HlNxHq78i9_uK9O6j8-1709551468286-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497616,"iid":13163,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142912518,"iid":13545,"project_id":42823949,"title":"[SN#1] This is the title of the first test issue","description":"\nThis is the body of the first test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/1) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 03:57:42 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/03-57)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:34:23.051Z","updated_at":"2024-02-22T09:34:23.051Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13163","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13163","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13163/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13163/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13163","relative":"#13163","full":"gridhead/protop2g-test#13163"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:24:30.126Z","updated_at":"2024-03-04T11:24:30.126Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13545","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13545","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13545/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13545/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13545","relative":"#13545","full":"gridhead/protop2g-test#13545"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963b9ec85a93c8-CCU + - 85f1800d6dbe94ce-CCU Connection: - keep-alive Content-Length: - - '2190' + - '2222' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:23 GMT + - Mon, 04 Mar 2024 11:24:30 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Y6rkJO6Zv2vVpMHuYUpQgxqMuUJd%2BTxRLXP3c%2FAxf008sfxKkjRcudYFdOUiFjHwznPcvx28a9gVZMDNrzuEUU0LzHvkMFqys%2FY%2BaLkKoi4zRJ%2BzDFceldOqgl6l2Cud4dzdgk9POf8%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=SzonqGvlICXDdhaLqqMqCKfBgSpASITaEhbFCr0na%2BLZQxutOE9h1x1FJn8u%2Bxt4W40bBjWuavkRUzJ2pbVOgfdRo765emptMq8p0K4znTbJ8tBj5C%2BVodkOvPm5En%2FkCFkMKh2VplI%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -273,11 +274,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"f8dc27de7cf08052e800d90bcbaf49c7" + - W/"d67ab7a931f55bcf7d5d83dd45bb6bb8" gitlab-lb: - - haproxy-main-30-lb-gprd + - haproxy-main-40-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -289,11 +290,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"e6ec17183f55981d06c3cc2f2799db1d","version":"1"}' + - '{"correlation_id":"bf6bdf9f93d89b34f87d35fb72e27f5a","version":"1"}' x-request-id: - - e6ec17183f55981d06c3cc2f2799db1d + - bf6bdf9f93d89b34f87d35fb72e27f5a x-runtime: - - '1.066283' + - '0.762096' status: code: 201 message: Created @@ -358,14 +359,14 @@ interactions: Content-Length: - '2784' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-ZNizBJMkYbjxRjwHZvgvFkbM7'; style-src - 'self' 'nonce-ZNizBJMkYbjxRjwHZvgvFkbM7'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-rasDzc1HP8yU6eKCpMmPd5ZoI'; style-src + 'self' 'nonce-rasDzc1HP8yU6eKCpMmPd5ZoI'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:25 GMT + - Mon, 04 Mar 2024 11:24:31 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -405,38 +406,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=A6PesXtYvynbaVL6sS64s4at1IwOJV1Lq4nRtN3xJY8-1708594461364-0.0-604800000 + - _cfuvid=akmDcVncbS.et0DZKUzWox6z3HlNxHq78i9_uK9O6j8-1709551468286-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497618,"iid":13164,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142912520,"iid":13546,"project_id":42823949,"title":"[SN#2] This is the title of the second test issue","description":"\nThis is the body of the second test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/2) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 04:01:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:34:26.454Z","updated_at":"2024-02-22T09:34:26.454Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13164","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13164","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13164/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13164/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13164","relative":"#13164","full":"gridhead/protop2g-test#13164"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:24:32.942Z","updated_at":"2024-03-04T11:24:32.942Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13546","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13546","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13546/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13546/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13546","relative":"#13546","full":"gridhead/protop2g-test#13546"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963bb38ff594c2-CCU + - 85f1801d2a5694c4-CCU Connection: - keep-alive Content-Length: - - '2192' + - '2224' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:26 GMT + - Mon, 04 Mar 2024 11:24:33 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=XDeweN7IR0q%2B5oUFHlIBLk%2FdXtaQGPfNWywWvI2xLgUeXNXv9C4x2oCIqqlGKqE24SwXpReksUjwjTyj5fmsy8We62CMis81FyoELAKfUyTCgKXJF%2BHJ0dbNpz8x3bEgt87sXS0epxA%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=7DYebcNrrCCppQXbvFmKogv5R5rp0SC6%2BuB2XwpA%2BMrc697RWfbg61brX9zQLqZ0urrnCeA%2B%2FNHzTiLhtEnYuh0DQg4Gx88aBxxXTzyiybO5WqHNhYNISMx1Lrm0vIqgdSv74474Sis%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -445,9 +447,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"c225256d788214917609813157395460" + - W/"cd7704c87cd9739e6a461054185fae6e" gitlab-lb: - - haproxy-main-07-lb-gprd + - haproxy-main-01-lb-gprd gitlab-sv: - api-gke-us-east1-c referrer-policy: @@ -461,11 +463,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"4a55bb931bcfeb51ae8ef74640776053","version":"1"}' + - '{"correlation_id":"2a77b3a897068b64d9c2b752c94ad7d3","version":"1"}' x-request-id: - - 4a55bb931bcfeb51ae8ef74640776053 + - 2a77b3a897068b64d9c2b752c94ad7d3 x-runtime: - - '0.712366' + - '1.108777' status: code: 201 message: Created diff --git a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with FULL status without labels, without states, without privacy and without comments the identities of which fall in the given selection].yaml b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with FULL status without labels, without states, without privacy and without comments the identities of which fall in the given selection].yaml index 5509592..84ac843 100644 --- a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with FULL status without labels, without states, without privacy and without comments the identities of which fall in the given selection].yaml +++ b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with FULL status without labels, without states, without privacy and without comments the identities of which fall in the given selection].yaml @@ -34,14 +34,14 @@ interactions: Content-Length: - '902' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-FHiwxZCv6e2dIYuAtq9o6dOyP'; style-src - 'self' 'nonce-FHiwxZCv6e2dIYuAtq9o6dOyP'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-0urDAFa8tHP2MX3xGIjtGqphJ'; style-src + 'self' 'nonce-0urDAFa8tHP2MX3xGIjtGqphJ'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:37 GMT + - Mon, 04 Mar 2024 11:24:47 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -80,14 +80,14 @@ interactions: response: body: string: '{"id":42823949,"description":null,"name":"protop2g-test","name_with_namespace":"Akashdeep - Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-02-22T09:31:08.610Z","namespace":{"id":13984834,"name":"Akashdeep + Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-03-04T11:20:52.799Z","namespace":{"id":13984834,"name":"Akashdeep Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"container_registry_image_prefix":"registry.gitlab.com/gridhead/protop2g-test","_links":{"self":"https://gitlab.com/api/v4/projects/42823949","issues":"https://gitlab.com/api/v4/projects/42823949/issues","merge_requests":"https://gitlab.com/api/v4/projects/42823949/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/42823949/repository/branches","labels":"https://gitlab.com/api/v4/projects/42823949/labels","events":"https://gitlab.com/api/v4/projects/42823949/events","members":"https://gitlab.com/api/v4/projects/42823949/members","cluster_agents":"https://gitlab.com/api/v4/projects/42823949/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"public","owner":{"id":10115999,"username":"gridhead","name":"Akashdeep - Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":5457,"description_html":"","updated_at":"2024-02-22T09:31:08.610Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":null}}' + Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":37,"description_html":"","updated_at":"2024-03-04T11:20:52.799Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":50,"notification_level":3},"group_access":null}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963c007ef794ce-CCU + - 85f1807efabd94b2-CCU Connection: - keep-alive Content-Encoding: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:38 GMT + - Mon, 04 Mar 2024 11:24:48 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=eJ17%2FWs9KuqX248X4HLxednorCrvB4Jni2peLrjyI9oU0IryA80dZ9YGRO9b4%2FahnpUrH1QdIbyZkpT3hagpXqvu6cExlQsTpmStPJb143HPl07HWRgEABjuaCgNuGmDGGrWP3ep%2ByE%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=UmHqJLvlpsvvUcDzYfilrpvfJhL3oc8dHNxQLFV1jNBexFNRb5XrHQ5DIyuRn6FpS6kl0hMozom8aLUZZkP0F9HPKsJfDKj5%2F6n%2F0INOSxcUKjduwQLgk8iqMwh%2FRgldqMJjB2p11Yo%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -110,9 +110,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"647b620d81693ff0b72b26766f9d867a" + - W/"7e66dbbdbad78c840e289eb311a78eaa" gitlab-lb: - - haproxy-main-03-lb-gprd + - haproxy-main-60-lb-gprd gitlab-sv: - api-gke-us-east1-b referrer-policy: @@ -126,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"39af428b967a8159871901410b2cd24c","version":"1"}' + - '{"correlation_id":"44a8d4f0d64489585cf61afbf2611249","version":"1"}' x-request-id: - - 39af428b967a8159871901410b2cd24c + - 44a8d4f0d64489585cf61afbf2611249 x-runtime: - - '0.176167' + - '0.172513' status: code: 200 message: OK @@ -186,14 +186,14 @@ interactions: Content-Length: - '2135' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-f0kiK97ubqUh86PsakCmhpbzd'; style-src - 'self' 'nonce-f0kiK97ubqUh86PsakCmhpbzd'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-eMlIDELrI21YdxXG7skjC5LfS'; style-src + 'self' 'nonce-eMlIDELrI21YdxXG7skjC5LfS'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:39 GMT + - Mon, 04 Mar 2024 11:24:50 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -233,38 +233,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=vu8WFvYnYBoMr_rXlAqCO4OhQXmFXlp2D2FwLpYVZ7g-1708594478626-0.0-604800000 + - _cfuvid=BOmvtBX3Sw4.v.hyrZpYRxPsdcc5Nmckd_SZxIsTmeA-1709551488331-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497627,"iid":13167,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142912533,"iid":13549,"project_id":42823949,"title":"[SN#1] This is the title of the first test issue","description":"\nThis is the body of the first test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/1) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 03:57:42 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/03-57)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:34:40.183Z","updated_at":"2024-02-22T09:34:40.183Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13167","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13167","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13167/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13167/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13167","relative":"#13167","full":"gridhead/protop2g-test#13167"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:24:52.315Z","updated_at":"2024-03-04T11:24:52.315Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13549","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13549","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13549/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13549/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13549","relative":"#13549","full":"gridhead/protop2g-test#13549"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963c0a8eeb94b6-CCU + - 85f18095eb3293cb-CCU Connection: - keep-alive Content-Length: - - '2190' + - '2222' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:40 GMT + - Mon, 04 Mar 2024 11:24:52 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Aih0dP4Dy54rYbJHnsYx2wQOFKBsgXJ65Kuk93wikQ8MdSquOJEHPGUDFofoxT2yWd4eYnCYwJT4T6ysSpuIMw0QbfnZZI2MHZ6jNVnL4WLehA7o6YzDhzd%2B0fbSCWJNzhHjHkAc%2FM4%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=DuQLr1y3H66tFH6pFmPqipipM%2B3qEnkceQrvpBvd9V%2BoOe7%2FGWf0nSKvGMFcdljYrOhwC%2BZ0fLBQPe8CYQYXX5O7MQZ7xPWwVN%2FdA4RD0rCZusbTLXMVf%2FCrOa%2F6hDs7bS%2BHUOrThbk%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -273,11 +274,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"d9beb1524acaed07532991138f3861eb" + - W/"84e946bbbdaf55942a6de6099e2f71f2" gitlab-lb: - - haproxy-main-12-lb-gprd + - haproxy-main-55-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -289,11 +290,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"c566cedfddb4aa17582d9b5c99b32fbd","version":"1"}' + - '{"correlation_id":"909a9f88ebfea520bca825c1bf986f4e","version":"1"}' x-request-id: - - c566cedfddb4aa17582d9b5c99b32fbd + - 909a9f88ebfea520bca825c1bf986f4e x-runtime: - - '0.465253' + - '1.180150' status: code: 201 message: Created @@ -358,14 +359,14 @@ interactions: Content-Length: - '2784' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-TggoWuxDhSrPEn1NxGhqeOuGF'; style-src - 'self' 'nonce-TggoWuxDhSrPEn1NxGhqeOuGF'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-RBj3w5a0l1APqQ6wwyLKIWr0z'; style-src + 'self' 'nonce-RBj3w5a0l1APqQ6wwyLKIWr0z'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:41 GMT + - Mon, 04 Mar 2024 11:24:54 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -405,38 +406,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=vu8WFvYnYBoMr_rXlAqCO4OhQXmFXlp2D2FwLpYVZ7g-1708594478626-0.0-604800000 + - _cfuvid=BOmvtBX3Sw4.v.hyrZpYRxPsdcc5Nmckd_SZxIsTmeA-1709551488331-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497629,"iid":13168,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142912537,"iid":13550,"project_id":42823949,"title":"[SN#2] This is the title of the second test issue","description":"\nThis is the body of the second test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/2) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 04:01:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:34:42.235Z","updated_at":"2024-02-22T09:34:42.235Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13168","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13168","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13168/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13168/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13168","relative":"#13168","full":"gridhead/protop2g-test#13168"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:24:55.365Z","updated_at":"2024-03-04T11:24:55.365Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13550","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13550","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13550/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13550/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13550","relative":"#13550","full":"gridhead/protop2g-test#13550"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963c174be494b0-CCU + - 85f180a9cde694b2-CCU Connection: - keep-alive Content-Length: - - '2192' + - '2224' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:42 GMT + - Mon, 04 Mar 2024 11:24:55 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=fZwt0PVQwlM0LiHkVV8rkgbk1PvDuzS7pDdz5ppnArAnuwi4La0I8O66a4PpseZe8bOI6pkyTKTrRx2trxONQ8r%2Blj8fu9kWJWgbe4THZgXkHqk9t9%2FRaKLr6kuJveF86px%2Bhpn%2Blcw%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=H3ps471QYuPaVNZckMfKNt0VRYAYfX01uI5QM3D9NB4LxYtSnWzXa4E9XSedOZUoH2Aor4utct2ZegQXgfrz%2F6SevCIGj5YAQLKvIIXrj9oSVEEcdZT0nwcCEFAnu47MeG7aM6Uv2Zc%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -445,9 +447,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"f638fa3fe605f79fd8b205cacfae0522" + - W/"0b99848cedc128b283c2ca5316fb7b8f" gitlab-lb: - - haproxy-main-14-lb-gprd + - haproxy-main-41-lb-gprd gitlab-sv: - api-gke-us-east1-d referrer-policy: @@ -461,11 +463,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"9bc47bf8a38b3dc8ffeb3edee03d87c9","version":"1"}' + - '{"correlation_id":"6ec7a28ad8fbd664b19d1db13be413d4","version":"1"}' x-request-id: - - 9bc47bf8a38b3dc8ffeb3edee03d87c9 + - 6ec7a28ad8fbd664b19d1db13be413d4 x-runtime: - - '0.463261' + - '0.778186' status: code: 201 message: Created diff --git a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with FULL status without labels, without states, without privacy and without comments].yaml b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with FULL status without labels, without states, without privacy and without comments].yaml index 385b5fb..935025c 100644 --- a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with FULL status without labels, without states, without privacy and without comments].yaml +++ b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with FULL status without labels, without states, without privacy and without comments].yaml @@ -34,14 +34,14 @@ interactions: Content-Length: - '902' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-UlUj2yEWj9N37iYIivlElBgvE'; style-src - 'self' 'nonce-UlUj2yEWj9N37iYIivlElBgvE'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-pG5J7GtWfEsKlbwHeizXFodAX'; style-src + 'self' 'nonce-pG5J7GtWfEsKlbwHeizXFodAX'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:17 GMT + - Mon, 04 Mar 2024 11:21:02 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -80,14 +80,14 @@ interactions: response: body: string: '{"id":42823949,"description":null,"name":"protop2g-test","name_with_namespace":"Akashdeep - Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-02-22T09:31:08.610Z","namespace":{"id":13984834,"name":"Akashdeep + Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-03-04T11:20:52.799Z","namespace":{"id":13984834,"name":"Akashdeep Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"container_registry_image_prefix":"registry.gitlab.com/gridhead/protop2g-test","_links":{"self":"https://gitlab.com/api/v4/projects/42823949","issues":"https://gitlab.com/api/v4/projects/42823949/issues","merge_requests":"https://gitlab.com/api/v4/projects/42823949/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/42823949/repository/branches","labels":"https://gitlab.com/api/v4/projects/42823949/labels","events":"https://gitlab.com/api/v4/projects/42823949/events","members":"https://gitlab.com/api/v4/projects/42823949/members","cluster_agents":"https://gitlab.com/api/v4/projects/42823949/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"public","owner":{"id":10115999,"username":"gridhead","name":"Akashdeep - Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":5424,"description_html":"","updated_at":"2024-02-22T09:31:08.610Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":null}}' + Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":4,"description_html":"","updated_at":"2024-03-04T11:20:52.799Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":50,"notification_level":3},"group_access":null}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963719bdda94b9-CCU + - 85f17b00ac2e93c5-CCU Connection: - keep-alive Content-Encoding: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:17 GMT + - Mon, 04 Mar 2024 11:21:03 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Xr5LDGiBQcn6Ltl8FwdtEWqauT3vhjXW8xH%2FyyFRsmUEL0N01oKU9xKmYXY5PPgV%2F4WwAQ8hyNxfQoXXu%2B4amTCCdyMNY12%2BmqRNythVdELUfWgCfKwlgCqBZbB0Ie2eNTVWvKk7alY%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=sueoHoPy6%2FPwarrqK1ZQ1YlEbZ0nTlho9t5bH%2FfOp0G8pU8bTAFfM6dyaAhQgHBf0PFA9bUD%2BVA3mIP8%2B84QBpgTZSPYUh8JCcgGfiFDACFNgvwnzAMNYoaC4K7t9CoVJ5jngOIEvig%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -110,9 +110,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"af03057aba5d5917b4602d7e1481594d" + - W/"080edc7081b6787a7a281443ecfed086" gitlab-lb: - - haproxy-main-26-lb-gprd + - haproxy-main-17-lb-gprd gitlab-sv: - api-gke-us-east1-d referrer-policy: @@ -126,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"7d660b44d3eaf904a613ca26a7deb12b","version":"1"}' + - '{"correlation_id":"d4c1a371dad6ff6cda6619a1978e7b1a","version":"1"}' x-request-id: - - 7d660b44d3eaf904a613ca26a7deb12b + - d4c1a371dad6ff6cda6619a1978e7b1a x-runtime: - - '0.131053' + - '0.157027' status: code: 200 message: OK @@ -300,14 +300,14 @@ interactions: Content-Length: - '10774' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-BIt7c82ew9zTfqgTcdX21QJib'; style-src - 'self' 'nonce-BIt7c82ew9zTfqgTcdX21QJib'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-Mk90kQe7qPftF4dZSNHQcjy84'; style-src + 'self' 'nonce-Mk90kQe7qPftF4dZSNHQcjy84'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:18 GMT + - Mon, 04 Mar 2024 11:21:04 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -494,14 +494,14 @@ interactions: Content-Length: - '10774' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-Y2BuXhd9Uo6Wm2jgs5OKSq2eJ'; style-src - 'self' 'nonce-Y2BuXhd9Uo6Wm2jgs5OKSq2eJ'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-kUu8mtLIiWwoaj73HmoaTLXuV'; style-src + 'self' 'nonce-kUu8mtLIiWwoaj73HmoaTLXuV'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:20 GMT + - Mon, 04 Mar 2024 11:21:06 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -541,38 +541,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=7V9LbZAb0nOKLOtJCTOWPt.yTHLstLmyPCGs4TGA_Fs-1708594277849-0.0-604800000 + - _cfuvid=kKbtttYf13HARvn65gknRsvNQmCXGHUCyK96LwmNakg-1709551263307-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497477,"iid":13127,"project_id":42823949,"title":"[SN#4] This + string: '{"id":142912387,"iid":13509,"project_id":42823949,"title":"[SN#4] This is the title of the fourth test issue","description":"\nThis is the body of the fourth test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/4) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Tue Nov 21 08:06:56 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-06)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:31:21.108Z","updated_at":"2024-02-22T09:31:21.108Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13127","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13127","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13127/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13127/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13127","relative":"#13127","full":"gridhead/protop2g-test#13127"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:21:08.110Z","updated_at":"2024-03-04T11:21:08.110Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13509","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13509","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13509/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13509/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13509","relative":"#13509","full":"gridhead/protop2g-test#13509"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 8596372def8894ce-CCU + - 85f17b1b7c9094be-CCU Connection: - keep-alive Content-Length: - - '2192' + - '2224' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:21 GMT + - Mon, 04 Mar 2024 11:21:08 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=OlFt6QiyUnEekbeU7WqjpG0qelUzlwLkBO2CYOYAAXZZ9lOc97pO62UFgjqnbq1APGFjbNudYbSvMUTxHSJvzNlNTAYTHFiUuhfUma6ShhiEk4h8fapYBKzznMp6eBTlfFDnm1iG9JA%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=A4wjvUKZWP3cnFEB%2Fz%2Ffx03GXErdTsqjpjHtD3FTNYSyBva%2FaUTzw%2BROUjpZ7IAS8vQ4C4%2BHf5S8AHDuBZ0%2BQcOiN1Ec4VO7luGGtPrqgsUXoJSqz7BylViHD3NgpxcjQ%2FQbuYgA1z0%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -581,11 +582,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"33ae50c71ae4f7c36e73b6ca67278b0b" + - W/"b927b1c5e03dc5006e159fc1609d6070" gitlab-lb: - - haproxy-main-09-lb-gprd + - haproxy-main-35-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -597,11 +598,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"b61bd37e980ebe415aed56f8511ebd38","version":"1"}' + - '{"correlation_id":"e9a8971b00499547eef0e8f6b34c0939","version":"1"}' x-request-id: - - b61bd37e980ebe415aed56f8511ebd38 + - e9a8971b00499547eef0e8f6b34c0939 x-runtime: - - '0.688467' + - '0.809896' status: code: 201 message: Created @@ -624,38 +625,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=7V9LbZAb0nOKLOtJCTOWPt.yTHLstLmyPCGs4TGA_Fs-1708594277849-0.0-604800000 + - _cfuvid=kKbtttYf13HARvn65gknRsvNQmCXGHUCyK96LwmNakg-1709551263307-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497478,"iid":13128,"project_id":42823949,"title":"[SN#3] This + string: '{"id":142912388,"iid":13510,"project_id":42823949,"title":"[SN#3] This is the title of the third test issue","description":"\nThis is the body of the third test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/3) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Tue Nov 21 08:03:57 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-03)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:31:22.157Z","updated_at":"2024-02-22T09:31:22.157Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13128","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13128","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13128/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13128/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13128","relative":"#13128","full":"gridhead/protop2g-test#13128"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:21:09.515Z","updated_at":"2024-03-04T11:21:09.515Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13510","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13510","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13510/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13510/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13510","relative":"#13510","full":"gridhead/protop2g-test#13510"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 859637349cb194b2-CCU + - 85f17b268b3f93bb-CCU Connection: - keep-alive Content-Length: - - '2190' + - '2222' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:22 GMT + - Mon, 04 Mar 2024 11:21:10 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=PiK46YUrHOal5FvNrth0vn3olWpOU8T5lc9uf9ezdE2rWKjaTZpCqU5JTUDMyWJ9mlTTRJRHYHovHQmr4Rg4ptl5XfGBlyRvsBZY5%2FPzY5hInBHp9rr5ficZpiB3XVoBEit17JuvPvs%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=LahKG2nydaTZ34Nk3T4lsGYcSykKNwPvO5BcF0JpP%2FMR0T9pTjX%2FpC8G1eJKjRXb6N0FPspnEBQAwdKlqgyTJ9IsvTdmbt1VXTK0OnLkLMQ3CO9IrKnX4T2cpS%2BxpKpT9dZf3zxmvMI%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -664,11 +666,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"290dcb053f9f1acb82ea2556e6301589" + - W/"f528a165d68b22746e4704fc6c2c9852" gitlab-lb: - - haproxy-main-39-lb-gprd + - haproxy-main-29-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -680,11 +682,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"ae2e14e159544fb1c971ac597c811f5a","version":"1"}' + - '{"correlation_id":"00259d531ba88cab1375f5a0d7f37751","version":"1"}' x-request-id: - - ae2e14e159544fb1c971ac597c811f5a + - 00259d531ba88cab1375f5a0d7f37751 x-runtime: - - '0.912854' + - '0.902495' status: code: 201 message: Created @@ -707,38 +709,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=7V9LbZAb0nOKLOtJCTOWPt.yTHLstLmyPCGs4TGA_Fs-1708594277849-0.0-604800000 + - _cfuvid=kKbtttYf13HARvn65gknRsvNQmCXGHUCyK96LwmNakg-1709551263307-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497479,"iid":13129,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142912389,"iid":13511,"project_id":42823949,"title":"[SN#2] This is the title of the second test issue","description":"\nThis is the body of the second test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/2) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 04:01:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:31:23.428Z","updated_at":"2024-02-22T09:31:23.428Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13129","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13129","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13129/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13129/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13129","relative":"#13129","full":"gridhead/protop2g-test#13129"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:21:10.997Z","updated_at":"2024-03-04T11:21:10.997Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13511","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13511","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13511/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13511/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13511","relative":"#13511","full":"gridhead/protop2g-test#13511"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 8596373cac6194b2-CCU + - 85f17b30084f93c1-CCU Connection: - keep-alive Content-Length: - - '2192' + - '2224' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:23 GMT + - Mon, 04 Mar 2024 11:21:11 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=4abDHX%2FaQpGpgBHsC999YRkwWTZBJUmAZxATaQZQJbopJflvtl3OaKvdQ8Sk0pZPhpYZiTUUg4s6TP3eizuWjCBBYlraNpEW%2BdXsa1riQ9R3Cvwa%2FZWJqvPu99RKFOK1AZd3rAlL3Tg%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=KlP27kHBu%2BmzTe9X8mSeYAMMDsBjBTF3GNghGBeDHW%2FUMC%2BA1%2FyGiDhTAZ8%2F9UfLEGbDIr%2BfIajC8aBBktvytGjz0scNbHwQkUKPimQxNow%2FZ%2B37fVOg7vTdd4NZCrlfg45d%2BBRwZXQ%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -747,11 +750,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"d7a58619bcda130c8d01406d559a1a05" + - W/"6bedb282701029899b1456903fd9c7e1" gitlab-lb: - - haproxy-main-47-lb-gprd + - haproxy-main-45-lb-gprd gitlab-sv: - - api-gke-us-east1-d + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -763,11 +766,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"948670f5b45662b196944c3088f9588e","version":"1"}' + - '{"correlation_id":"6d7d348978fa148e3e2d926ef2e05795","version":"1"}' x-request-id: - - 948670f5b45662b196944c3088f9588e + - 6d7d348978fa148e3e2d926ef2e05795 x-runtime: - - '0.478307' + - '0.867634' status: code: 201 message: Created @@ -790,38 +793,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=7V9LbZAb0nOKLOtJCTOWPt.yTHLstLmyPCGs4TGA_Fs-1708594277849-0.0-604800000 + - _cfuvid=kKbtttYf13HARvn65gknRsvNQmCXGHUCyK96LwmNakg-1709551263307-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497480,"iid":13130,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142912390,"iid":13512,"project_id":42823949,"title":"[SN#1] This is the title of the first test issue","description":"\nThis is the body of the first test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/1) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 03:57:42 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/03-57)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:31:24.352Z","updated_at":"2024-02-22T09:31:24.352Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13130","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13130","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13130/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13130/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13130","relative":"#13130","full":"gridhead/protop2g-test#13130"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:21:12.370Z","updated_at":"2024-03-04T11:21:12.370Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13512","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13512","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13512/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13512/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13512","relative":"#13512","full":"gridhead/protop2g-test#13512"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963741ee5f94bc-CCU + - 85f17b394ebc93bb-CCU Connection: - keep-alive Content-Length: - - '2190' + - '2222' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:24 GMT + - Mon, 04 Mar 2024 11:21:13 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=sZNQHfwLia37BLIJzM5K1tOBP22MVDqgV8NXQPT041WaRYvniQ8ykf%2BKnw8bG%2BT6zchM01LtK3IRaIaNaCzJDOpBtJRg8zADagKzndmBIoW7gNGf5lAvxm8F7XL%2BO5zJjIIkAqtMgbc%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=irf89PSpUXFyxfpJpvdW6LenW3SKHqvfRoH7Y4YF51V0N90D2LLBuhJ3zrVAg5%2Byuwn1V8mWWbaid82C%2BWQaGeXH9ZdXl7Qj6vIoXnQHvZSdUKAF0iI7pXu08vviQI%2FwYt0zn8Vyvq0%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -830,11 +834,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"f07c16bf636d363334680315acb610ff" + - W/"1ef08d09232ec1faa3caafcebdaa645d" gitlab-lb: - - haproxy-main-12-lb-gprd + - haproxy-main-49-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -846,11 +850,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"c1078b5cfe696772ff003721f64b178c","version":"1"}' + - '{"correlation_id":"f358750ff79600739b151901024b79b8","version":"1"}' x-request-id: - - c1078b5cfe696772ff003721f64b178c + - f358750ff79600739b151901024b79b8 x-runtime: - - '0.652029' + - '0.861455' status: code: 201 message: Created diff --git a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with OPEN status along with comments but without labels, without privacy and without states].yaml b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with OPEN status along with comments but without labels, without privacy and without states].yaml index 5dabd3d..66ccceb 100644 --- a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with OPEN status along with comments but without labels, without privacy and without states].yaml +++ b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with OPEN status along with comments but without labels, without privacy and without states].yaml @@ -34,14 +34,14 @@ interactions: Content-Length: - '902' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-AXpGXJDbYzKjAJtcrqU3Yz5Ze'; style-src - 'self' 'nonce-AXpGXJDbYzKjAJtcrqU3Yz5Ze'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-ttAyMp568SgBlNfhH5kL2U8o2'; style-src + 'self' 'nonce-ttAyMp568SgBlNfhH5kL2U8o2'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:07 GMT + - Mon, 04 Mar 2024 11:23:06 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -80,14 +80,14 @@ interactions: response: body: string: '{"id":42823949,"description":null,"name":"protop2g-test","name_with_namespace":"Akashdeep - Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-02-22T09:31:08.610Z","namespace":{"id":13984834,"name":"Akashdeep + Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-03-04T11:20:52.799Z","namespace":{"id":13984834,"name":"Akashdeep Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"container_registry_image_prefix":"registry.gitlab.com/gridhead/protop2g-test","_links":{"self":"https://gitlab.com/api/v4/projects/42823949","issues":"https://gitlab.com/api/v4/projects/42823949/issues","merge_requests":"https://gitlab.com/api/v4/projects/42823949/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/42823949/repository/branches","labels":"https://gitlab.com/api/v4/projects/42823949/labels","events":"https://gitlab.com/api/v4/projects/42823949/events","members":"https://gitlab.com/api/v4/projects/42823949/members","cluster_agents":"https://gitlab.com/api/v4/projects/42823949/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"public","owner":{"id":10115999,"username":"gridhead","name":"Akashdeep - Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":5443,"description_html":"","updated_at":"2024-02-22T09:31:08.610Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":null}}' + Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":23,"description_html":"","updated_at":"2024-03-04T11:20:52.799Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":50,"notification_level":3},"group_access":null}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 859639ca6e7c94b6-CCU + - 85f17e072ca794be-CCU Connection: - keep-alive Content-Encoding: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:08 GMT + - Mon, 04 Mar 2024 11:23:07 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=60oFoApXg33XDuGJVdgEGGtqtWfR9xhXHTBvts19nYwY8LTa%2FmYN%2FJ85gjz6vYhwCBP2LWRDGTCBUcgr6l01EUSYbySG9YFprTdKvG5X70VFFcem2uJpuMFv3W%2FRvQ%2FctkphN8zbrsQ%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=9Y3WHpIr0pYGJg1U%2BKBuEI3CA8Vdg44u3krQIOZBx6gNgsOOyy2cQ4Bie7BF0S%2FQTROnxAawIK0lY%2B4SQlRblivPk%2Btl%2Bezt99Iod5AT%2FJRJAneZhC21L1bS01dnve1eI0LZBlLFEvE%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -110,9 +110,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"1055abc48e165345e96965f85ac67c46" + - W/"da49438423aa7af56a59d21a4b2e4a5e" gitlab-lb: - - haproxy-main-42-lb-gprd + - haproxy-main-15-lb-gprd gitlab-sv: - api-gke-us-east1-b referrer-policy: @@ -126,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"806e01378bb36d35fdc28191a7a152d0","version":"1"}' + - '{"correlation_id":"32e522d2f46852d79242298709868a52","version":"1"}' x-request-id: - - 806e01378bb36d35fdc28191a7a152d0 + - 32e522d2f46852d79242298709868a52 x-runtime: - - '0.635668' + - '0.124104' status: code: 200 message: OK @@ -222,14 +222,14 @@ interactions: Content-Length: - '4909' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-Cqpaucyz3rcEq9MqJGmCh6zVF'; style-src - 'self' 'nonce-Cqpaucyz3rcEq9MqJGmCh6zVF'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-u61WViPqf6aVAmHYfRwhDbXJu'; style-src + 'self' 'nonce-u61WViPqf6aVAmHYfRwhDbXJu'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:09 GMT + - Mon, 04 Mar 2024 11:23:09 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -338,14 +338,14 @@ interactions: Content-Length: - '4909' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-lK5CzeuKYkXhNAWVz3hZtP7gK'; style-src - 'self' 'nonce-lK5CzeuKYkXhNAWVz3hZtP7gK'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-rBzXFrkfJ9n5rJ13hqD6trdKJ'; style-src + 'self' 'nonce-rBzXFrkfJ9n5rJ13hqD6trdKJ'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:10 GMT + - Mon, 04 Mar 2024 11:23:10 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -385,38 +385,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=JgIpr82XjV0Abka0uTU6XwYyAJmglt4Syixp_jBu.KQ-1708594388716-0.0-604800000 + - _cfuvid=j7igI2PnNPHNHDkDXwfUiVUDuYBC4S9CakvUwV_yxyM-1709551387332-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497567,"iid":13153,"project_id":42823949,"title":"[SN#3] This + string: '{"id":142912465,"iid":13535,"project_id":42823949,"title":"[SN#3] This is the title of the third test issue","description":"\nThis is the body of the third test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/3) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Tue Nov 21 08:03:57 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-03)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:33:11.863Z","updated_at":"2024-02-22T09:33:11.863Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13153","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13153","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13153/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13153/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13153","relative":"#13153","full":"gridhead/protop2g-test#13153"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:23:11.281Z","updated_at":"2024-03-04T11:23:11.281Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13535","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13535","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13535/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13535/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13535","relative":"#13535","full":"gridhead/protop2g-test#13535"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 859639df8ae693c2-CCU + - 85f17e20af5a93c2-CCU Connection: - keep-alive Content-Length: - - '2190' + - '2222' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:12 GMT + - Mon, 04 Mar 2024 11:23:11 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=wrUjhM6lhhyz6c98Bq12oyqEsb0cbAZXK5jtlWdCyReq7Rfg%2FCCLfd5LE4veHUNrJrVY9ldzugks6jjWC3agAX6gQ3EHmosxI0iEDKEDM3uobt%2BVmE0jZkjN2gbP94pVOg8B9iYWiMo%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=rsA84BTW82ThUwyURR4rAN6%2BrRh2n70YXkZLOE6ilM%2Bx2SA%2FCjnlVUZ8OfAcoRrgnEYc8Ncu8CSPf%2FWhegPTOMq6zwmiXYn1GyOR7YLDr0jXwE206K1lOvuSOWT%2F0N9hE8q9kglO%2Feg%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -425,9 +426,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"f81a8dcb05ae263804d63ed8d083f9a5" + - W/"abe48da93ce2edacd58772e0d6391938" gitlab-lb: - - haproxy-main-01-lb-gprd + - haproxy-main-07-lb-gprd gitlab-sv: - api-gke-us-east1-c referrer-policy: @@ -441,11 +442,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"071d3f5567a96ed3a1fb819b5581ef72","version":"1"}' + - '{"correlation_id":"b7146d0580c7c352f96f34442b02f1fa","version":"1"}' x-request-id: - - 071d3f5567a96ed3a1fb819b5581ef72 + - b7146d0580c7c352f96f34442b02f1fa x-runtime: - - '1.168982' + - '0.892341' status: code: 201 message: Created @@ -461,26 +462,27 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=JgIpr82XjV0Abka0uTU6XwYyAJmglt4Syixp_jBu.KQ-1708594388716-0.0-604800000 + - _cfuvid=j7igI2PnNPHNHDkDXwfUiVUDuYBC4S9CakvUwV_yxyM-1709551387332-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13153 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13535 response: body: - string: '{"id":142497567,"iid":13153,"project_id":42823949,"title":"[SN#3] This + string: '{"id":142912465,"iid":13535,"project_id":42823949,"title":"[SN#3] This is the title of the third test issue","description":"\nThis is the body of the third test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/3) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Tue Nov 21 08:03:57 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-03)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:33:11.863Z","updated_at":"2024-02-22T09:33:11.863Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13153","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13153","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13153/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13153/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13153","relative":"#13153","full":"gridhead/protop2g-test#13153"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:23:11.281Z","updated_at":"2024-03-04T11:23:11.281Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13535","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13535","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13535/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13535/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13535","relative":"#13535","full":"gridhead/protop2g-test#13535"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 859639eaacbd94c4-CCU + - 85f17e28fcc194b9-CCU Connection: - keep-alive Content-Encoding: @@ -488,11 +490,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:13 GMT + - Mon, 04 Mar 2024 11:23:12 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=HliqDc8PtvIN7j6ofaYr4m%2BLeV9ZhxR%2FHOzAZPbQ%2B8C%2BPeUT%2BtyGVkCFObkvgdmBVpCLrqaeBWSViTgxuvo8dwyC4w3dP%2BrHudDFvox1LH1deuR1FF0Gv%2Fzesuidipjta5zM6wejMl4%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=IbwRPCRTNImXgIp6hzWKo5E%2B%2FWOacZep1mM7tZ7FiOBTB9KFSb9TGXIHjhuGG6QgOnNdcm1T7FcWqQpAJCciIbiHylxEQuA%2BYRo7QjjHwE69wLDT4EUL86hSzM82vvuNvqess67gmFU%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -503,9 +505,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"f81a8dcb05ae263804d63ed8d083f9a5" + - W/"abe48da93ce2edacd58772e0d6391938" gitlab-lb: - - haproxy-main-47-lb-gprd + - haproxy-main-44-lb-gprd gitlab-sv: - api-gke-us-east1-d referrer-policy: @@ -519,11 +521,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"a2a4b02634f766bd44ac1cf25f5861e9","version":"1"}' + - '{"correlation_id":"81aa3559dbb155bbc687a061be443714","version":"1"}' x-request-id: - - a2a4b02634f766bd44ac1cf25f5861e9 + - 81aa3559dbb155bbc687a061be443714 x-runtime: - - '0.129591' + - '0.166070' status: code: 200 message: OK @@ -546,25 +548,25 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=JgIpr82XjV0Abka0uTU6XwYyAJmglt4Syixp_jBu.KQ-1708594388716-0.0-604800000 + - _cfuvid=j7igI2PnNPHNHDkDXwfUiVUDuYBC4S9CakvUwV_yxyM-1709551387332-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/13153/discussions + uri: https://gitlab.com/api/v4/projects/42823949/issues/13535/discussions response: body: - string: '{"id":"2ebd9b3f5cde00405dcbf26f62f6d03dca8a2d30","individual_note":false,"notes":[{"id":1784524840,"type":"DiscussionNote","body":"\nThis + string: '{"id":"4950aa2993ffb8c6b087d4780abb3b432483a981","individual_note":false,"notes":[{"id":1799291979,"type":"DiscussionNote","body":"\nThis is the first comment under the third test issue\n\n_This comment was originally created [here](https://pagure.io/protop2g-test-srce/issue/3#comment-885229) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) under\n[this](https://pagure.io/protop2g-test-srce/issue/3) issue ticket on a Pagure repository, [**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) on\n[**Tue Nov 21 08:04:40 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-04)._\n\n_This - comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2024-02-22T09:33:13.788Z","updated_at":"2024-02-22T09:33:13.788Z","system":false,"noteable_id":142497567,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13153,"commands_changes":{}}]}' + comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"created_at":"2024-03-04T11:23:13.357Z","updated_at":"2024-03-04T11:23:13.357Z","system":false,"noteable_id":142912465,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13535,"commands_changes":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 859639edbf3794c4-CCU + - 85f17e2d7e5393c1-CCU Connection: - keep-alive Content-Length: @@ -572,11 +574,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:14 GMT + - Mon, 04 Mar 2024 11:23:13 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=deEhyeUOaN6LEGneGnF%2BANn3X7RTke7N6Y%2BeLBgYbO0vtEkGusSJfAt8gX8HrntfME8LGDUT4LC7BGD%2BeFY84n%2BQcDN9BHteNpjN7lbkHGBO3%2FOoZXJ3nIEq7f91Z87pu88k4%2Bvhpbg%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=xJTOhfrMg%2FoBO%2BM4abmSIHM5%2FYabSTd1FnS3XEeLyLoelx%2BreKKo9h%2FPFhz8OxgyQTsfypsnCt%2Bg%2F2fVYeaS6IFX120YLWCY8RZEfLv0pxDI4QMaYEeVFb7%2FmZOn3NutPcOOEs7XZ9Y%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -585,9 +587,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"2ed6bfc68d20880c1c5eb464a5b480f0" + - W/"ef878edcb22840fbf42f2949a2e0bab3" gitlab-lb: - - haproxy-main-06-lb-gprd + - haproxy-main-36-lb-gprd gitlab-sv: - api-gke-us-east1-b referrer-policy: @@ -601,11 +603,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"4ebf690e2d6a066db5acaf3c33f1152a","version":"1"}' + - '{"correlation_id":"de3200908258d6115e50eebe51d4ab1f","version":"1"}' x-request-id: - - 4ebf690e2d6a066db5acaf3c33f1152a + - de3200908258d6115e50eebe51d4ab1f x-runtime: - - '0.920911' + - '0.432937' status: code: 201 message: Created @@ -621,26 +623,27 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=JgIpr82XjV0Abka0uTU6XwYyAJmglt4Syixp_jBu.KQ-1708594388716-0.0-604800000 + - _cfuvid=j7igI2PnNPHNHDkDXwfUiVUDuYBC4S9CakvUwV_yxyM-1709551387332-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13153 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13535 response: body: - string: '{"id":142497567,"iid":13153,"project_id":42823949,"title":"[SN#3] This + string: '{"id":142912465,"iid":13535,"project_id":42823949,"title":"[SN#3] This is the title of the third test issue","description":"\nThis is the body of the third test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/3) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Tue Nov 21 08:03:57 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-03)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:33:11.863Z","updated_at":"2024-02-22T09:33:11.863Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":1,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13153","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13153","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13153/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13153/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13153","relative":"#13153","full":"gridhead/protop2g-test#13153"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:23:11.281Z","updated_at":"2024-03-04T11:23:11.281Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":1,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13535","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13535","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13535/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13535/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13535","relative":"#13535","full":"gridhead/protop2g-test#13535"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 859639f5fd3b94bc-CCU + - 85f17e329b7d94ce-CCU Connection: - keep-alive Content-Encoding: @@ -648,11 +651,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:15 GMT + - Mon, 04 Mar 2024 11:23:14 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=k35vP0C3GZ9oB%2FXoluPVEsnlq131bI2bfiHrkdzohPmx7YdIpqQAni8Mt%2BwpbIfH9efj7jWFr1d1kqjQsvSbk%2BI12yzSIlQ4RlSmPozUvWmjznLJvYNzcL%2BdD3H%2B%2FNZyp2hvibXETho%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=CnNUxSgvJL8RFujmS%2FK9XwQtRPejpieN3VqVYVkyx633lg1HkaRts5vyUC4ZUk%2B5COFkLR6BokN7CPXc86Y7DsCsgzp3efCJy8KSjF4TG4aVUnv7UdgA1Ob7v%2Bcx9sSHgaDuPZWo4vs%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -663,11 +666,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"823f761973e834ecad1e7b704de8c0c1" + - W/"2a1ca0f7e29cfe11f33347bd6b7d87c9" gitlab-lb: - - haproxy-main-19-lb-gprd + - haproxy-main-05-lb-gprd gitlab-sv: - - api-gke-us-east1-c + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -679,11 +682,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"8bb3fa75cf76bc6b164af175279af75a","version":"1"}' + - '{"correlation_id":"988e54206274523c33dfd94b31bfea5a","version":"1"}' x-request-id: - - 8bb3fa75cf76bc6b164af175279af75a + - 988e54206274523c33dfd94b31bfea5a x-runtime: - - '0.184914' + - '0.231319' status: code: 200 message: OK @@ -706,25 +709,25 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=JgIpr82XjV0Abka0uTU6XwYyAJmglt4Syixp_jBu.KQ-1708594388716-0.0-604800000 + - _cfuvid=j7igI2PnNPHNHDkDXwfUiVUDuYBC4S9CakvUwV_yxyM-1709551387332-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/13153/discussions + uri: https://gitlab.com/api/v4/projects/42823949/issues/13535/discussions response: body: - string: '{"id":"0fb17aaa0e6b288f3bde7da9a050cecffcf3b550","individual_note":false,"notes":[{"id":1784524899,"type":"DiscussionNote","body":"\nThis + string: '{"id":"cf8ee26916e33a573b92fee63f9a755bb5a0d6b6","individual_note":false,"notes":[{"id":1799292017,"type":"DiscussionNote","body":"\nThis is the second comment under the third test issue\n\n_This comment was originally created [here](https://pagure.io/protop2g-test-srce/issue/3#comment-885230) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) under\n[this](https://pagure.io/protop2g-test-srce/issue/3) issue ticket on a Pagure repository, [**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) on\n[**Tue Nov 21 08:04:52 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-04)._\n\n_This - comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2024-02-22T09:33:15.919Z","updated_at":"2024-02-22T09:33:15.919Z","system":false,"noteable_id":142497567,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13153,"commands_changes":{}}]}' + comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"created_at":"2024-03-04T11:23:15.105Z","updated_at":"2024-03-04T11:23:15.105Z","system":false,"noteable_id":142912465,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13535,"commands_changes":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 859639f95ea894b9-CCU + - 85f17e37caf294c4-CCU Connection: - keep-alive Content-Length: @@ -732,11 +735,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:16 GMT + - Mon, 04 Mar 2024 11:23:15 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=sP4JEDmyTJrnb1VcDzHKvn003v2fhd%2FPSv8jZUAmrf8azSPuws6fg9qMk60sSGMK42XneGQAPM9yu1bS8cUTMPlIYGcvoeDLc49XH%2Fw6psa%2B39QXTX4NZPu9Gj7eVnivczteLEPrPT4%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Q%2B6kmjEbE1DNEr586UBrNHeww2nxlE6hMvMHfVoiGdRSRMnsbnI%2Fa35GFyq8YuGltgDLBcVxszUIh24PwP0H9Lla8lU2duj4VkuN93bVS%2BguvmJp6rcdIh4aVsJVTNDxgbHDFPM7xoU%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -745,9 +748,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"142bca099330b2067c01da0ac0de391f" + - W/"5cc47baa9056bf536a807898028733b8" gitlab-lb: - - haproxy-main-27-lb-gprd + - haproxy-main-48-lb-gprd gitlab-sv: - api-gke-us-east1-b referrer-policy: @@ -761,11 +764,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"1f600650aed5bb3526716829ce85b205","version":"1"}' + - '{"correlation_id":"fad228df6520454accb964b2e7dabbb5","version":"1"}' x-request-id: - - 1f600650aed5bb3526716829ce85b205 + - fad228df6520454accb964b2e7dabbb5 x-runtime: - - '1.138455' + - '0.543837' status: code: 201 message: Created @@ -788,38 +791,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=JgIpr82XjV0Abka0uTU6XwYyAJmglt4Syixp_jBu.KQ-1708594388716-0.0-604800000 + - _cfuvid=j7igI2PnNPHNHDkDXwfUiVUDuYBC4S9CakvUwV_yxyM-1709551387332-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497572,"iid":13154,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142912469,"iid":13536,"project_id":42823949,"title":"[SN#1] This is the title of the first test issue","description":"\nThis is the body of the first test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/1) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 03:57:42 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/03-57)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:33:17.136Z","updated_at":"2024-02-22T09:33:17.136Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13154","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13154","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13154/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13154/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13154","relative":"#13154","full":"gridhead/protop2g-test#13154"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:23:16.067Z","updated_at":"2024-03-04T11:23:16.067Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13536","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13536","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13536/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13536/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13536","relative":"#13536","full":"gridhead/protop2g-test#13536"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963a031f8894b9-CCU + - 85f17e3d8ce294b2-CCU Connection: - keep-alive Content-Length: - - '2190' + - '2222' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:17 GMT + - Mon, 04 Mar 2024 11:23:16 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=qUNS6gXje5gNzbiA%2FE4FGMY%2BS0ISzRJz7cnQJ5f0RHJ8s4%2FOXo8A2B1ElA1Wa6YXX%2FdBFpveUe58%2FUeS9HgABY4ZIVwO6EVkhKcQZVAZlk8XdxTAGRgZwfesZj6lShDT%2F3iCXaOc7sg%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=S4ynazQI1S7DWal8%2B0ADswQ1xbvwfhhibc0rqDSskQffAz3a8KdwFwByc4VfMTeaDZNaycDOLAmogdPnkU8N1LjQK0JXoJF9Hq5%2FS0fBEG5wN%2BSVDhPhNfRWFs8M9crUQNZMNmo1FXw%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -828,9 +832,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"a7442efdffeeec7665854d6ff04a7134" + - W/"3fbf1021251bef7e93e73c90634b1bc5" gitlab-lb: - - haproxy-main-52-lb-gprd + - haproxy-main-04-lb-gprd gitlab-sv: - api-gke-us-east1-c referrer-policy: @@ -844,11 +848,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"8a7858f51a4d25d413808f05c18e2903","version":"1"}' + - '{"correlation_id":"d5bf44aceb458d5ed1a50acbc88c0723","version":"1"}' x-request-id: - - 8a7858f51a4d25d413808f05c18e2903 + - d5bf44aceb458d5ed1a50acbc88c0723 x-runtime: - - '0.473669' + - '1.250287' status: code: 201 message: Created @@ -864,26 +868,27 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=JgIpr82XjV0Abka0uTU6XwYyAJmglt4Syixp_jBu.KQ-1708594388716-0.0-604800000 + - _cfuvid=j7igI2PnNPHNHDkDXwfUiVUDuYBC4S9CakvUwV_yxyM-1709551387332-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13154 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13536 response: body: - string: '{"id":142497572,"iid":13154,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142912469,"iid":13536,"project_id":42823949,"title":"[SN#1] This is the title of the first test issue","description":"\nThis is the body of the first test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/1) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 03:57:42 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/03-57)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:33:17.136Z","updated_at":"2024-02-22T09:33:17.136Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13154","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13154","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13154/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13154/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13154","relative":"#13154","full":"gridhead/protop2g-test#13154"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:23:16.067Z","updated_at":"2024-03-04T11:23:16.067Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13536","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13536","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13536/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13536/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13536","relative":"#13536","full":"gridhead/protop2g-test#13536"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963a088ced94b0-CCU + - 85f17e486f5294b6-CCU Connection: - keep-alive Content-Encoding: @@ -891,11 +896,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:17 GMT + - Mon, 04 Mar 2024 11:23:17 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Rk74cn1TYtsd2fcDVlUwIPWtGy2iReofB9TYaNvuabYcYkWWtXanryW7xWP%2BgUZJAyqHaeIu0%2BAJWYeEFdTV5fMUHaATcfM9jltykBmzzArqQkl7LXR8wKTy%2Fe32Zr0%2BZ%2BpFMpC6vbk%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=00waMNIn1WQQGu%2F0Qxc7Li15xn2JkWuX2iOr8pImzMhGYdciBuq8Y1m9g6bZweghfS2ESAdR4aOMV37KvWBvxDGDSwT5IZMSihh3QJAaM5EHBPGdXx6fDf8PKT7OTzaqXFLbMvwUXtQ%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -906,11 +911,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"a7442efdffeeec7665854d6ff04a7134" + - W/"3fbf1021251bef7e93e73c90634b1bc5" gitlab-lb: - - haproxy-main-60-lb-gprd + - haproxy-main-59-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -922,11 +927,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"801245fe810b5bcc56d8081241e1cdc2","version":"1"}' + - '{"correlation_id":"8163678bc5fcf66dab7d62e25014c338","version":"1"}' x-request-id: - - 801245fe810b5bcc56d8081241e1cdc2 + - 8163678bc5fcf66dab7d62e25014c338 x-runtime: - - '0.131598' + - '0.182156' status: code: 200 message: OK @@ -949,25 +954,25 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=JgIpr82XjV0Abka0uTU6XwYyAJmglt4Syixp_jBu.KQ-1708594388716-0.0-604800000 + - _cfuvid=j7igI2PnNPHNHDkDXwfUiVUDuYBC4S9CakvUwV_yxyM-1709551387332-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/13154/discussions + uri: https://gitlab.com/api/v4/projects/42823949/issues/13536/discussions response: body: - string: '{"id":"f36e5ded28dfd3bdc00bf43ba4af305238901790","individual_note":false,"notes":[{"id":1784524959,"type":"DiscussionNote","body":"\n**Metadata + string: '{"id":"d18699318fa87bccfeb6815f59da7d75fd87155d","individual_note":false,"notes":[{"id":1799292111,"type":"DiscussionNote","body":"\n**Metadata Update from \u0026t0xic0der**:\n- Issue tagged with: aaaa, bbbb\n\n_This comment was originally created [here](https://pagure.io/protop2g-test-srce/issue/1#comment-878471) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) under\n[this](https://pagure.io/protop2g-test-srce/issue/1) issue ticket on a Pagure repository, [**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) on\n[**Fri Oct 13 04:01:39 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2024-02-22T09:33:18.540Z","updated_at":"2024-02-22T09:33:18.540Z","system":false,"noteable_id":142497572,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13154,"commands_changes":{}}]}' + comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"created_at":"2024-03-04T11:23:18.292Z","updated_at":"2024-03-04T11:23:18.292Z","system":false,"noteable_id":142912469,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13536,"commands_changes":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963a0baf6894ce-CCU + - 85f17e4c6c0a93c2-CCU Connection: - keep-alive Content-Length: @@ -975,11 +980,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:18 GMT + - Mon, 04 Mar 2024 11:23:18 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=AS8pAtc8NWbB%2BPGk2UvuMwi28LQv%2F7Pc8HIwwAhA2D1dSwoxaGz%2B8vQ5DdvnwKUiUtZsz7NcCorUYNRjNTRMhuBHFK1Fk0LE9ytOTtQWFz1Ksw%2B99pAKglnNUbab%2FNwulhEzDdNSeBM%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=foZ%2FpAdnljmQ3sqzUiRI0Fzp%2F%2FQC%2FjP4dLC0tmAhUtryEQj3TVpThD2B%2Ferz%2FCprJDI59KDgm%2FjUFWGTqUkvpWMFhJtf8IyKodWqFmm0UaBTbPNzLsKEjGlKY33teS0pBIuAO1OERDE%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -988,11 +993,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"110356eef9650baa750d43673de55ea5" + - W/"5667f10277fe97de923aed8a67d44b8a" gitlab-lb: - - haproxy-main-22-lb-gprd + - haproxy-main-11-lb-gprd gitlab-sv: - - gke-cny-api + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -1004,11 +1009,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"0ba999219468b067a3fee4d1d4a0cb13","version":"1"}' + - '{"correlation_id":"1bfd0efb81d4b3df7842f205b908adf4","version":"1"}' x-request-id: - - 0ba999219468b067a3fee4d1d4a0cb13 + - 1bfd0efb81d4b3df7842f205b908adf4 x-runtime: - - '0.473164' + - '0.410950' status: code: 201 message: Created @@ -1024,26 +1029,27 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=JgIpr82XjV0Abka0uTU6XwYyAJmglt4Syixp_jBu.KQ-1708594388716-0.0-604800000 + - _cfuvid=j7igI2PnNPHNHDkDXwfUiVUDuYBC4S9CakvUwV_yxyM-1709551387332-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13154 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13536 response: body: - string: '{"id":142497572,"iid":13154,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142912469,"iid":13536,"project_id":42823949,"title":"[SN#1] This is the title of the first test issue","description":"\nThis is the body of the first test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/1) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 03:57:42 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/03-57)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:33:17.136Z","updated_at":"2024-02-22T09:33:17.136Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":1,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13154","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13154","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13154/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13154/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13154","relative":"#13154","full":"gridhead/protop2g-test#13154"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:23:16.067Z","updated_at":"2024-03-04T11:23:16.067Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":1,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13536","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13536","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13536/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13536/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13536","relative":"#13536","full":"gridhead/protop2g-test#13536"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963a10ed7094d0-CCU + - 85f17e5169a894b2-CCU Connection: - keep-alive Content-Encoding: @@ -1051,11 +1057,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:19 GMT + - Mon, 04 Mar 2024 11:23:19 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=H9BU8pSH1ojIIZuW2AVNvUTXcaLOssAkyCC7u0M8R%2FJwcUeaMKpyP6NDMb3w%2BLHW%2FD2%2BNW1wCPf3ykXM6IgiswAcgRQd0Pbl71w62SSz69gs4ztcxFz3y8%2F27pqs880EgWzEc389wPw%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=3JEUvXL165rq0C1u1cBlP3SDOhOcRwTdNxPTZyqJ6OS7JcrDxK5M0Da%2BPZeDEDDfr3iikpb0N%2BYVEE0Kbs87vSamxpDksGDwkMpjWiD%2BKVz94%2BB7gKBIX6T%2FJa3oZ2b80QEAGcSa3EU%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1066,11 +1072,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"dfd0b6fc5ecfa0b03ae79a33c97f820f" + - W/"152222a4f5c3f3f4f40d374a6b004e7c" gitlab-lb: - - haproxy-main-48-lb-gprd + - haproxy-main-05-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -1082,11 +1088,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"21d64a48989b39da4f0a706e65f15ab3","version":"1"}' + - '{"correlation_id":"e41cc86c2d55c68db39298d45c0d003f","version":"1"}' x-request-id: - - 21d64a48989b39da4f0a706e65f15ab3 + - e41cc86c2d55c68db39298d45c0d003f x-runtime: - - '0.166772' + - '0.128908' status: code: 200 message: OK @@ -1109,25 +1115,25 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=JgIpr82XjV0Abka0uTU6XwYyAJmglt4Syixp_jBu.KQ-1708594388716-0.0-604800000 + - _cfuvid=j7igI2PnNPHNHDkDXwfUiVUDuYBC4S9CakvUwV_yxyM-1709551387332-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/13154/discussions + uri: https://gitlab.com/api/v4/projects/42823949/issues/13536/discussions response: body: - string: '{"id":"02aee0ebe3f38f0f0d2d73f3eca6aa8ca71fff98","individual_note":false,"notes":[{"id":1784524990,"type":"DiscussionNote","body":"\nThis + string: '{"id":"a62ce070873554923c6af521425c60b0a220b7e9","individual_note":false,"notes":[{"id":1799292151,"type":"DiscussionNote","body":"\nThis is the first comment under the first test issue\n\n_This comment was originally created [here](https://pagure.io/protop2g-test-srce/issue/1#comment-878473) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) under\n[this](https://pagure.io/protop2g-test-srce/issue/1) issue ticket on a Pagure repository, [**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) on\n[**Fri Oct 13 04:04:40 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-04)._\n\n_This - comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2024-02-22T09:33:19.874Z","updated_at":"2024-02-22T09:33:19.874Z","system":false,"noteable_id":142497572,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13154,"commands_changes":{}}]}' + comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"created_at":"2024-03-04T11:23:19.828Z","updated_at":"2024-03-04T11:23:19.828Z","system":false,"noteable_id":142912469,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13536,"commands_changes":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963a14580f94b0-CCU + - 85f17e552a2593c5-CCU Connection: - keep-alive Content-Length: @@ -1135,11 +1141,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:20 GMT + - Mon, 04 Mar 2024 11:23:20 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=BP6WtessU5HyfIq7Mt4d7x56PkXVmzxJTXCqoMdsCvcEgs0x9U4BO6TDerDAKWgXXW9kiyKQDafaXx%2BBdq5wvn6KVcRUDSjVuSk%2BC7YlIaPAj2BpQ87H%2F1ZuNl8PHubrbnRgt2AAPMQ%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=la8U86oBsfEcJiXKafi3tppVU3Q54c35GDXWUvVCU6gZ6ZjX3zgl3hONxdOuiwBPrWNtYaRdl3XdJ%2BRy1Kn91Fvr2sOtLF2yGAx%2FSMGj91pG%2FdY7q4l7XXRqusvyU%2B5Zkhb1xw65JSo%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1148,11 +1154,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"7d1f3dfe35856bf84fda77f29baced29" + - W/"9644b651c684688ea3534fabccecb5cb" gitlab-lb: - - haproxy-main-53-lb-gprd + - haproxy-main-34-lb-gprd gitlab-sv: - - api-gke-us-east1-d + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -1164,11 +1170,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"d7c7cb867480f405184652eb686280e6","version":"1"}' + - '{"correlation_id":"d37341eadd6d807021742ed2e1088723","version":"1"}' x-request-id: - - d7c7cb867480f405184652eb686280e6 + - d37341eadd6d807021742ed2e1088723 x-runtime: - - '0.402158' + - '0.982173' status: code: 201 message: Created @@ -1184,26 +1190,27 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=JgIpr82XjV0Abka0uTU6XwYyAJmglt4Syixp_jBu.KQ-1708594388716-0.0-604800000 + - _cfuvid=j7igI2PnNPHNHDkDXwfUiVUDuYBC4S9CakvUwV_yxyM-1709551387332-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13154 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13536 response: body: - string: '{"id":142497572,"iid":13154,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142912469,"iid":13536,"project_id":42823949,"title":"[SN#1] This is the title of the first test issue","description":"\nThis is the body of the first test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/1) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 03:57:42 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/03-57)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:33:17.136Z","updated_at":"2024-02-22T09:33:17.136Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":2,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13154","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13154","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13154/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13154/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13154","relative":"#13154","full":"gridhead/protop2g-test#13154"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:23:16.067Z","updated_at":"2024-03-04T11:23:16.067Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":2,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13536","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13536","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13536/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13536/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13536","relative":"#13536","full":"gridhead/protop2g-test#13536"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963a19589794bf-CCU + - 85f17e5e1efe93c8-CCU Connection: - keep-alive Content-Encoding: @@ -1211,11 +1218,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:20 GMT + - Mon, 04 Mar 2024 11:23:21 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=I79nmfDSI%2B8RzJUiXpt%2FdnWC2A5QK8i8SJvD6XlTzLCGCNsu%2F7wm7AZUoBlPbNOzuscee72xs6sVNoULzM1dRtEstVRDpiIyHocwcEDCh06M3Yp%2BeAt%2FXqKId%2F8nY4Wxj0BaKKX%2Bzcs%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=%2BDzNRYwlQ606IHstN2vHeZ6WJZ5v8TJAA4ys2HSRw7gIoe7F%2FsLZCowWoUWnyaxxyZx8iSigXrdIEInWofTjLe10HSrUzZ6K%2Bh2J484IoDj2PVhGWt70L4ZP7lqB4t31drGa%2FCLOmGQ%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1226,11 +1233,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"00f1ddfdc28ab8a1441e5105f740ac68" + - W/"56ec2d553ce6732339ac3d894690e901" gitlab-lb: - - haproxy-main-39-lb-gprd + - haproxy-main-50-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - gke-cny-api referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -1242,11 +1249,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"c0e837a58547d6d85fed36b93653503d","version":"1"}' + - '{"correlation_id":"58f243995e0bb6cf39a8994a505947dd","version":"1"}' x-request-id: - - c0e837a58547d6d85fed36b93653503d + - 58f243995e0bb6cf39a8994a505947dd x-runtime: - - '0.200241' + - '0.158611' status: code: 200 message: OK @@ -1269,25 +1276,25 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=JgIpr82XjV0Abka0uTU6XwYyAJmglt4Syixp_jBu.KQ-1708594388716-0.0-604800000 + - _cfuvid=j7igI2PnNPHNHDkDXwfUiVUDuYBC4S9CakvUwV_yxyM-1709551387332-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/13154/discussions + uri: https://gitlab.com/api/v4/projects/42823949/issues/13536/discussions response: body: - string: '{"id":"0ae3cd1e78ce114c9a91f10086d389813fef4b1e","individual_note":false,"notes":[{"id":1784525031,"type":"DiscussionNote","body":"\nThis + string: '{"id":"16b91b9c6d5b9ec6e77d3e8370b3a5ee366d56c0","individual_note":false,"notes":[{"id":1799292219,"type":"DiscussionNote","body":"\nThis is the second comment under the first test issue\n\n_This comment was originally created [here](https://pagure.io/protop2g-test-srce/issue/1#comment-878474) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) under\n[this](https://pagure.io/protop2g-test-srce/issue/1) issue ticket on a Pagure repository, [**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) on\n[**Fri Oct 13 04:05:24 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-05)._\n\n_This - comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2024-02-22T09:33:21.283Z","updated_at":"2024-02-22T09:33:21.283Z","system":false,"noteable_id":142497572,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13154,"commands_changes":{}}]}' + comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"created_at":"2024-03-04T11:23:22.011Z","updated_at":"2024-03-04T11:23:22.011Z","system":false,"noteable_id":142912469,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13536,"commands_changes":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963a1ce80794b0-CCU + - 85f17e621a8f93cb-CCU Connection: - keep-alive Content-Length: @@ -1295,11 +1302,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:21 GMT + - Mon, 04 Mar 2024 11:23:22 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=8tG9CJzxrWONUjXFHitE5775%2FhTTV5u2gk4FrvpYyWqEvlqRqe2nl%2FLSC97gDw81zj0oHgSseLPkboQWlbVp6eKNostC%2FLBE8uf1VZuNzACboc3W%2BgsUHbP%2FpIL%2FV78sk7KldTk6OU4%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=I7XaqMVpx%2F6VTJwauqcaJTcsNJn8%2F6TCr4utFbW4yuungHR7AUf8wVLpkgVr4yHGeJObJnh%2BUcWmYwOwB%2FJaJewfNKCUavTruh0wzX04aIQ7YSCaCDRnY9o09empJvxaWvBDCKmSq1U%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1308,11 +1315,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"42a70afc16fe34aba1e0a520b74617d8" + - W/"3a4c5fbf0b5dad9fdcd348affa097809" gitlab-lb: - - haproxy-main-55-lb-gprd + - haproxy-main-53-lb-gprd gitlab-sv: - - api-gke-us-east1-c + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -1324,11 +1331,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"ece06ec8f002e59110925e130f7a5fbf","version":"1"}' + - '{"correlation_id":"729b30853eb9a4b2fcc407ad42f8c95c","version":"1"}' x-request-id: - - ece06ec8f002e59110925e130f7a5fbf + - 729b30853eb9a4b2fcc407ad42f8c95c x-runtime: - - '0.454746' + - '0.669694' status: code: 201 message: Created diff --git a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with OPEN status along with labels but without states, without privacy and without comments].yaml b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with OPEN status along with labels but without states, without privacy and without comments].yaml index 6b4069c..b08b030 100644 --- a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with OPEN status along with labels but without states, without privacy and without comments].yaml +++ b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with OPEN status along with labels but without states, without privacy and without comments].yaml @@ -34,14 +34,14 @@ interactions: Content-Length: - '902' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-v0zn76pInejLrzp0q5uPIpbjJ'; style-src - 'self' 'nonce-v0zn76pInejLrzp0q5uPIpbjJ'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-e6o9vcspD1T1UDRaZb1Hv49Yj'; style-src + 'self' 'nonce-e6o9vcspD1T1UDRaZb1Hv49Yj'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:45 GMT + - Mon, 04 Mar 2024 11:22:39 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -80,14 +80,14 @@ interactions: response: body: string: '{"id":42823949,"description":null,"name":"protop2g-test","name_with_namespace":"Akashdeep - Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-02-22T09:31:08.610Z","namespace":{"id":13984834,"name":"Akashdeep + Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-03-04T11:20:52.799Z","namespace":{"id":13984834,"name":"Akashdeep Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"container_registry_image_prefix":"registry.gitlab.com/gridhead/protop2g-test","_links":{"self":"https://gitlab.com/api/v4/projects/42823949","issues":"https://gitlab.com/api/v4/projects/42823949/issues","merge_requests":"https://gitlab.com/api/v4/projects/42823949/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/42823949/repository/branches","labels":"https://gitlab.com/api/v4/projects/42823949/labels","events":"https://gitlab.com/api/v4/projects/42823949/events","members":"https://gitlab.com/api/v4/projects/42823949/members","cluster_agents":"https://gitlab.com/api/v4/projects/42823949/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"public","owner":{"id":10115999,"username":"gridhead","name":"Akashdeep - Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":5435,"description_html":"","updated_at":"2024-02-22T09:31:08.610Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":null}}' + Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":15,"description_html":"","updated_at":"2024-03-04T11:20:52.799Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":50,"notification_level":3},"group_access":null}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 8596393fc9de94c4-CCU + - 85f17d5f7d0f94b6-CCU Connection: - keep-alive Content-Encoding: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:46 GMT + - Mon, 04 Mar 2024 11:22:40 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=qA0pmlqVi3LqBB6Ldch9vtF7ttrsUpERqLCf8GfIihks0WOagBzxDgh5xF%2FgZw7wnhBS1%2Fba0rl%2BOc3%2FWpaUEM9IPf6aDZQnrwkucrORSsmbNcmy8hi4UbFFYIdZi2L1Ov%2F7JmMByL8%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=aXx6u96DcdgP8wzdKOtFh26Pk%2BE4UI3FEe7LqYsIYYSWzlxlU4VFOyYurVbEQ48hynWpPxcOfO%2BU%2FHLlqKHZ0jwV7PcxRXuA%2BY7fhN6nPJTpypYCf3M8rBtv5bJ%2FI5A1aWl6BHG2CTI%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -110,9 +110,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"c87577be73250fa368591c6fd6025eec" + - W/"e1e9b82a53d67a477c96c449756d0a52" gitlab-lb: - - haproxy-main-14-lb-gprd + - haproxy-main-56-lb-gprd gitlab-sv: - api-gke-us-east1-d referrer-policy: @@ -126,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"9c149a002d85ae8cc50b62b81cca24e9","version":"1"}' + - '{"correlation_id":"ddf95b49f42f8e4ae8610519d80e2909","version":"1"}' x-request-id: - - 9c149a002d85ae8cc50b62b81cca24e9 + - ddf95b49f42f8e4ae8610519d80e2909 x-runtime: - - '0.259581' + - '0.208034' status: code: 200 message: OK @@ -222,14 +222,14 @@ interactions: Content-Length: - '4909' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-9hwdNSRZKQr2uAOUYzSVPeiMn'; style-src - 'self' 'nonce-9hwdNSRZKQr2uAOUYzSVPeiMn'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-5Xn80WBPKhRLA4D5UgadjL9GO'; style-src + 'self' 'nonce-5Xn80WBPKhRLA4D5UgadjL9GO'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:46 GMT + - Mon, 04 Mar 2024 11:22:41 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -338,14 +338,14 @@ interactions: Content-Length: - '4909' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-k2l05NinY7cXrRaf0L92iutEy'; style-src - 'self' 'nonce-k2l05NinY7cXrRaf0L92iutEy'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-MFPpDiMyP9ISqAtshKarAKO4c'; style-src + 'self' 'nonce-MFPpDiMyP9ISqAtshKarAKO4c'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:47 GMT + - Mon, 04 Mar 2024 11:22:42 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -386,38 +386,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=tfMow0JodBJsiiTzg9gQJB5nSpf6cI4Nc_tJuZit9hI-1708594366005-0.0-604800000 + - _cfuvid=NwExjI2d0Qn5R_1iCxAe16DW33dhI.B_esQHgoGkpZU-1709551360471-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497541,"iid":13145,"project_id":42823949,"title":"[SN#3] This + string: '{"id":142912445,"iid":13527,"project_id":42823949,"title":"[SN#3] This is the title of the third test issue","description":"\nThis is the body of the third test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/3) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Tue Nov 21 08:03:57 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-03)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:32:48.857Z","updated_at":"2024-02-22T09:32:48.857Z","closed_at":null,"closed_by":null,"labels":["eeee","ffff"],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13145","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13145","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13145/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13145/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13145","relative":"#13145","full":"gridhead/protop2g-test#13145"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:22:43.640Z","updated_at":"2024-03-04T11:22:43.640Z","closed_at":null,"closed_by":null,"labels":["eeee","ffff"],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13527","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13527","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13527/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13527/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13527","relative":"#13527","full":"gridhead/protop2g-test#13527"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963952281994b9-CCU + - 85f17d73c8d494bf-CCU Connection: - keep-alive Content-Length: - - '2203' + - '2235' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:49 GMT + - Mon, 04 Mar 2024 11:22:44 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=torab4T1qtNujeAf2ME7Vty8R%2FodnWAwHA63C2NaPp86tBAMSeFLMeYmev7EelwBfDTTzNRZzTgq%2BiYsFK9A3crhFD2JH%2FNcqa5Ca3NDNjpclE202Y5lM9a84qYgxgV9AmL5C7lc07s%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=GaHwPVqZ0kb5tqQ%2BOt5CtukHjD4XWER8bApSaSZxskuruNmX4NVBsattclTy1hOJ68G2cWSwGhYf%2BASrEWLBEXMjTTJpow4byyhUg1rzwj1Rk0KbVrnpp61ZOYyYWAXyCoaY18Racro%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -426,9 +427,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"6be33bda01cdee62390c413a492132e5" + - W/"3b38a21ee5ceb61db66462e243346c26" gitlab-lb: - - haproxy-main-27-lb-gprd + - haproxy-main-18-lb-gprd gitlab-sv: - api-gke-us-east1-b referrer-policy: @@ -442,11 +443,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"bd65cd1624ac979797993c52ce7fd07e","version":"1"}' + - '{"correlation_id":"736b47289b564247c33aa9244cfdbf70","version":"1"}' x-request-id: - - bd65cd1624ac979797993c52ce7fd07e + - 736b47289b564247c33aa9244cfdbf70 x-runtime: - - '0.598775' + - '0.827022' status: code: 201 message: Created @@ -470,38 +471,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=tfMow0JodBJsiiTzg9gQJB5nSpf6cI4Nc_tJuZit9hI-1708594366005-0.0-604800000 + - _cfuvid=NwExjI2d0Qn5R_1iCxAe16DW33dhI.B_esQHgoGkpZU-1709551360471-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497543,"iid":13146,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142912447,"iid":13528,"project_id":42823949,"title":"[SN#1] This is the title of the first test issue","description":"\nThis is the body of the first test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/1) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 03:57:42 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/03-57)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:32:49.816Z","updated_at":"2024-02-22T09:32:49.816Z","closed_at":null,"closed_by":null,"labels":["aaaa","bbbb"],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13146","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13146","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13146/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13146/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13146","relative":"#13146","full":"gridhead/protop2g-test#13146"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:22:44.912Z","updated_at":"2024-03-04T11:22:44.912Z","closed_at":null,"closed_by":null,"labels":["aaaa","bbbb"],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13528","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13528","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13528/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13528/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13528","relative":"#13528","full":"gridhead/protop2g-test#13528"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 859639585fc993cb-CCU + - 85f17d7bbbf094b9-CCU Connection: - keep-alive Content-Length: - - '2203' + - '2235' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:50 GMT + - Mon, 04 Mar 2024 11:22:45 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=N7OOZqZzNvaINlB7nPpRI1god5eFwbw0J4Bx5NAbqw1%2BV5uBswWTtT6gg9kiSV08fIHtWLSHO6WCRXEJu5cUUyXpVu%2FmBL0UuiB3Yy6dhS5HTGhwahGj3S%2F6IaF3j3B6zxWI1w4X11k%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=x2Y03goMsTuZD%2B%2FAteaYLkF9ppoDBlTG7yocmDLy4dZfdBY0stiBHdpPXKcOdsKmyNvG1iO9xhPnMTL5f2h%2FL%2FKGmv3MaxCux4rHWlXojQWZoBbdVaerlY9e2p4GQ2nv%2B%2FsdL5ogDH8%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -510,11 +512,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"2df979fcf38a9e8357bb605cf9c1acd8" + - W/"e9abc6f4ab007eec4d7a49d660563062" gitlab-lb: - - haproxy-main-48-lb-gprd + - haproxy-main-38-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -526,11 +528,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"f7110105df72d31e98ceeacd80854649","version":"1"}' + - '{"correlation_id":"5691339b4dc10471c1a2e725623025b9","version":"1"}' x-request-id: - - f7110105df72d31e98ceeacd80854649 + - 5691339b4dc10471c1a2e725623025b9 x-runtime: - - '0.570832' + - '0.882727' status: code: 201 message: Created diff --git a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with OPEN status along with privacy but without states, without comments and without labels].yaml b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with OPEN status along with privacy but without states, without comments and without labels].yaml index 547c88b..c8aa160 100644 --- a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with OPEN status along with privacy but without states, without comments and without labels].yaml +++ b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with OPEN status along with privacy but without states, without comments and without labels].yaml @@ -34,14 +34,14 @@ interactions: Content-Length: - '902' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-IN8RXQZNUVjarX5NYgW3hUf88'; style-src - 'self' 'nonce-IN8RXQZNUVjarX5NYgW3hUf88'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-RV8F9n1tBIPZCxr9Zz9nwsapO'; style-src + 'self' 'nonce-RV8F9n1tBIPZCxr9Zz9nwsapO'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:46 GMT + - Mon, 04 Mar 2024 11:21:39 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -80,14 +80,14 @@ interactions: response: body: string: '{"id":42823949,"description":null,"name":"protop2g-test","name_with_namespace":"Akashdeep - Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-02-22T09:31:08.610Z","namespace":{"id":13984834,"name":"Akashdeep + Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-03-04T11:20:52.799Z","namespace":{"id":13984834,"name":"Akashdeep Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"container_registry_image_prefix":"registry.gitlab.com/gridhead/protop2g-test","_links":{"self":"https://gitlab.com/api/v4/projects/42823949","issues":"https://gitlab.com/api/v4/projects/42823949/issues","merge_requests":"https://gitlab.com/api/v4/projects/42823949/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/42823949/repository/branches","labels":"https://gitlab.com/api/v4/projects/42823949/labels","events":"https://gitlab.com/api/v4/projects/42823949/events","members":"https://gitlab.com/api/v4/projects/42823949/members","cluster_agents":"https://gitlab.com/api/v4/projects/42823949/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"public","owner":{"id":10115999,"username":"gridhead","name":"Akashdeep - Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":5430,"description_html":"","updated_at":"2024-02-22T09:31:08.610Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":null}}' + Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":10,"description_html":"","updated_at":"2024-03-04T11:20:52.799Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":50,"notification_level":3},"group_access":null}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 859637d47c8494ce-CCU + - 85f17be69dae93cb-CCU Connection: - keep-alive Content-Encoding: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:47 GMT + - Mon, 04 Mar 2024 11:21:40 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=KaWoL44b9vEN2k6kdhVLtVIMFWtztO8%2Bm1o3upcEONQ1uVjpwqIFjHay1ZZHZfrQ1y3eDpS5PGYooUz81%2ByJKWrja%2FakaaxyvJ2FrsF8vDPjRqlO95JvyzopFFlDnMbW055rUKweONk%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=xI0DXvDqQv2HeC9AF3BDJUtakMNuOrtj2TCNkfca6lD%2BtZMujlkOwu27RYsdn75gebaYv2pkuVJfTtJciJiZr5BMkifPkNkuO2zXoSJQMAr8p5nkKDTmapju%2Bl7dMkoCBa9BlClvfoE%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -110,11 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"ef61ac7cb49ff5fb0f8a709a79e588fd" + - W/"e90bd1d2866b76d3285510815ac348a3" gitlab-lb: - - haproxy-main-57-lb-gprd + - haproxy-main-29-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -126,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"48d3f71164ee56c94c671c8ca778f46f","version":"1"}' + - '{"correlation_id":"ee3a7ffb08edfaeffcb23cde63ab1b76","version":"1"}' x-request-id: - - 48d3f71164ee56c94c671c8ca778f46f + - ee3a7ffb08edfaeffcb23cde63ab1b76 x-runtime: - - '0.174578' + - '0.175042' status: code: 200 message: OK @@ -222,14 +222,14 @@ interactions: Content-Length: - '4909' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-1zZAaXD3M9MfshqkU6NVcYqr6'; style-src - 'self' 'nonce-1zZAaXD3M9MfshqkU6NVcYqr6'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-nqBtdehUoEERwt3JYTLfFs1Mn'; style-src + 'self' 'nonce-nqBtdehUoEERwt3JYTLfFs1Mn'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:48 GMT + - Mon, 04 Mar 2024 11:21:40 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -338,14 +338,14 @@ interactions: Content-Length: - '4909' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-TXcsE1jtqPLVpVaKmZZay3SoE'; style-src - 'self' 'nonce-TXcsE1jtqPLVpVaKmZZay3SoE'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-JsFgssQkJ5VQUWY5BrGcZVAUM'; style-src + 'self' 'nonce-JsFgssQkJ5VQUWY5BrGcZVAUM'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:49 GMT + - Mon, 04 Mar 2024 11:21:42 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -386,38 +386,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=9ucJttwiYoqW1q.w4v_iluPiHtojQPzYOrCa5oKhdEU-1708594307753-0.0-604800000 + - _cfuvid=luFT6Wa8XDo_0efryE0eKH1SAdOE7m4XMtZMPxqQdig-1709551300136-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497494,"iid":13135,"project_id":42823949,"title":"[SN#3] This + string: '{"id":142912405,"iid":13517,"project_id":42823949,"title":"[SN#3] This is the title of the third test issue","description":"\nThis is the body of the third test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/3) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Tue Nov 21 08:03:57 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-03)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:31:52.795Z","updated_at":"2024-02-22T09:31:52.795Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":true,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13135","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13135","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13135/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13135/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13135","relative":"#13135","full":"gridhead/protop2g-test#13135"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:21:43.221Z","updated_at":"2024-03-04T11:21:43.221Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":true,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13517","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13517","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13517/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13517/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13517","relative":"#13517","full":"gridhead/protop2g-test#13517"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 859637f3ffe594ce-CCU + - 85f17bfa3c8094b0-CCU Connection: - keep-alive Content-Length: - - '2189' + - '2221' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:53 GMT + - Mon, 04 Mar 2024 11:21:43 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=HipyOMzAq9UoKedva6D%2B9tVolaKf7OBC181%2FgfbFbRNM2asbRWhPVKdjH2ZyXuXt9P4qdmVcWP0N2J%2FvQbFcocaMSMxhxGaHcH1cGOBkH83AKdZrcmhYD0bjZu8KfT2SxS6tD1JOvnU%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=l5m%2FUSKdPR7oUCe4jVf7gCDHk7z03OMkb9eynPaByf8gIWdsQLx22Zw%2FsInyXNxRrjRls8MrxKhrY6B9WzjNZlYXUsIYlmtaa2O74wsRJ2SuF1TVAVqaQm1PY40XoHSRq3KyysJn4Eg%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -426,11 +427,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"2d2e25e6edf7b1f9fd45331ae35afa02" + - W/"786afea64ac07d5c207ed1fc8dbe0054" gitlab-lb: - - haproxy-main-06-lb-gprd + - haproxy-main-05-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -442,11 +443,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"92fd32476298176ae1892021eaef85a0","version":"1"}' + - '{"correlation_id":"1e15c648a4a1a75d8dc26703bc926829","version":"1"}' x-request-id: - - 92fd32476298176ae1892021eaef85a0 + - 1e15c648a4a1a75d8dc26703bc926829 x-runtime: - - '0.578483' + - '0.834903' status: code: 201 message: Created @@ -470,38 +471,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=9ucJttwiYoqW1q.w4v_iluPiHtojQPzYOrCa5oKhdEU-1708594307753-0.0-604800000 + - _cfuvid=luFT6Wa8XDo_0efryE0eKH1SAdOE7m4XMtZMPxqQdig-1709551300136-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497496,"iid":13136,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142912406,"iid":13518,"project_id":42823949,"title":"[SN#1] This is the title of the first test issue","description":"\nThis is the body of the first test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/1) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 03:57:42 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/03-57)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:31:54.010Z","updated_at":"2024-02-22T09:31:54.010Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13136","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13136","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13136/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13136/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13136","relative":"#13136","full":"gridhead/protop2g-test#13136"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:21:44.448Z","updated_at":"2024-03-04T11:21:44.448Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13518","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13518","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13518/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13518/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13518","relative":"#13518","full":"gridhead/protop2g-test#13518"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 859637fa0ad494b6-CCU + - 85f17c01ef8394b6-CCU Connection: - keep-alive Content-Length: - - '2190' + - '2222' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:55 GMT + - Mon, 04 Mar 2024 11:21:45 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=WXie77oQ3Xi44zQHCnObcE5dhRLPNtp1TqM2DOhlt1zFHdjwtFf3lqY6W3d0aBkWbm9au9omtG%2Bijbi8oeK4cVDnLaESM4exTNcIj8gCMFkv7mfQ8DD6k6zhFZEeFgZAlc4ld6zpwaE%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=V1CYLH8zFFc9Yn5%2Bnkl2bA12wZFq8%2FJ9dO%2B8Wv8Os8kJ8dY784BODEh53Q8zIK7FTLuyphCw3N4i0LFD00wwoF379EwZfo0cMPNo58xKcz8kvlNotSoo%2F4D%2FyMKa7YugEV6RyvTsN14%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -510,9 +512,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"3e7cbf24d88391b5c0d3f36c7908fa65" + - W/"16583297e9820401c840b05b0c17ff7d" gitlab-lb: - - haproxy-main-53-lb-gprd + - haproxy-main-50-lb-gprd gitlab-sv: - api-gke-us-east1-d referrer-policy: @@ -526,11 +528,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"af7e1e118d3edfa20e5e7edd93fc6e77","version":"1"}' + - '{"correlation_id":"09e25bbb5483e0753d0d79684118e9d6","version":"1"}' x-request-id: - - af7e1e118d3edfa20e5e7edd93fc6e77 + - 09e25bbb5483e0753d0d79684118e9d6 x-runtime: - - '1.434644' + - '0.909103' status: code: 201 message: Created diff --git a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with OPEN status along with states but without comments, without privacy and without labels].yaml b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with OPEN status along with states but without comments, without privacy and without labels].yaml index d4c8157..873dc9c 100644 --- a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with OPEN status along with states but without comments, without privacy and without labels].yaml +++ b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with OPEN status along with states but without comments, without privacy and without labels].yaml @@ -34,14 +34,14 @@ interactions: Content-Length: - '902' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-ftfmuHGdHn1SL7waILCgwa1qe'; style-src - 'self' 'nonce-ftfmuHGdHn1SL7waILCgwa1qe'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-I4QJCH0UvHNTDMT9MDmKyu6hG'; style-src + 'self' 'nonce-I4QJCH0UvHNTDMT9MDmKyu6hG'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:28 GMT + - Mon, 04 Mar 2024 11:21:17 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -80,14 +80,14 @@ interactions: response: body: string: '{"id":42823949,"description":null,"name":"protop2g-test","name_with_namespace":"Akashdeep - Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-02-22T09:31:08.610Z","namespace":{"id":13984834,"name":"Akashdeep + Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-03-04T11:20:52.799Z","namespace":{"id":13984834,"name":"Akashdeep Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"container_registry_image_prefix":"registry.gitlab.com/gridhead/protop2g-test","_links":{"self":"https://gitlab.com/api/v4/projects/42823949","issues":"https://gitlab.com/api/v4/projects/42823949/issues","merge_requests":"https://gitlab.com/api/v4/projects/42823949/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/42823949/repository/branches","labels":"https://gitlab.com/api/v4/projects/42823949/labels","events":"https://gitlab.com/api/v4/projects/42823949/events","members":"https://gitlab.com/api/v4/projects/42823949/members","cluster_agents":"https://gitlab.com/api/v4/projects/42823949/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"public","owner":{"id":10115999,"username":"gridhead","name":"Akashdeep - Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":5428,"description_html":"","updated_at":"2024-02-22T09:31:08.610Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":null}}' + Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":8,"description_html":"","updated_at":"2024-03-04T11:20:52.799Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":50,"notification_level":3},"group_access":null}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 859637606db694be-CCU + - 85f17b609e6794ce-CCU Connection: - keep-alive Content-Encoding: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:29 GMT + - Mon, 04 Mar 2024 11:21:18 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=4YTqn5viExwgMMQbsnU1%2FBTjTHnKy4uhedvAkrK4u0edB9%2FJg8mQ3k2%2FrkXs%2FJCJqMk8k%2Bfgmt2dSjx5dcQZD2rqnIxLw8Pvq7aDBnmXq5Lss1SeADZhASckAqUaiXblm%2F1VeM5czw0%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=VbwGFKyLWKsCUH76qlY%2BQ0KJ3D1YXt5FERX92XPvwWdpzvRpF5b7hac0fmCj2myVZOw4vnA8HwqoFI6fp5muYVzsD7psh7ZqXoxjHilFEfVbzGEDERF8kQ5q3kPlM4XdsKbl4C4ZCL0%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -110,11 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"4f33c25044f1f3604c80a7c457d09d8f" + - W/"04fce856146ae838fc10510cc82e0412" gitlab-lb: - - haproxy-main-41-lb-gprd + - haproxy-main-54-lb-gprd gitlab-sv: - - api-gke-us-east1-d + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -126,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"ab89c3f6fd1e43a60dc2bb3939c16ad5","version":"1"}' + - '{"correlation_id":"629aca3a450b9d5041ae00ba707057a2","version":"1"}' x-request-id: - - ab89c3f6fd1e43a60dc2bb3939c16ad5 + - 629aca3a450b9d5041ae00ba707057a2 x-runtime: - - '0.312629' + - '0.119494' status: code: 200 message: OK @@ -222,14 +222,14 @@ interactions: Content-Length: - '4909' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-Kvj7aggAyn4w1alq6TzUSAmfT'; style-src - 'self' 'nonce-Kvj7aggAyn4w1alq6TzUSAmfT'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-pcLR1xW3ZQrSxLp9tJqsICU7f'; style-src + 'self' 'nonce-pcLR1xW3ZQrSxLp9tJqsICU7f'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:30 GMT + - Mon, 04 Mar 2024 11:21:20 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -338,14 +338,14 @@ interactions: Content-Length: - '4909' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-alvQ06nxAp3dbHaucNp9wL1iV'; style-src - 'self' 'nonce-alvQ06nxAp3dbHaucNp9wL1iV'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-y3UpPlnNwWKr7HbAvgIUNdzd8'; style-src + 'self' 'nonce-y3UpPlnNwWKr7HbAvgIUNdzd8'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:31 GMT + - Mon, 04 Mar 2024 11:21:22 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -385,38 +385,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=N9QYJrUbXTEURThkIFCQo0aQdLWfoZi1aepbEI_snE0-1708594289318-0.0-604800000 + - _cfuvid=FYdXtZ9KGu33VPXNenusLGatwIEDp2lTyCXb1UbEbV8-1709551278600-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497481,"iid":13131,"project_id":42823949,"title":"[SN#3] This + string: '{"id":142912397,"iid":13513,"project_id":42823949,"title":"[SN#3] This is the title of the third test issue","description":"\nThis is the body of the third test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/3) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Tue Nov 21 08:03:57 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-03)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:31:31.967Z","updated_at":"2024-02-22T09:31:31.967Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13131","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13131","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13131/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13131/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13131","relative":"#13131","full":"gridhead/protop2g-test#13131"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:21:23.034Z","updated_at":"2024-03-04T11:21:23.034Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13513","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13513","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13513/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13513/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13513","relative":"#13513","full":"gridhead/protop2g-test#13513"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 859637722e4794b9-CCU + - 85f17b7c2cc794c2-CCU Connection: - keep-alive Content-Length: - - '2190' + - '2222' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:32 GMT + - Mon, 04 Mar 2024 11:21:23 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=c%2BH2TRJwiB09iYdSI6yw6i%2FQyrMXgNMpfsHZwsRSoowN0U%2BeYtH8jKz2DfGRylMgtnMzS9%2FftuZhpVphhuQc3sv0MiS76thqgUN6Ld2yjfVbihQe1acPvP7GU1%2FvpLSnWkZJ1hJ%2F6tc%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=qzk3Ri21BRtArxupzJf9jIWXzYt2U7vpdytq1yh2WOKTZ77%2FCNvWmHIZ6Gc212y%2FlNdlQFllA9WcepRsO3Ap6ZGmQJ%2BTbFxZLNbTLpe4mDuwa5Jn9xXkYaskf4Zc%2FcoEjooooXA1OZU%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -425,11 +426,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"e962c88d6986ba29f4dd6d7764f046ce" + - W/"fc0da50adaa4effa6b04be649e640afa" gitlab-lb: - - haproxy-main-52-lb-gprd + - haproxy-main-18-lb-gprd gitlab-sv: - - api-gke-us-east1-c + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -441,11 +442,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"2fef490746a904a0d44c4f6c06874614","version":"1"}' + - '{"correlation_id":"394516dd6dfdab96447d40b2d3641792","version":"1"}' x-request-id: - - 2fef490746a904a0d44c4f6c06874614 + - 394516dd6dfdab96447d40b2d3641792 x-runtime: - - '0.471624' + - '0.464648' status: code: 201 message: Created @@ -468,38 +469,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=N9QYJrUbXTEURThkIFCQo0aQdLWfoZi1aepbEI_snE0-1708594289318-0.0-604800000 + - _cfuvid=FYdXtZ9KGu33VPXNenusLGatwIEDp2lTyCXb1UbEbV8-1709551278600-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497482,"iid":13132,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142912398,"iid":13514,"project_id":42823949,"title":"[SN#1] This is the title of the first test issue","description":"\nThis is the body of the first test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/1) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 03:57:42 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/03-57)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:31:32.889Z","updated_at":"2024-02-22T09:31:32.889Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13132","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13132","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13132/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13132/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13132","relative":"#13132","full":"gridhead/protop2g-test#13132"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:21:23.920Z","updated_at":"2024-03-04T11:21:23.920Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13514","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13514","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13514/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13514/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13514","relative":"#13514","full":"gridhead/protop2g-test#13514"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963777780b93c5-CCU + - 85f17b818b3394ce-CCU Connection: - keep-alive Content-Length: - - '2190' + - '2222' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:35 GMT + - Mon, 04 Mar 2024 11:21:24 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=KLY%2FKlXxVpI%2BDN%2BcjJsB76ESkrq%2FtkVuA8Gtq6UlGV7g%2Bizi2hYdmeB2UsHYlvaDgfoLxgu%2FYGyHcEkD7DBvyhb9%2Brnsj6%2F5TZaCtrtsIKfxJuzb5kjYpu%2BmLkY9YqIUpMqrM8VbC5A%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=ifH7ce5hTcRvcgbz7Ap%2FUSROqH10DDUbvbowSGhPoaXfQo3qFxaHk1tjXh%2FDMsiKd%2BnfcsEvX7qxfIg0O%2FK3%2BXkOkyo10Gi0usbvw4IlPN9Ng9Gndj5DViD4YRVqa1pJPzcu63Anmns%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -508,11 +510,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"a831ef8900143709a5eb5808213c95f7" + - W/"5caaefc2d68cc38a0b3e32a422300686" gitlab-lb: - - haproxy-main-12-lb-gprd + - haproxy-main-46-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -524,11 +526,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"5cf85614187f4799c6f6b049e0c834bb","version":"1"}' + - '{"correlation_id":"debea44d3d97e41d90e5d28f739882cf","version":"1"}' x-request-id: - - 5cf85614187f4799c6f6b049e0c834bb + - debea44d3d97e41d90e5d28f739882cf x-runtime: - - '2.692927' + - '0.621166' status: code: 201 message: Created diff --git a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with OPEN status without labels, without states, without privacy and without comments the identities of which fall in the given range].yaml b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with OPEN status without labels, without states, without privacy and without comments the identities of which fall in the given range].yaml index 6764565..fb11549 100644 --- a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with OPEN status without labels, without states, without privacy and without comments the identities of which fall in the given range].yaml +++ b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with OPEN status without labels, without states, without privacy and without comments the identities of which fall in the given range].yaml @@ -34,14 +34,14 @@ interactions: Content-Length: - '902' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-hzgnP2sjjoCzhRklmggY3HoLJ'; style-src - 'self' 'nonce-hzgnP2sjjoCzhRklmggY3HoLJ'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-Kr3OxheLbMNcBucHWjxYS8C8U'; style-src + 'self' 'nonce-Kr3OxheLbMNcBucHWjxYS8C8U'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:09 GMT + - Mon, 04 Mar 2024 11:24:13 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -80,14 +80,14 @@ interactions: response: body: string: '{"id":42823949,"description":null,"name":"protop2g-test","name_with_namespace":"Akashdeep - Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-02-22T09:31:08.610Z","namespace":{"id":13984834,"name":"Akashdeep + Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-03-04T11:20:52.799Z","namespace":{"id":13984834,"name":"Akashdeep Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"container_registry_image_prefix":"registry.gitlab.com/gridhead/protop2g-test","_links":{"self":"https://gitlab.com/api/v4/projects/42823949","issues":"https://gitlab.com/api/v4/projects/42823949/issues","merge_requests":"https://gitlab.com/api/v4/projects/42823949/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/42823949/repository/branches","labels":"https://gitlab.com/api/v4/projects/42823949/labels","events":"https://gitlab.com/api/v4/projects/42823949/events","members":"https://gitlab.com/api/v4/projects/42823949/members","cluster_agents":"https://gitlab.com/api/v4/projects/42823949/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"public","owner":{"id":10115999,"username":"gridhead","name":"Akashdeep - Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":5451,"description_html":"","updated_at":"2024-02-22T09:31:08.610Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":null}}' + Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":31,"description_html":"","updated_at":"2024-03-04T11:20:52.799Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":50,"notification_level":3},"group_access":null}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963b4feeff93c8-CCU + - 85f17fa9291593c5-CCU Connection: - keep-alive Content-Encoding: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:10 GMT + - Mon, 04 Mar 2024 11:24:14 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=ibxs4VDkd1Pc1GtFHW4QshFzy4z0s3C5l%2BrfyHz7Z7V9afuflGHjkJABuqPSN5gRwWOSNwmoW%2FfJlcWIRhyAQ6vmymD4Yxh1JU%2BEVnGW%2FpGkxzFv28uyXj2lAVr3UCZu%2FKRa7nTrZmc%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=9CnU8aSSnsPfHvpUheicUo1Twexcwz0gV%2BooIUHFSdC%2BDapyN2%2BevEdUOe7RM7gHgO3P7%2B35esRW0Y%2BirZ6%2BExZ7VyfKhvpsJyuCXSK6wVFCTvuS9xtgAXqLNfI%2Bd6xJZCCsjVHd%2Fz4%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -110,11 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"84ac2c4bcfcb1da74d0f845329f0e69a" + - W/"f32cb23d4af4c8544524473fa778cd6e" gitlab-lb: - - haproxy-main-23-lb-gprd + - haproxy-main-12-lb-gprd gitlab-sv: - - gke-cny-api + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -126,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"9158f1f1a3eb0dc7e35ac7631bf611e9","version":"1"}' + - '{"correlation_id":"a7ed72a88e2528160f2748625451d6a7","version":"1"}' x-request-id: - - 9158f1f1a3eb0dc7e35ac7631bf611e9 + - a7ed72a88e2528160f2748625451d6a7 x-runtime: - - '0.652112' + - '0.142007' status: code: 200 message: OK @@ -186,14 +186,14 @@ interactions: Content-Length: - '2135' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-KUUWKwtcCSr0imnheAJopfZCo'; style-src - 'self' 'nonce-KUUWKwtcCSr0imnheAJopfZCo'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-UZI5KymjhIyZP0KP2EohfazGG'; style-src + 'self' 'nonce-UZI5KymjhIyZP0KP2EohfazGG'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:11 GMT + - Mon, 04 Mar 2024 11:24:15 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -233,38 +233,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=_erDEmLbd_RHwLQgPav5pMLqexYFgC99ziLjA_SlJms-1708594450837-0.0-604800000 + - _cfuvid=rV47ijwkOs4SQYYtx9CGuzi_3EQTKOAX5PaLSv2Aezg-1709551454069-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497610,"iid":13161,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142912507,"iid":13543,"project_id":42823949,"title":"[SN#1] This is the title of the first test issue","description":"\nThis is the body of the first test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/1) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 03:57:42 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/03-57)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:34:12.411Z","updated_at":"2024-02-22T09:34:12.411Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13161","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13161","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13161/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13161/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13161","relative":"#13161","full":"gridhead/protop2g-test#13161"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:24:16.052Z","updated_at":"2024-03-04T11:24:16.052Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13543","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13543","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13543/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13543/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13543","relative":"#13543","full":"gridhead/protop2g-test#13543"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963b5c8f7494b6-CCU + - 85f17fb5792293c1-CCU Connection: - keep-alive Content-Length: - - '2190' + - '2222' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:13 GMT + - Mon, 04 Mar 2024 11:24:16 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=WA4oeFHI5Tj%2BFvCxlI6Ie4CQsykc8QppToY%2FIf2QFaYyWffMF4yGo1clbEUDzJLiGuKOSOuZyRMPIU%2BUEGiF%2BkaAcXJ6dxv3MGntcrQWMPXvEUirXEvXB5ByKj4F9VAnkk963WP%2Blcw%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=bMGxR32SpeL%2BzRzR%2FUbaXwwG9ugBNX%2FHek%2FSdE3maPMDfEwt0%2FVbSsHIDLZBFOktTZC13y2d7pao6B4Whr9MWoA7y1V5Sp2fz3RaP3P6K%2Bos7OEgSoU97Dq7pRFGFDA88b6dJDqUkAw%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -273,11 +274,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"4152f11e7a895c78ff846f7ec1fcb64e" + - W/"69a134f36a32ecd04f6db4e50f598891" gitlab-lb: - - haproxy-main-06-lb-gprd + - haproxy-main-20-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -289,11 +290,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"6adbe7ce74e2327ebb17c7de019e8c0b","version":"1"}' + - '{"correlation_id":"28c6513e2a1b80b3250e164aa996ff8d","version":"1"}' x-request-id: - - 6adbe7ce74e2327ebb17c7de019e8c0b + - 28c6513e2a1b80b3250e164aa996ff8d x-runtime: - - '0.967318' + - '0.894575' status: code: 201 message: Created @@ -358,14 +359,14 @@ interactions: Content-Length: - '2784' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-NY1Sj3Xv5z5aesx658FnKlPDS'; style-src - 'self' 'nonce-NY1Sj3Xv5z5aesx658FnKlPDS'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-9kW6hO6gblQLGUQk5E5vUw2l4'; style-src + 'self' 'nonce-9kW6hO6gblQLGUQk5E5vUw2l4'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:14 GMT + - Mon, 04 Mar 2024 11:24:17 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: diff --git a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with OPEN status without labels, without states, without privacy and without comments the identities of which fall in the given selection].yaml b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with OPEN status without labels, without states, without privacy and without comments the identities of which fall in the given selection].yaml index 3d29888..303c122 100644 --- a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with OPEN status without labels, without states, without privacy and without comments the identities of which fall in the given selection].yaml +++ b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with OPEN status without labels, without states, without privacy and without comments the identities of which fall in the given selection].yaml @@ -34,14 +34,14 @@ interactions: Content-Length: - '902' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-7cAdDjkKHTkSb3LxUoYuocRls'; style-src - 'self' 'nonce-7cAdDjkKHTkSb3LxUoYuocRls'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-ke0x8arJXK7h7t7GcrEBZd5Sr'; style-src + 'self' 'nonce-ke0x8arJXK7h7t7GcrEBZd5Sr'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:27 GMT + - Mon, 04 Mar 2024 11:24:34 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -80,14 +80,14 @@ interactions: response: body: string: '{"id":42823949,"description":null,"name":"protop2g-test","name_with_namespace":"Akashdeep - Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-02-22T09:31:08.610Z","namespace":{"id":13984834,"name":"Akashdeep + Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-03-04T11:20:52.799Z","namespace":{"id":13984834,"name":"Akashdeep Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"container_registry_image_prefix":"registry.gitlab.com/gridhead/protop2g-test","_links":{"self":"https://gitlab.com/api/v4/projects/42823949","issues":"https://gitlab.com/api/v4/projects/42823949/issues","merge_requests":"https://gitlab.com/api/v4/projects/42823949/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/42823949/repository/branches","labels":"https://gitlab.com/api/v4/projects/42823949/labels","events":"https://gitlab.com/api/v4/projects/42823949/events","members":"https://gitlab.com/api/v4/projects/42823949/members","cluster_agents":"https://gitlab.com/api/v4/projects/42823949/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"public","owner":{"id":10115999,"username":"gridhead","name":"Akashdeep - Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":5455,"description_html":"","updated_at":"2024-02-22T09:31:08.610Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":null}}' + Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":35,"description_html":"","updated_at":"2024-03-04T11:20:52.799Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":50,"notification_level":3},"group_access":null}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963bc08ccf93cb-CCU + - 85f1802f8fe994bc-CCU Connection: - keep-alive Content-Encoding: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:28 GMT + - Mon, 04 Mar 2024 11:24:35 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=d6xzSP2wAn%2Fp%2BjlIys3ZzF%2FVV1ClHErp12ecs7efbW%2FDsRm%2FvthLojq2Whk6d6UAaDGphJlqi7DbTqq7xg1xpi5C1viGKBOjwk2UWxOmoPsUVe5CFeIfPtqf76Eo8iXFXcJ3bWZCSUs%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=eYL2JQagGLaKwe5geDa5JCY%2BHpbLf%2FQTpK9ENQZcrnVZAF5xRpvuQEXrxRPTpuuGb0Rn2Ghi2YTHqqbxwZlgBkKHSt9n9sBX%2FZd8QgKeVY73YQVMrMukd7PCeQ%2FqRuHpM%2Bpg6Vzy760%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -110,11 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"0f091f2692a856b9bd68e6fdf015daf7" + - W/"d9399fadb46dc1ee737455896cf4e975" gitlab-lb: - - haproxy-main-50-lb-gprd + - haproxy-main-60-lb-gprd gitlab-sv: - - api-gke-us-east1-d + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -126,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"e1182dc920d2e4824ac80b34c3b174fb","version":"1"}' + - '{"correlation_id":"5f6b9fe59f25c7d5e18a5a386f2c1e44","version":"1"}' x-request-id: - - e1182dc920d2e4824ac80b34c3b174fb + - 5f6b9fe59f25c7d5e18a5a386f2c1e44 x-runtime: - - '0.303001' + - '0.160501' status: code: 200 message: OK @@ -186,14 +186,14 @@ interactions: Content-Length: - '2135' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-zHUfFEXGA5JcR8c8dYhzH81yM'; style-src - 'self' 'nonce-zHUfFEXGA5JcR8c8dYhzH81yM'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-ZNSR5vzEQDwTi5rKieGwccDxJ'; style-src + 'self' 'nonce-ZNSR5vzEQDwTi5rKieGwccDxJ'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:29 GMT + - Mon, 04 Mar 2024 11:24:37 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -233,38 +233,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=lSqFtrBGI8.Ij0cf7MDjoQmp_bJ77xbqdw0DM1HF.Vs-1708594468528-0.0-604800000 + - _cfuvid=P5jbmGRe3zXtPvu08kOfY67NK21u3cxTgzPFNrg39xY-1709551475622-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497622,"iid":13165,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142912523,"iid":13547,"project_id":42823949,"title":"[SN#1] This is the title of the first test issue","description":"\nThis is the body of the first test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/1) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 03:57:42 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/03-57)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:34:30.167Z","updated_at":"2024-02-22T09:34:30.167Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13165","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13165","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13165/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13165/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13165","relative":"#13165","full":"gridhead/protop2g-test#13165"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:24:39.158Z","updated_at":"2024-03-04T11:24:39.158Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13547","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13547","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13547/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13547/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13547","relative":"#13547","full":"gridhead/protop2g-test#13547"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963bcb2cd194b2-CCU + - 85f1804259f994b0-CCU Connection: - keep-alive Content-Length: - - '2190' + - '2222' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:30 GMT + - Mon, 04 Mar 2024 11:24:39 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=EUeffiHi6dhuCxM0CwCYijyagM7wHf0bQrCyJxvFd4KKGSooOUVOVCEzCAlG3AVduNb5ipv0bKUm6gqT1vvLTLf1w8%2FmtlWqf77siGN6nY2gGnEG7ew%2FF0OdGh2MjMAdDO7UylbRNog%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=u3pLLCzG89hSVm61geNCQc1bmqIqY3MkqBjUlnaKTtEtSnR3Tn5S86RpsqCHtm5u6VhbxQiFOePM23w7nw0OCaG6UYW0U8RoU%2BY03D5mUNgHu66bMYdkShQdIf0tOOB89vwOBLY7V9w%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -273,11 +274,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"1b3df244caf837bb9cb18c89861dc3b5" + - W/"592911fdca448e0bb64b78c13b88e23b" gitlab-lb: - - haproxy-main-38-lb-gprd + - haproxy-main-24-lb-gprd gitlab-sv: - - api-gke-us-east1-d + - gke-cny-api referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -289,11 +290,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"dde881221c4fdad94bc769319411577f","version":"1"}' + - '{"correlation_id":"c51806fb23f4ad99d02dc519ac8aa7a6","version":"1"}' x-request-id: - - dde881221c4fdad94bc769319411577f + - c51806fb23f4ad99d02dc519ac8aa7a6 x-runtime: - - '0.682477' + - '0.885054' status: code: 201 message: Created @@ -358,14 +359,14 @@ interactions: Content-Length: - '2784' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-K7MyJOcCdwa6yQ0exrM4i9DMw'; style-src - 'self' 'nonce-K7MyJOcCdwa6yQ0exrM4i9DMw'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-l8KkEVW9Nc7YI8L9bzufYVPf6'; style-src + 'self' 'nonce-l8KkEVW9Nc7YI8L9bzufYVPf6'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:31 GMT + - Mon, 04 Mar 2024 11:24:40 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: diff --git a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with OPEN status without labels, without states, without privacy and without comments].yaml b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with OPEN status without labels, without states, without privacy and without comments].yaml index 66b094a..4b23724 100644 --- a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with OPEN status without labels, without states, without privacy and without comments].yaml +++ b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with OPEN status without labels, without states, without privacy and without comments].yaml @@ -34,14 +34,14 @@ interactions: Content-Length: - '902' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-Iythyzgr1Q8nV8RS4DhfJrXc9'; style-src - 'self' 'nonce-Iythyzgr1Q8nV8RS4DhfJrXc9'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-FHM7ldfvQGg5obAuuWjelxIZ3'; style-src + 'self' 'nonce-FHM7ldfvQGg5obAuuWjelxIZ3'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:03 GMT + - Mon, 04 Mar 2024 11:20:48 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -80,14 +80,14 @@ interactions: response: body: string: '{"id":42823949,"description":null,"name":"protop2g-test","name_with_namespace":"Akashdeep - Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-02-22T08:02:54.876Z","namespace":{"id":13984834,"name":"Akashdeep + Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-03-04T09:30:52.564Z","namespace":{"id":13984834,"name":"Akashdeep Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"container_registry_image_prefix":"registry.gitlab.com/gridhead/protop2g-test","_links":{"self":"https://gitlab.com/api/v4/projects/42823949","issues":"https://gitlab.com/api/v4/projects/42823949/issues","merge_requests":"https://gitlab.com/api/v4/projects/42823949/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/42823949/repository/branches","labels":"https://gitlab.com/api/v4/projects/42823949/labels","events":"https://gitlab.com/api/v4/projects/42823949/events","members":"https://gitlab.com/api/v4/projects/42823949/members","cluster_agents":"https://gitlab.com/api/v4/projects/42823949/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"public","owner":{"id":10115999,"username":"gridhead","name":"Akashdeep - Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":5420,"description_html":"","updated_at":"2024-02-22T08:02:54.876Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":null}}' + Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":0,"description_html":"","updated_at":"2024-03-04T09:30:52.564Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":50,"notification_level":3},"group_access":null}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 859636c84bee94b9-CCU + - 85f17aaa0aa494be-CCU Connection: - keep-alive Content-Encoding: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:04 GMT + - Mon, 04 Mar 2024 11:20:49 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=%2BRACvElFh1OL4B1S90GKsU1y%2F9FaL4DQK1QBcUn93uNteeY8C1mJCUMRfzZHbysAkaygbwRicp9eA%2FgqO9loclYX5x4peRUI%2FSPum3uRguWfoDPPhRcD9FXx8d6lSxxXuML2gj7OK68%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=qPsIBo7ZeXeO8fTraM0wXDNGqEZnSO7D8z1soXbXz%2B0vZtleaSq9crSPaOL9VjjMG36INxxdSy3FvexV5713Y5qJiemOWg4BFSmKQQ22XUy%2FSs5sbLRz%2FbHaBb0asYAixWBrB%2FWnXQk%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -110,9 +110,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"e768b1f9e7e07ca4b0971d66d8a85752" + - W/"8e70f7feb994621dcaf66ca30ae227f1" gitlab-lb: - - haproxy-main-57-lb-gprd + - haproxy-main-60-lb-gprd gitlab-sv: - gke-cny-api referrer-policy: @@ -126,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"d36af7bf3311a2c6bf460892818fee6b","version":"1"}' + - '{"correlation_id":"7f7b501703c50bd5a3cff2cd801a00fd","version":"1"}' x-request-id: - - d36af7bf3311a2c6bf460892818fee6b + - 7f7b501703c50bd5a3cff2cd801a00fd x-runtime: - - '0.222874' + - '0.139646' status: code: 200 message: OK @@ -222,14 +222,14 @@ interactions: Content-Length: - '4909' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-0hsLximNPBK7xm5G6JX2NhFif'; style-src - 'self' 'nonce-0hsLximNPBK7xm5G6JX2NhFif'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-wdpBcAPhYgoHjpkb5VMd66fWI'; style-src + 'self' 'nonce-wdpBcAPhYgoHjpkb5VMd66fWI'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:05 GMT + - Mon, 04 Mar 2024 11:20:50 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -338,14 +338,14 @@ interactions: Content-Length: - '4909' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-ZeCt3myFDzVDNQiQRO6ohXpjP'; style-src - 'self' 'nonce-ZeCt3myFDzVDNQiQRO6ohXpjP'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-BNfzo01ljH3hk6YXh93iOhrYg'; style-src + 'self' 'nonce-BNfzo01ljH3hk6YXh93iOhrYg'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:06 GMT + - Mon, 04 Mar 2024 11:20:51 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -385,38 +385,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=O_4H9AZYyrF9nmcG_Vs1ELfl6wc_nE_j8s4hq6XHuZ8-1708594264864-0.0-604800000 + - _cfuvid=OYQX6ZoFQjrfWER5vb2sXq9BXp.ERK_P35SXF6FHTTI-1709551249415-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497468,"iid":13123,"project_id":42823949,"title":"[SN#3] This + string: '{"id":142912375,"iid":13505,"project_id":42823949,"title":"[SN#3] This is the title of the third test issue","description":"\nThis is the body of the third test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/3) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Tue Nov 21 08:03:57 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-03)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:31:07.489Z","updated_at":"2024-02-22T09:31:07.489Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13123","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13123","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13123/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13123/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13123","relative":"#13123","full":"gridhead/protop2g-test#13123"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:20:52.547Z","updated_at":"2024-03-04T11:20:52.547Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13505","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13505","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13505/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13505/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13505","relative":"#13505","full":"gridhead/protop2g-test#13505"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 859636d8e84594ce-CCU + - 85f17abd689094c4-CCU Connection: - keep-alive Content-Length: - - '2190' + - '2222' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:08 GMT + - Mon, 04 Mar 2024 11:20:52 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Omvzq7lk7hzwir6raIVLmpp3qt3DRPrRSVKKk08Tcprai2senLYAd5D3BFdQDaHX8mJubjAMzNP%2F945sjv5WzbSuZ%2FgPbysGQPSBPuxRBbuSch4qbmvxQUEFN1VIUogIRX5QnE1R5vE%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=gnnR7vApNqI1U%2FX0%2BrscDysvZ5naQcXjkilnYoTWBmNSTKEj8qJzBII1WtX8ExP09M5vA2J5YWoyjiV560iy0JtzlkJLXluGTmIMmjyi0YB3ZH3GAw5IF1lOhSFGoUC9JBMdL%2FPSMyo%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -425,11 +426,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"22970f2991d305b3b70c4386e28b5eb0" + - W/"25c76ff946d9360ada6902c685534d84" gitlab-lb: - - haproxy-main-36-lb-gprd + - haproxy-main-34-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -441,11 +442,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"350f055438f5acf41af90c4c9ff3d610","version":"1"}' + - '{"correlation_id":"5c348045aed9ba84c844fca19570f71b","version":"1"}' x-request-id: - - 350f055438f5acf41af90c4c9ff3d610 + - 5c348045aed9ba84c844fca19570f71b x-runtime: - - '1.366809' + - '0.524367' status: code: 201 message: Created @@ -468,38 +469,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=O_4H9AZYyrF9nmcG_Vs1ELfl6wc_nE_j8s4hq6XHuZ8-1708594264864-0.0-604800000 + - _cfuvid=OYQX6ZoFQjrfWER5vb2sXq9BXp.ERK_P35SXF6FHTTI-1709551249415-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497470,"iid":13124,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142912376,"iid":13506,"project_id":42823949,"title":"[SN#1] This is the title of the first test issue","description":"\nThis is the body of the first test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/1) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 03:57:42 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/03-57)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:31:09.374Z","updated_at":"2024-02-22T09:31:09.374Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13124","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13124","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13124/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13124/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13124","relative":"#13124","full":"gridhead/protop2g-test#13124"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:20:53.657Z","updated_at":"2024-03-04T11:20:53.657Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13506","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13506","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13506/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13506/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13506","relative":"#13506","full":"gridhead/protop2g-test#13506"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 859636e3ebd693c8-CCU + - 85f17ac49e0593c2-CCU Connection: - keep-alive Content-Length: - - '2190' + - '2222' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:09 GMT + - Mon, 04 Mar 2024 11:20:53 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=G8BbnJyKv5ue%2FvHWVVX%2FxxqNuX9cjDQXGed2jyDULlGaIb0PEQ2OxXR%2BFaQvN3UYdlTMzY66OcsxD6%2BRRC6mS9RHFG4ylJz6YhAWWut4oE2RXzkREDrVD3aEhn2HMP4Kn%2B9oKq9fRLM%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=%2F7%2FOnZlufeDO2q4JrujaiWKTHYh%2Bf%2BxJEuZL8hQDfXw408W58rHMy0dVoAmvQ4KDZpSlbnwTNxMnkaLX2uC9qS8HJArFtRcZpbsmYDGeMlPPKhk%2FZsrIxcqkoRdmrXMKqK0jTD3BLDM%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -508,9 +510,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"0496afcd6a020d4fff77a0fdddb9640d" + - W/"7aa581aa2c7bc7ba92f47c7009269724" gitlab-lb: - - haproxy-main-42-lb-gprd + - haproxy-main-33-lb-gprd gitlab-sv: - api-gke-us-east1-b referrer-policy: @@ -524,11 +526,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"d1b8d701208fecc26903979fa43fbdb8","version":"1"}' + - '{"correlation_id":"fb265c7a7bae40f77b95bd37b02d8391","version":"1"}' x-request-id: - - d1b8d701208fecc26903979fa43fbdb8 + - fb265c7a7bae40f77b95bd37b02d8391 x-runtime: - - '0.728064' + - '0.469034' status: code: 201 message: Created diff --git a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with SHUT status along with comments but without labels, without privacy and without states].yaml b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with SHUT status along with comments but without labels, without privacy and without states].yaml index 4990ae2..c14777e 100644 --- a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with SHUT status along with comments but without labels, without privacy and without states].yaml +++ b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with SHUT status along with comments but without labels, without privacy and without states].yaml @@ -34,14 +34,14 @@ interactions: Content-Length: - '902' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-WLwAVoL8hlzJmz3UlB2nMEPPE'; style-src - 'self' 'nonce-WLwAVoL8hlzJmz3UlB2nMEPPE'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-TPeiVFL9lF39AnfFHcufuFpC2'; style-src + 'self' 'nonce-TPeiVFL9lF39AnfFHcufuFpC2'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:22 GMT + - Mon, 04 Mar 2024 11:23:23 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -80,14 +80,14 @@ interactions: response: body: string: '{"id":42823949,"description":null,"name":"protop2g-test","name_with_namespace":"Akashdeep - Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-02-22T09:31:08.610Z","namespace":{"id":13984834,"name":"Akashdeep + Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-03-04T11:20:52.799Z","namespace":{"id":13984834,"name":"Akashdeep Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"container_registry_image_prefix":"registry.gitlab.com/gridhead/protop2g-test","_links":{"self":"https://gitlab.com/api/v4/projects/42823949","issues":"https://gitlab.com/api/v4/projects/42823949/issues","merge_requests":"https://gitlab.com/api/v4/projects/42823949/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/42823949/repository/branches","labels":"https://gitlab.com/api/v4/projects/42823949/labels","events":"https://gitlab.com/api/v4/projects/42823949/events","members":"https://gitlab.com/api/v4/projects/42823949/members","cluster_agents":"https://gitlab.com/api/v4/projects/42823949/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"public","owner":{"id":10115999,"username":"gridhead","name":"Akashdeep - Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":5445,"description_html":"","updated_at":"2024-02-22T09:31:08.610Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":null}}' + Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":25,"description_html":"","updated_at":"2024-03-04T11:20:52.799Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":50,"notification_level":3},"group_access":null}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963a2ac9b594b2-CCU + - 85f17e753cf994d0-CCU Connection: - keep-alive Content-Encoding: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:23 GMT + - Mon, 04 Mar 2024 11:23:24 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=QBgRj%2BeQPXESTqO2aeLW4j4w3NgPZkFLpy9%2BcX3ToVFSBX7FSq%2FqKI8j6AEDXI4%2Bsi2L038zgU8h4bE7i4U1EE66yYq6jlNu3pwpuSqpc%2FWAxxLklpiVI3bTDjeMDmOy5EYrr%2BOBQZo%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=GG9be7rMkvx73LcsHjJLwRMiD04%2FSToRV%2BMohINCxmNewhfRt1T3jIYCId2BQZsTIHur3e4Jx0vE7R%2FgZtBo65O2JNX9GY7PHwAxuOILiQVVpNEGbubjMeErz48xaAlMKGwW8HgZf4k%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -110,11 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"9b800d224a171ccf63ff1e8f5211b4bb" + - W/"6b5a1e5cd423bfcc499ea04cc2fe7e80" gitlab-lb: - - haproxy-main-15-lb-gprd + - haproxy-main-04-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -126,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"de607f30b6479e67489e559350958605","version":"1"}' + - '{"correlation_id":"49470026b9985ef48c025ca89b5a9fa7","version":"1"}' x-request-id: - - de607f30b6479e67489e559350958605 + - 49470026b9985ef48c025ca89b5a9fa7 x-runtime: - - '0.132199' + - '0.170860' status: code: 200 message: OK @@ -241,14 +241,14 @@ interactions: Content-Length: - '6409' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-SG55UzpkbyvkbybpO9H5TPK6x'; style-src - 'self' 'nonce-SG55UzpkbyvkbybpO9H5TPK6x'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-Ytgk1RBgBC104QusfAaMs2yYy'; style-src + 'self' 'nonce-Ytgk1RBgBC104QusfAaMs2yYy'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:24 GMT + - Mon, 04 Mar 2024 11:23:25 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -376,14 +376,14 @@ interactions: Content-Length: - '6409' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-tl7jCp9O10VluMFD0NRPX86bi'; style-src - 'self' 'nonce-tl7jCp9O10VluMFD0NRPX86bi'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-z24LXiY49WvZN5wihfUr7FTWx'; style-src + 'self' 'nonce-z24LXiY49WvZN5wihfUr7FTWx'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:25 GMT + - Mon, 04 Mar 2024 11:23:27 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -423,38 +423,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=dnhv9Q3qxJqRjBGDXznWZSMggYDWgxCeO4LQw28xsSk-1708594403428-0.0-604800000 + - _cfuvid=59e3IHlXJbHODD0m2Vy3R_96bvqRViShC0JLY9BlZjM-1709551404858-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497578,"iid":13155,"project_id":42823949,"title":"[SN#4] This + string: '{"id":142912480,"iid":13537,"project_id":42823949,"title":"[SN#4] This is the title of the fourth test issue","description":"\nThis is the body of the fourth test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/4) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Tue Nov 21 08:06:56 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-06)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:33:26.153Z","updated_at":"2024-02-22T09:33:26.153Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13155","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13155","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13155/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13155/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13155","relative":"#13155","full":"gridhead/protop2g-test#13155"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:23:27.960Z","updated_at":"2024-03-04T11:23:27.960Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13537","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13537","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13537/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13537/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13537","relative":"#13537","full":"gridhead/protop2g-test#13537"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963a3bbf4393bb-CCU + - 85f17e88fe3c94b6-CCU Connection: - keep-alive Content-Length: - - '2192' + - '2224' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:26 GMT + - Mon, 04 Mar 2024 11:23:28 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=dt7YhL%2BE9owbUKYNqiWm6QdRG%2FbrLaiOlmGOYKa0Vtl9NjEMr0rUqShRjIuS6xeLoxXUycptD5dAPWDMvLe2mwJ%2FXvmm1sAL3R%2BPAqzjliQETDz2HGmJ4h4j527OeS6HuNBfqdwPsYo%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=w2clPGkOdjC9tCv6iisREfqkCdJxFVjAEslJW9lMbM7%2B%2BSi2Rb39Ltt4IJEE6Bry315Iydr1oFiJ10nlM2g9tyKXctUbO0lRsglGdkFE3idTyj9Socw0xW4Rr%2BzOw0pBofL2AcwG3tQ%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -463,9 +464,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"655cfcfd48410015b418ed30cf1b0567" + - W/"2c244d0a75c43c11fcefbc8dd558b673" gitlab-lb: - - haproxy-main-07-lb-gprd + - haproxy-main-46-lb-gprd gitlab-sv: - api-gke-us-east1-c referrer-policy: @@ -479,11 +480,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"fa599d564c23a01f9f2dc832df501c3a","version":"1"}' + - '{"correlation_id":"fa169e0359efc2fe88313408ab491809","version":"1"}' x-request-id: - - fa599d564c23a01f9f2dc832df501c3a + - fa169e0359efc2fe88313408ab491809 x-runtime: - - '0.463256' + - '0.484226' status: code: 201 message: Created @@ -499,26 +500,27 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=dnhv9Q3qxJqRjBGDXznWZSMggYDWgxCeO4LQw28xsSk-1708594403428-0.0-604800000 + - _cfuvid=59e3IHlXJbHODD0m2Vy3R_96bvqRViShC0JLY9BlZjM-1709551404858-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13155 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13537 response: body: - string: '{"id":142497578,"iid":13155,"project_id":42823949,"title":"[SN#4] This + string: '{"id":142912480,"iid":13537,"project_id":42823949,"title":"[SN#4] This is the title of the fourth test issue","description":"\nThis is the body of the fourth test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/4) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Tue Nov 21 08:06:56 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-06)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:33:26.153Z","updated_at":"2024-02-22T09:33:26.153Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13155","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13155","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13155/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13155/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13155","relative":"#13155","full":"gridhead/protop2g-test#13155"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:23:27.960Z","updated_at":"2024-03-04T11:23:27.960Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13537","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13537","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13537/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13537/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13537","relative":"#13537","full":"gridhead/protop2g-test#13537"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963a410ad993c8-CCU + - 85f17e8eb90793c1-CCU Connection: - keep-alive Content-Encoding: @@ -526,11 +528,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:27 GMT + - Mon, 04 Mar 2024 11:23:28 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=MRNuP4s5hqWl3%2Fk65md9IoW05Wmewq34QB2PmDT1%2F4kpp7aS48MsCJRInIMiCt4cFcf7XRWgXxtPFvv7etXuTmKmSvohyZtcrmz1I%2FKdhyY4ASU0hH95fK8JXRigsXkA4oS8NZXm9TE%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Dcr4olfJsFPrfBWpCG9CwYlg3T%2FOkUbwgXtTP66%2BzQxbLHOpzE4H6P3U9xpogW%2BrbMd5EyEFvvb%2B70FBfgSvvVCX3GN%2FoE%2FX3CNV3%2Bqf7jnYMHpNstz7iv7vJjASV1glaDNl6Bq3bQs%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -541,11 +543,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"655cfcfd48410015b418ed30cf1b0567" + - W/"2c244d0a75c43c11fcefbc8dd558b673" gitlab-lb: - - haproxy-main-60-lb-gprd + - haproxy-main-35-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -557,11 +559,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"ba314a95e01136d46471194f02576874","version":"1"}' + - '{"correlation_id":"f1e891c7cd9b05f1f982f7e26ce78da8","version":"1"}' x-request-id: - - ba314a95e01136d46471194f02576874 + - f1e891c7cd9b05f1f982f7e26ce78da8 x-runtime: - - '0.167423' + - '0.156839' status: code: 200 message: OK @@ -584,25 +586,25 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=dnhv9Q3qxJqRjBGDXznWZSMggYDWgxCeO4LQw28xsSk-1708594403428-0.0-604800000 + - _cfuvid=59e3IHlXJbHODD0m2Vy3R_96bvqRViShC0JLY9BlZjM-1709551404858-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/13155/discussions + uri: https://gitlab.com/api/v4/projects/42823949/issues/13537/discussions response: body: - string: '{"id":"abfd2af775d68d715999e77bce52c56624038247","individual_note":false,"notes":[{"id":1784525251,"type":"DiscussionNote","body":"\nThis + string: '{"id":"13da14bf715d24ad19031ddaa8a845c6dbc7b0d5","individual_note":false,"notes":[{"id":1799292434,"type":"DiscussionNote","body":"\nThis is the first comment under the fourth test issue\n\n_This comment was originally created [here](https://pagure.io/protop2g-test-srce/issue/4#comment-885231) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) under\n[this](https://pagure.io/protop2g-test-srce/issue/4) issue ticket on a Pagure repository, [**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) on\n[**Tue Nov 21 08:07:25 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-07)._\n\n_This - comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2024-02-22T09:33:27.909Z","updated_at":"2024-02-22T09:33:27.909Z","system":false,"noteable_id":142497578,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13155,"commands_changes":{}}]}' + comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"created_at":"2024-03-04T11:23:29.566Z","updated_at":"2024-03-04T11:23:29.566Z","system":false,"noteable_id":142912480,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13537,"commands_changes":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963a445b3d94ce-CCU + - 85f17e929a5093c8-CCU Connection: - keep-alive Content-Length: @@ -610,11 +612,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:28 GMT + - Mon, 04 Mar 2024 11:23:30 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=W8DfWbMOuH1W2Z7ObuPXyDk5716NmurKwtgJuaOfITVzZKH7FAd9hSyX0ZhcIgn4lTTG9Vlc8SE2JsZYJ9Rt%2BOS92Fm4uXM5AzAp5MQNrlKtarRiTj4hnuhz1IT5csS%2BXRSyxfM8Tcg%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=hfD5yRJIJ96d4l6gSenzm4yHuFDK1ri4gGjeqKrDXayk74SpcST%2FrbDh%2B91bahTBQS2RQ1dzfMpqrjsNLUn0KYGkKPvHNhDjHMDSe07WTgvssnvYKGmZsyNDzO0sH3A54uUOD9Pb1RA%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -623,9 +625,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"f0d8e2ea9716d3e25f1b13c22acdc27d" + - W/"16efa51d287b282d39f5fa7964e68f55" gitlab-lb: - - haproxy-main-53-lb-gprd + - haproxy-main-38-lb-gprd gitlab-sv: - api-gke-us-east1-d referrer-policy: @@ -639,11 +641,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"9fbac558abeee26e75a42505cd934129","version":"1"}' + - '{"correlation_id":"eea1f062f51cc26febc38fa2e3887713","version":"1"}' x-request-id: - - 9fbac558abeee26e75a42505cd934129 + - eea1f062f51cc26febc38fa2e3887713 x-runtime: - - '0.774105' + - '0.700479' status: code: 201 message: Created @@ -659,26 +661,27 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=dnhv9Q3qxJqRjBGDXznWZSMggYDWgxCeO4LQw28xsSk-1708594403428-0.0-604800000 + - _cfuvid=59e3IHlXJbHODD0m2Vy3R_96bvqRViShC0JLY9BlZjM-1709551404858-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13155 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13537 response: body: - string: '{"id":142497578,"iid":13155,"project_id":42823949,"title":"[SN#4] This + string: '{"id":142912480,"iid":13537,"project_id":42823949,"title":"[SN#4] This is the title of the fourth test issue","description":"\nThis is the body of the fourth test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/4) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Tue Nov 21 08:06:56 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-06)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:33:26.153Z","updated_at":"2024-02-22T09:33:26.153Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":1,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13155","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13155","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13155/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13155/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13155","relative":"#13155","full":"gridhead/protop2g-test#13155"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:23:27.960Z","updated_at":"2024-03-04T11:23:27.960Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":1,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13537","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13537","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13537/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13537/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13537","relative":"#13537","full":"gridhead/protop2g-test#13537"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963a4bd9e094b9-CCU + - 85f17e9a5d8593c1-CCU Connection: - keep-alive Content-Encoding: @@ -686,11 +689,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:28 GMT + - Mon, 04 Mar 2024 11:23:31 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=csP%2FXWsg7jhu7GoYgbNW4LMysQprRLJBx3gSECCI2PDP5uCMC2Sp4%2B99HQ9%2BTC6Lp5TwwVDyU2iiQuj6hw2Yg2DkII4fCFejIOfpJBhr2%2B9SVnd6ZIaFXoBLUBTdUDbeHxqCrlcQWdU%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=k6r%2BgozEmVsOff1fxuEv3jrJGmsYVCcs851e%2FejNlVVh5C3ey2uJ8aXf1aHp0u%2BUR%2FRZsZZGj41fhJBX0aVxnqJzhp2cx6QlppVOD%2BaB51qHDYAUX9IyU%2Bwgeggh5ZYlnZDrgFOYD0o%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -701,11 +704,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"9aee42c574138454f2adba8d6707d006" + - W/"1b0e94ceaed9da8dcc34aea8a83d68c2" gitlab-lb: - - haproxy-main-49-lb-gprd + - haproxy-main-57-lb-gprd gitlab-sv: - - api-gke-us-east1-c + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -717,11 +720,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"318bc762df7a03f371a768d75ce9c6f1","version":"1"}' + - '{"correlation_id":"be75fccc9048e1d70b861b505165b9d2","version":"1"}' x-request-id: - - 318bc762df7a03f371a768d75ce9c6f1 + - be75fccc9048e1d70b861b505165b9d2 x-runtime: - - '0.166265' + - '0.452379' status: code: 200 message: OK @@ -744,25 +747,25 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=dnhv9Q3qxJqRjBGDXznWZSMggYDWgxCeO4LQw28xsSk-1708594403428-0.0-604800000 + - _cfuvid=59e3IHlXJbHODD0m2Vy3R_96bvqRViShC0JLY9BlZjM-1709551404858-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/13155/discussions + uri: https://gitlab.com/api/v4/projects/42823949/issues/13537/discussions response: body: - string: '{"id":"14fc878968c05017afe38ba1a4b135073f782b53","individual_note":false,"notes":[{"id":1784525288,"type":"DiscussionNote","body":"\nThis + string: '{"id":"2e75e87ae66a15dad1db701937148cf271b75ea0","individual_note":false,"notes":[{"id":1799292517,"type":"DiscussionNote","body":"\nThis is the second comment under the fourth test issue\n\n_This comment was originally created [here](https://pagure.io/protop2g-test-srce/issue/4#comment-885232) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) under\n[this](https://pagure.io/protop2g-test-srce/issue/4) issue ticket on a Pagure repository, [**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) on\n[**Tue Nov 21 08:07:34 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-07)._\n\n_This - comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2024-02-22T09:33:29.379Z","updated_at":"2024-02-22T09:33:29.379Z","system":false,"noteable_id":142497578,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13155,"commands_changes":{}}]}' + comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"created_at":"2024-03-04T11:23:31.757Z","updated_at":"2024-03-04T11:23:31.757Z","system":false,"noteable_id":142912480,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13537,"commands_changes":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963a4f2da293c5-CCU + - 85f17ea0bec494bc-CCU Connection: - keep-alive Content-Length: @@ -770,11 +773,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:30 GMT + - Mon, 04 Mar 2024 11:23:32 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=evWGmwVKq320vbIYF2J%2Fz1afmcY1MPPEBx3hLFjZbdDiEExgBaH4J7fH4Dfce7I4VDL99ZGsJ590Vvqv%2FUa9jcaElEVixo8%2BWXuuRnmuaqhCoGIDurvXSxTo2DnnUui8LHEHDzcJATU%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=venYtPjLOJf1IfnQgR9HWsSAOhlnbvR9GlVRETN7yX%2FtwM05sZtZ0kv0Z%2BYxkZX7f%2FpLw4YhoLMEQPflcTtG9gmJ14EnyFu6JIDumKedUn1I4FioDcrV2brHaHjOIbyDW5DVR%2B2WGl4%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -783,11 +786,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"553c4a17ce295194e09d9d48871b69ff" + - W/"610451d9d6aa787409182de39d190ed0" gitlab-lb: - - haproxy-main-18-lb-gprd + - haproxy-main-34-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -799,11 +802,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"284b720a297323dbbe54671c4244c320","version":"1"}' + - '{"correlation_id":"ef36bac01d9f939a75231deab19e8132","version":"1"}' x-request-id: - - 284b720a297323dbbe54671c4244c320 + - ef36bac01d9f939a75231deab19e8132 x-runtime: - - '0.866586' + - '0.683543' status: code: 201 message: Created @@ -819,26 +822,27 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=dnhv9Q3qxJqRjBGDXznWZSMggYDWgxCeO4LQw28xsSk-1708594403428-0.0-604800000 + - _cfuvid=59e3IHlXJbHODD0m2Vy3R_96bvqRViShC0JLY9BlZjM-1709551404858-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13155 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13537 response: body: - string: '{"id":142497578,"iid":13155,"project_id":42823949,"title":"[SN#4] This + string: '{"id":142912480,"iid":13537,"project_id":42823949,"title":"[SN#4] This is the title of the fourth test issue","description":"\nThis is the body of the fourth test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/4) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Tue Nov 21 08:06:56 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-06)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:33:26.153Z","updated_at":"2024-02-22T09:33:26.153Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":2,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13155","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13155","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13155/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13155/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13155","relative":"#13155","full":"gridhead/protop2g-test#13155"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:23:27.960Z","updated_at":"2024-03-04T11:23:27.960Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":2,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13537","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13537","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13537/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13537/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13537","relative":"#13537","full":"gridhead/protop2g-test#13537"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963a571c5994bc-CCU + - 85f17ea7cb8c94bf-CCU Connection: - keep-alive Content-Encoding: @@ -846,11 +850,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:30 GMT + - Mon, 04 Mar 2024 11:23:32 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=bQiXUIBVymN%2BjsCT7iTPOoTxTaAMCa7%2BZTwjynS%2FVO%2BCA0pTi665HjuDDBJ5zBLIEarDHMyd4Luvte3doNybIPXxKBM1fzke%2BizkzZtVwG6POgHqE4%2FZvFhQQ%2BFjwqOt4JyTupe8kog%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=jluR7W8%2Bcf6LbfmrOT0y8%2FpqJzYVkpsKF39SpVx0IKlUMNcH%2F3dIy%2FVgMbsq2SZSa8rtpdNA0T18gvl37IKSvQyhLI75gHUBnaYMV0Ay3KdD0gY988OiBOcXR4VBMLHULEQNuDf%2BR1s%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -861,9 +865,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"785421a344c719a2e0442ff24ad821d2" + - W/"82522f5fdff7c5bde463af41760ba5a9" gitlab-lb: - - haproxy-main-60-lb-gprd + - haproxy-main-21-lb-gprd gitlab-sv: - api-gke-us-east1-b referrer-policy: @@ -877,11 +881,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"fd8fd85de52e8132977a8a9f25b3201b","version":"1"}' + - '{"correlation_id":"dfb55f54d775fccd9c70437b8b314382","version":"1"}' x-request-id: - - fd8fd85de52e8132977a8a9f25b3201b + - dfb55f54d775fccd9c70437b8b314382 x-runtime: - - '0.174335' + - '0.147580' status: code: 200 message: OK @@ -904,25 +908,25 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=dnhv9Q3qxJqRjBGDXznWZSMggYDWgxCeO4LQw28xsSk-1708594403428-0.0-604800000 + - _cfuvid=59e3IHlXJbHODD0m2Vy3R_96bvqRViShC0JLY9BlZjM-1709551404858-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/13155/discussions + uri: https://gitlab.com/api/v4/projects/42823949/issues/13537/discussions response: body: - string: '{"id":"bc6e2f15f12e16528ee88289d3691139be18fbfc","individual_note":false,"notes":[{"id":1784525337,"type":"DiscussionNote","body":"\n**Metadata + string: '{"id":"f095ca3ad426b10020d1d8cebffe9ecb40099184","individual_note":false,"notes":[{"id":1799292595,"type":"DiscussionNote","body":"\n**Metadata Update from \u0026t0xic0der**:\n- Issue status updated to: Closed (was: Open)\n\n_This comment was originally created [here](https://pagure.io/protop2g-test-srce/issue/4#comment-885233) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) under\n[this](https://pagure.io/protop2g-test-srce/issue/4) issue ticket on a Pagure repository, [**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) on\n[**Tue Nov 21 08:08:01 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-08)._\n\n_This - comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2024-02-22T09:33:31.186Z","updated_at":"2024-02-22T09:33:31.186Z","system":false,"noteable_id":142497578,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13155,"commands_changes":{}}]}' + comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"created_at":"2024-03-04T11:23:33.661Z","updated_at":"2024-03-04T11:23:33.661Z","system":false,"noteable_id":142912480,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13537,"commands_changes":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963a5a68f194b0-CCU + - 85f17eac3a2294b2-CCU Connection: - keep-alive Content-Length: @@ -930,11 +934,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:31 GMT + - Mon, 04 Mar 2024 11:23:33 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Ve6w1niUDywYCmHqmyhQxMEGpgCSO5vpS6C1qx3ZdLbeeWXIZCFoLEQldzgs%2BwMqZsbI3XUO6JK0%2BzSqE%2FDvUOzLXiXvXjCalpx1IN0Z5mxOjDBOqV5gATSNJyLOLjYvrgAsMc96PhM%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=juQil3KbBIm7wMo2omtnLXEJsJlA8s9EpcwCAQrGbCxBTMgw%2BHkm%2FoAnw%2FCMI60ygN9at%2BGlwtsOVz2bUqU%2FUpvRZu2cP97GG1%2F9F46gOd43nJrdwdb4nPsyCArKDF3Dw5TJj4BCLe0%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -943,11 +947,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"7d8d31c03951c6c7b971ffe7e4e541c9" + - W/"7eb5215adc573c258bd96f13456c64a3" gitlab-lb: - - haproxy-main-53-lb-gprd + - haproxy-main-04-lb-gprd gitlab-sv: - - api-gke-us-east1-d + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -959,11 +963,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"f4a9198c5a347549ad627416c560c0f8","version":"1"}' + - '{"correlation_id":"f428bd69676f9ee16b8c424d6768c052","version":"1"}' x-request-id: - - f4a9198c5a347549ad627416c560c0f8 + - f428bd69676f9ee16b8c424d6768c052 x-runtime: - - '0.910549' + - '0.472113' status: code: 201 message: Created @@ -986,38 +990,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=dnhv9Q3qxJqRjBGDXznWZSMggYDWgxCeO4LQw28xsSk-1708594403428-0.0-604800000 + - _cfuvid=59e3IHlXJbHODD0m2Vy3R_96bvqRViShC0JLY9BlZjM-1709551404858-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497583,"iid":13156,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142912482,"iid":13538,"project_id":42823949,"title":"[SN#2] This is the title of the second test issue","description":"\nThis is the body of the second test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/2) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 04:01:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:33:32.408Z","updated_at":"2024-02-22T09:33:32.408Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13156","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13156","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13156/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13156/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13156","relative":"#13156","full":"gridhead/protop2g-test#13156"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:23:34.670Z","updated_at":"2024-03-04T11:23:34.670Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13538","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13538","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13538/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13538/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13538","relative":"#13538","full":"gridhead/protop2g-test#13538"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963a62a8a793c8-CCU + - 85f17eb2bab594d0-CCU Connection: - keep-alive Content-Length: - - '2192' + - '2224' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:32 GMT + - Mon, 04 Mar 2024 11:23:35 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=qbxcrjSZ7%2FT%2F%2BmpyvuBugFvfDorh2pNZsno8s%2F4j7%2FQQZ774RXAdaCXrpy1AQ9Zdq7Fvrus6Zm2EHNpYfjkwS9zc2JlG3GIgJRIIwrKV7cQwZKqahs8rYG2%2BonrRRRlOOVSd4H7CIZY%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=MA2KWpdKPTh%2FpSgbG0ML%2FZZgSMzfKmhxVrs2YDNbCux27CQNFezSjYVmjoD5lVB%2FwLKrPON%2FEOeEtKISmnCpSfD2terdMumW1LPlyb6KfGdGbSOHF4hNfircNXe2RMwkWvPtm3s10vg%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1026,11 +1031,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"9fbbcbbad86be9e1ce4abc956b7477e4" + - W/"3d1dd942aca8c74bc048ff086606767f" gitlab-lb: - - haproxy-main-09-lb-gprd + - haproxy-main-49-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -1042,11 +1047,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"2d5ef23313f4674b1ca4d3ed9e2ec0c9","version":"1"}' + - '{"correlation_id":"f31f475d5962aa90b88183fee0fdc136","version":"1"}' x-request-id: - - 2d5ef23313f4674b1ca4d3ed9e2ec0c9 + - f31f475d5962aa90b88183fee0fdc136 x-runtime: - - '0.457082' + - '0.860578' status: code: 201 message: Created @@ -1062,26 +1067,27 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=dnhv9Q3qxJqRjBGDXznWZSMggYDWgxCeO4LQw28xsSk-1708594403428-0.0-604800000 + - _cfuvid=59e3IHlXJbHODD0m2Vy3R_96bvqRViShC0JLY9BlZjM-1709551404858-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13156 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13538 response: body: - string: '{"id":142497583,"iid":13156,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142912482,"iid":13538,"project_id":42823949,"title":"[SN#2] This is the title of the second test issue","description":"\nThis is the body of the second test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/2) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 04:01:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:33:32.408Z","updated_at":"2024-02-22T09:33:32.408Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13156","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13156","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13156/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13156/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13156","relative":"#13156","full":"gridhead/protop2g-test#13156"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:23:34.670Z","updated_at":"2024-03-04T11:23:34.670Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13538","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13538","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13538/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13538/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13538","relative":"#13538","full":"gridhead/protop2g-test#13538"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963a67eb3e94bc-CCU + - 85f17ebb8d0d93c2-CCU Connection: - keep-alive Content-Encoding: @@ -1089,11 +1095,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:33 GMT + - Mon, 04 Mar 2024 11:23:36 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=zj2gOEFk%2FbBWK7DLwzbjU%2FRHnao6u8m%2B4f2AE6Zh2cDLjHJJi7tMNpftgbFej42B4EwZ5BM5vAgmUnrkkC45uluMqgRuUIIr2wyIrW%2FwVg8vY7SCK0mB%2FK1jyL5wC6H6Xnv5vwJxQKQ%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=BIulpVPDmnn0%2Bw0i82xBk2ob9eDHzCL0AnNtUJx3AW%2FF%2Fn4aIL66U4fV15zjk%2B9s8i%2FYusMIzAShzARUg3cT1xb3XdLhU5n64Htqx2TTOXRtRezlHwnrbI1RgGbPeEsRdX41D7dFj%2BM%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1104,9 +1110,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"9fbbcbbad86be9e1ce4abc956b7477e4" + - W/"3d1dd942aca8c74bc048ff086606767f" gitlab-lb: - - haproxy-main-51-lb-gprd + - haproxy-main-36-lb-gprd gitlab-sv: - gke-cny-api referrer-policy: @@ -1120,11 +1126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"93027f83063c7d20b8f5baefa4d7b49b","version":"1"}' + - '{"correlation_id":"ba3bce25f3c2b0ddaf367f5c69b7ae87","version":"1"}' x-request-id: - - 93027f83063c7d20b8f5baefa4d7b49b + - ba3bce25f3c2b0ddaf367f5c69b7ae87 x-runtime: - - '0.219330' + - '0.267320' status: code: 200 message: OK @@ -1147,25 +1153,25 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=dnhv9Q3qxJqRjBGDXznWZSMggYDWgxCeO4LQw28xsSk-1708594403428-0.0-604800000 + - _cfuvid=59e3IHlXJbHODD0m2Vy3R_96bvqRViShC0JLY9BlZjM-1709551404858-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/13156/discussions + uri: https://gitlab.com/api/v4/projects/42823949/issues/13538/discussions response: body: - string: '{"id":"c450a64f82b8b8f4a1ed4ca4ff754cb410b48a88","individual_note":false,"notes":[{"id":1784525422,"type":"DiscussionNote","body":"\n**Metadata + string: '{"id":"264540e7cf06713f1a65f106266bfee65d0744c3","individual_note":false,"notes":[{"id":1799292719,"type":"DiscussionNote","body":"\n**Metadata Update from \u0026t0xic0der**:\n- Issue tagged with: cccc, dddd\n\n_This comment was originally created [here](https://pagure.io/protop2g-test-srce/issue/2#comment-878472) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) under\n[this](https://pagure.io/protop2g-test-srce/issue/2) issue ticket on a Pagure repository, [**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) on\n[**Fri Oct 13 04:03:30 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-03)._\n\n_This - comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2024-02-22T09:33:33.953Z","updated_at":"2024-02-22T09:33:33.953Z","system":false,"noteable_id":142497583,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13156,"commands_changes":{}}]}' + comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"created_at":"2024-03-04T11:23:36.769Z","updated_at":"2024-03-04T11:23:36.769Z","system":false,"noteable_id":142912482,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13538,"commands_changes":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963a6c0f5193c2-CCU + - 85f17ebffcc094bf-CCU Connection: - keep-alive Content-Length: @@ -1173,11 +1179,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:34 GMT + - Mon, 04 Mar 2024 11:23:36 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=WN5fgwzilvB7HRBERbq5QScEA%2BNaPq0Zk4ZsO%2FiDXQ8owrWPvbBxPSfJhZYt85L%2FeMeADz2MS30UauyDTZkRVV%2FyMJLpsruCarGm93bUuqE1F4Ln8yreY%2FWKJK%2BGv%2BjoNbvM%2BtGhVIg%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=UoSSGxpYRP7GLXhQfldaVAQotcGGsrW1mmfjKveMbJUPnJWqFt7jwLXnQkV2DXV2Or8d6wL%2FpUEC8PgzF0Pq9HRuTkg4Ob5IOMwMXGoTuPTMqG18VwJtvWTMEfFEHuks4sD5gJ7PhNw%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1186,11 +1192,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"524647475d0027af6cc9ce523b925cf2" + - W/"159dc14cfd6a47f102fc8ef20e68a95e" gitlab-lb: - - haproxy-main-03-lb-gprd + - haproxy-main-43-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -1202,11 +1208,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"e028d06a8066c42f358cbc7ab24bdd4d","version":"1"}' + - '{"correlation_id":"20a137ade0e84bb85662e24071d9f15c","version":"1"}' x-request-id: - - e028d06a8066c42f358cbc7ab24bdd4d + - 20a137ade0e84bb85662e24071d9f15c x-runtime: - - '0.940121' + - '0.390807' status: code: 201 message: Created @@ -1222,26 +1228,27 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=dnhv9Q3qxJqRjBGDXznWZSMggYDWgxCeO4LQw28xsSk-1708594403428-0.0-604800000 + - _cfuvid=59e3IHlXJbHODD0m2Vy3R_96bvqRViShC0JLY9BlZjM-1709551404858-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13156 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13538 response: body: - string: '{"id":142497583,"iid":13156,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142912482,"iid":13538,"project_id":42823949,"title":"[SN#2] This is the title of the second test issue","description":"\nThis is the body of the second test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/2) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 04:01:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:33:32.408Z","updated_at":"2024-02-22T09:33:32.408Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":1,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13156","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13156","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13156/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13156/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13156","relative":"#13156","full":"gridhead/protop2g-test#13156"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:23:34.670Z","updated_at":"2024-03-04T11:23:34.670Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":1,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13538","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13538","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13538/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13538/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13538","relative":"#13538","full":"gridhead/protop2g-test#13538"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963a744d9294ce-CCU + - 85f17ec5ccee93c8-CCU Connection: - keep-alive Content-Encoding: @@ -1249,11 +1256,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:35 GMT + - Mon, 04 Mar 2024 11:23:37 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=9iFgMe99AumgxWaffW%2FGJUmhn4Xo6LgKOAgo926z9QVqHpC5siiM3GUJ0U%2Bgvy7FsPVTHx6BcWFY6LZ9RYWP3113P30Pq9WwcaJF%2B5%2FJ%2FXziiCpC36x2Qp93kmRjfO0AdoOgKDezj5Q%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=zBO%2F0cx2%2B4ekajAL05095seKdoiA%2F2lhgqHMVWlDpvn1JzS5potk1MrzoiqO4vJCtiUChsx92PcGimG1TkF9ZisHwCVHE8zabqvYCIs9YrqKL5L53nSibTB%2Bq9hO7kcV0P1YoGhSi6s%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1264,11 +1271,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"9bca752fa7dad76576610e7529e01383" + - W/"09d4a1812792846562e03303c1b43b31" gitlab-lb: - - haproxy-main-13-lb-gprd + - haproxy-main-02-lb-gprd gitlab-sv: - - api-gke-us-east1-c + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -1280,11 +1287,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"e2383ecf4c9999519d7b2a9c0df23781","version":"1"}' + - '{"correlation_id":"3dbdc13d039d5e475af456398ac081de","version":"1"}' x-request-id: - - e2383ecf4c9999519d7b2a9c0df23781 + - 3dbdc13d039d5e475af456398ac081de x-runtime: - - '0.164337' + - '0.214123' status: code: 200 message: OK @@ -1307,25 +1314,25 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=dnhv9Q3qxJqRjBGDXznWZSMggYDWgxCeO4LQw28xsSk-1708594403428-0.0-604800000 + - _cfuvid=59e3IHlXJbHODD0m2Vy3R_96bvqRViShC0JLY9BlZjM-1709551404858-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/13156/discussions + uri: https://gitlab.com/api/v4/projects/42823949/issues/13538/discussions response: body: - string: '{"id":"a847a60575cb9a0bc8cb929bc034fe570b6ed9cb","individual_note":false,"notes":[{"id":1784525475,"type":"DiscussionNote","body":"\nThe + string: '{"id":"4e13ffdffa12756c039c1bea10827481956a9637","individual_note":false,"notes":[{"id":1799292814,"type":"DiscussionNote","body":"\nThe is the first comment under the second test issue\n\n_This comment was originally created [here](https://pagure.io/protop2g-test-srce/issue/2#comment-878475) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) under\n[this](https://pagure.io/protop2g-test-srce/issue/2) issue ticket on a Pagure repository, [**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) on\n[**Fri Oct 13 04:06:04 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-06)._\n\n_This - comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2024-02-22T09:33:35.817Z","updated_at":"2024-02-22T09:33:35.817Z","system":false,"noteable_id":142497583,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13156,"commands_changes":{}}]}' + comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"created_at":"2024-03-04T11:23:38.581Z","updated_at":"2024-03-04T11:23:38.581Z","system":false,"noteable_id":142912482,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13538,"commands_changes":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963a77afb994bf-CCU + - 85f17ec9a8be94d0-CCU Connection: - keep-alive Content-Length: @@ -1333,11 +1340,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:36 GMT + - Mon, 04 Mar 2024 11:23:38 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=CPhJiwTlBJXnEyKenBrWm2CIxom5sfF27HsAlEqGHKQ9duQ4HVfSPm47eWYrJRTVEqT6JOFUYmR61aSzak44n1%2FGOkEvxuvwQwItqlg%2FotJ4uPswhL8yl22rok1PeKXgHNRY%2FEfEAQ0%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=uiiLqpCu1Lcp269sizhh5nWL%2FMu67DNMsrHJSz5Gn%2BYcLhClZjzv06xnZ6Rjd4ICHOUZFhnbueP6zZti8%2BRPeSta%2FB14Lg3KPcNoiSj8QpEnYAIC4t91TkA1MunogmGZ%2BQNCIxJQ6LA%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1346,9 +1353,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"8468b63f41963fe3ce502666af990c92" + - W/"a73ffc9caa97b3a65fd3fbb0a080a425" gitlab-lb: - - haproxy-main-38-lb-gprd + - haproxy-main-35-lb-gprd gitlab-sv: - api-gke-us-east1-d referrer-policy: @@ -1362,11 +1369,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"1bb3cdd0a74bcba61f1032d654fbf972","version":"1"}' + - '{"correlation_id":"5a33084832051661f377bdcc2793d6fd","version":"1"}' x-request-id: - - 1bb3cdd0a74bcba61f1032d654fbf972 + - 5a33084832051661f377bdcc2793d6fd x-runtime: - - '0.488637' + - '0.729041' status: code: 201 message: Created @@ -1382,26 +1389,27 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=dnhv9Q3qxJqRjBGDXznWZSMggYDWgxCeO4LQw28xsSk-1708594403428-0.0-604800000 + - _cfuvid=59e3IHlXJbHODD0m2Vy3R_96bvqRViShC0JLY9BlZjM-1709551404858-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13156 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13538 response: body: - string: '{"id":142497583,"iid":13156,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142912482,"iid":13538,"project_id":42823949,"title":"[SN#2] This is the title of the second test issue","description":"\nThis is the body of the second test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/2) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 04:01:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:33:32.408Z","updated_at":"2024-02-22T09:33:32.408Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":2,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13156","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13156","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13156/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13156/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13156","relative":"#13156","full":"gridhead/protop2g-test#13156"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:23:34.670Z","updated_at":"2024-03-04T11:23:34.670Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":2,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13538","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13538","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13538/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13538/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13538","relative":"#13538","full":"gridhead/protop2g-test#13538"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963a7d0f0894b9-CCU + - 85f17ed14ad594ce-CCU Connection: - keep-alive Content-Encoding: @@ -1409,11 +1417,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:36 GMT + - Mon, 04 Mar 2024 11:23:39 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Ljrn%2Bdn6Xh7xNB4pgQuGSsyGgSHzk%2BUCgO16MSzx4sOimjmnla8OZP1e%2FpnMi7SsxZmNsPo%2FaFS8qdL2hrvr5lD8cWvAAXm23wDa6gnkn8dzUKnTAZE%2B353BocwaF4UECT9WYtylkCU%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=lTIfUkU5WM1sgTc3W5sXABpoHIafmElY%2F1B4hkmnjm7KyJEEYsH3ZQ2Gl3GNlTAX%2BuNdSRw4wKPQHGaWP6%2B40w%2FqX8qFBq4HsfdN7q4h9jvas0i9yHtu5mW5XSlJ6V19QvE4j3vJq7c%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1424,9 +1432,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"f895c370c8b559960171bd9797b1e5e1" + - W/"f69b7c3e2d3a7ae85c3e22ee300da28d" gitlab-lb: - - haproxy-main-27-lb-gprd + - haproxy-main-57-lb-gprd gitlab-sv: - api-gke-us-east1-b referrer-policy: @@ -1440,11 +1448,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"456f05da2ca55806967f3f049d0b4947","version":"1"}' + - '{"correlation_id":"22f50b0927be0af52a769908fe9cd0af","version":"1"}' x-request-id: - - 456f05da2ca55806967f3f049d0b4947 + - 22f50b0927be0af52a769908fe9cd0af x-runtime: - - '0.153377' + - '0.120193' status: code: 200 message: OK @@ -1467,25 +1475,25 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=dnhv9Q3qxJqRjBGDXznWZSMggYDWgxCeO4LQw28xsSk-1708594403428-0.0-604800000 + - _cfuvid=59e3IHlXJbHODD0m2Vy3R_96bvqRViShC0JLY9BlZjM-1709551404858-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/13156/discussions + uri: https://gitlab.com/api/v4/projects/42823949/issues/13538/discussions response: body: - string: '{"id":"5004e0e8ff7f60a5d09b21ecd9c3f30e12e88d7d","individual_note":false,"notes":[{"id":1784525522,"type":"DiscussionNote","body":"\nThe + string: '{"id":"a525a87d0b233326a41c34f3f5c79ab122dcae76","individual_note":false,"notes":[{"id":1799292866,"type":"DiscussionNote","body":"\nThe is the second comment under the second test issue\n\n_This comment was originally created [here](https://pagure.io/protop2g-test-srce/issue/2#comment-878476) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) under\n[this](https://pagure.io/protop2g-test-srce/issue/2) issue ticket on a Pagure repository, [**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) on\n[**Fri Oct 13 04:06:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-06)._\n\n_This - comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2024-02-22T09:33:37.494Z","updated_at":"2024-02-22T09:33:37.494Z","system":false,"noteable_id":142497583,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13156,"commands_changes":{}}]}' + comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"created_at":"2024-03-04T11:23:40.089Z","updated_at":"2024-03-04T11:23:40.089Z","system":false,"noteable_id":142912482,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13538,"commands_changes":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963a815b6994b9-CCU + - 85f17ed48a7d94c4-CCU Connection: - keep-alive Content-Length: @@ -1493,11 +1501,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:38 GMT + - Mon, 04 Mar 2024 11:23:40 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=X4RXWjmnIWu1G4hUISmQN9qwfP5D9vCNwUphXSc7VXpS3No%2B5vvEukSDkItTWOb%2BgkeazwjY8A7EL9cqiLx0oZmF%2FlsoHcWGQXsR4HpFFOVILJCUbtm45tcYyITFaS2JQErxF0IlPO4%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=c%2BRFEMPPhLxvvy1Ksv0FNJWaQzbVrUAlilejymOO2lpF8iT5gBgORummCS1yVV0WEGrFyKkJTnMIp8G5ZoDQDk0q3zhPqw9MSwSQ3ah6S34ykjRwpfBAsj9kgUNjKrwdE3mX6GtNwys%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1506,11 +1514,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"a45aa73e738a8a898a583089560f3a64" + - W/"aca6c61c16d9e126b07db0fd8b0e8672" gitlab-lb: - - haproxy-main-28-lb-gprd + - haproxy-main-42-lb-gprd gitlab-sv: - - gke-cny-api + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -1522,11 +1530,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"8941308cb8720a86d811a78d8dd8b0a9","version":"1"}' + - '{"correlation_id":"d324e06f5f4d925fe09332163b240593","version":"1"}' x-request-id: - - 8941308cb8720a86d811a78d8dd8b0a9 + - d324e06f5f4d925fe09332163b240593 x-runtime: - - '1.084581' + - '0.444984' status: code: 201 message: Created @@ -1542,26 +1550,27 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=dnhv9Q3qxJqRjBGDXznWZSMggYDWgxCeO4LQw28xsSk-1708594403428-0.0-604800000 + - _cfuvid=59e3IHlXJbHODD0m2Vy3R_96bvqRViShC0JLY9BlZjM-1709551404858-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13156 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13538 response: body: - string: '{"id":142497583,"iid":13156,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142912482,"iid":13538,"project_id":42823949,"title":"[SN#2] This is the title of the second test issue","description":"\nThis is the body of the second test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/2) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 04:01:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:33:32.408Z","updated_at":"2024-02-22T09:33:32.408Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":3,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13156","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13156","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13156/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13156/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13156","relative":"#13156","full":"gridhead/protop2g-test#13156"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:23:34.670Z","updated_at":"2024-03-04T11:23:34.670Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":3,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13538","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13538","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13538/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13538/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13538","relative":"#13538","full":"gridhead/protop2g-test#13538"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963a8a6fd893cb-CCU + - 85f17eda8dcd94be-CCU Connection: - keep-alive Content-Encoding: @@ -1569,11 +1578,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:38 GMT + - Mon, 04 Mar 2024 11:23:41 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Aoxan0A0n8Jky7qc1weqIm1KzCXl6pEwVn%2BFhbzD%2FPQZ1mZc1t2hryGS9PpMbfyBTWlOSjAQPLQ9ghdkI2ojQrxqoYODzxGy2cmOFmuFji2S5Dl24TVKmfBcSt6M2%2B78iXTyxbgCQA4%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=LNeevDcdVvI%2Fv1mTXP%2F6LLpDt%2BcaXAB90lDNHc%2FYg%2BMCXClBBDnlmqmAGfNeCX1s5M43e1K5RlxqPwDV4qJPu6nXzruQqKtJ5XiHmdqg%2F%2Bk0SikMpA7kv56ZshR1yddpkkCPZLPvNgk%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1584,9 +1593,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"693009d187013fb04070b084981a0fca" + - W/"ea1319b7496d7b3503e7ec69766f60a2" gitlab-lb: - - haproxy-main-46-lb-gprd + - haproxy-main-19-lb-gprd gitlab-sv: - api-gke-us-east1-c referrer-policy: @@ -1600,11 +1609,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"810badf2a62d046d8389c1c9a096ea16","version":"1"}' + - '{"correlation_id":"00e5379bc3ca4f80ff616b480138fec0","version":"1"}' x-request-id: - - 810badf2a62d046d8389c1c9a096ea16 + - 00e5379bc3ca4f80ff616b480138fec0 x-runtime: - - '0.238476' + - '0.158635' status: code: 200 message: OK @@ -1627,25 +1636,25 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=dnhv9Q3qxJqRjBGDXznWZSMggYDWgxCeO4LQw28xsSk-1708594403428-0.0-604800000 + - _cfuvid=59e3IHlXJbHODD0m2Vy3R_96bvqRViShC0JLY9BlZjM-1709551404858-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/13156/discussions + uri: https://gitlab.com/api/v4/projects/42823949/issues/13538/discussions response: body: - string: '{"id":"0aa79e8ddcdda6fe536e838ddc11dd2058eb6b20","individual_note":false,"notes":[{"id":1784525569,"type":"DiscussionNote","body":"\n**Metadata + string: '{"id":"05bda57ab2e7d7c96a8e7fc946ac59ee79f1db03","individual_note":false,"notes":[{"id":1799292932,"type":"DiscussionNote","body":"\n**Metadata Update from \u0026t0xic0der**:\n- Issue status updated to: Closed (was: Open)\n\n_This comment was originally created [here](https://pagure.io/protop2g-test-srce/issue/2#comment-878477) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) under\n[this](https://pagure.io/protop2g-test-srce/issue/2) issue ticket on a Pagure repository, [**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) on\n[**Fri Oct 13 04:07:12 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-07)._\n\n_This - comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2024-02-22T09:33:39.346Z","updated_at":"2024-02-22T09:33:39.346Z","system":false,"noteable_id":142497583,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13156,"commands_changes":{}}]}' + comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"created_at":"2024-03-04T11:23:41.891Z","updated_at":"2024-03-04T11:23:41.891Z","system":false,"noteable_id":142912482,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13538,"commands_changes":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963a8e3b4e93cb-CCU + - 85f17edf58ce94ce-CCU Connection: - keep-alive Content-Length: @@ -1653,11 +1662,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:33:39 GMT + - Mon, 04 Mar 2024 11:23:42 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=FwM4p1VPALfBDHkFn%2F6UrMaB9IDECkToyqIBHO7pF8cSZHXMmv2ZM9JBk%2BIbaXDEZb6Rb%2F%2Fd9LdqQiRmXfvm6PFQLtJILDmasB%2FQH7iGBBH9gS%2FC2Akdq9WDEhhxnTsXpaDS9ujhr0Y%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=50GwUYIKQB4BlRPKJbmKyzcjfya9WE7qSUFT7KSsXpcElPmaHUh%2BlIk7uX6idK1GemBbwdi8CT1RukSCIajFEf5xZHaONFkDHTqHwUTSCIczEwPFBF%2BtQYJOCg%2B0hgXbdEpANPTrfkI%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1666,11 +1675,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"a1b63d0bd95e62bf25508352d379b0a4" + - W/"66d054610a1753ee29091923e4369348" gitlab-lb: - - haproxy-main-53-lb-gprd + - haproxy-main-27-lb-gprd gitlab-sv: - - api-gke-us-east1-d + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -1682,11 +1691,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"298914681c32275dc59699d1be065e43","version":"1"}' + - '{"correlation_id":"4d58fbf88433520759c8d2039aab8e7d","version":"1"}' x-request-id: - - 298914681c32275dc59699d1be065e43 + - 4d58fbf88433520759c8d2039aab8e7d x-runtime: - - '0.390454' + - '0.571714' status: code: 201 message: Created diff --git a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with SHUT status along with labels but without states, without privacy and without comments].yaml b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with SHUT status along with labels but without states, without privacy and without comments].yaml index a89bc7c..001dc8e 100644 --- a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with SHUT status along with labels but without states, without privacy and without comments].yaml +++ b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with SHUT status along with labels but without states, without privacy and without comments].yaml @@ -34,14 +34,14 @@ interactions: Content-Length: - '902' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-P6Z0ckvSZlN5pgWw0jk8FSiqX'; style-src - 'self' 'nonce-P6Z0ckvSZlN5pgWw0jk8FSiqX'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-hdV6AU8gk4JMjMC8wx3xfBPkl'; style-src + 'self' 'nonce-hdV6AU8gk4JMjMC8wx3xfBPkl'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:51 GMT + - Mon, 04 Mar 2024 11:22:46 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -80,14 +80,14 @@ interactions: response: body: string: '{"id":42823949,"description":null,"name":"protop2g-test","name_with_namespace":"Akashdeep - Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-02-22T09:31:08.610Z","namespace":{"id":13984834,"name":"Akashdeep + Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-03-04T11:20:52.799Z","namespace":{"id":13984834,"name":"Akashdeep Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"container_registry_image_prefix":"registry.gitlab.com/gridhead/protop2g-test","_links":{"self":"https://gitlab.com/api/v4/projects/42823949","issues":"https://gitlab.com/api/v4/projects/42823949/issues","merge_requests":"https://gitlab.com/api/v4/projects/42823949/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/42823949/repository/branches","labels":"https://gitlab.com/api/v4/projects/42823949/labels","events":"https://gitlab.com/api/v4/projects/42823949/events","members":"https://gitlab.com/api/v4/projects/42823949/members","cluster_agents":"https://gitlab.com/api/v4/projects/42823949/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"public","owner":{"id":10115999,"username":"gridhead","name":"Akashdeep - Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":5437,"description_html":"","updated_at":"2024-02-22T09:31:08.610Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":null}}' + Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":17,"description_html":"","updated_at":"2024-03-04T11:20:52.799Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":50,"notification_level":3},"group_access":null}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963965aaba94b0-CCU + - 85f17d902f3894b0-CCU Connection: - keep-alive Content-Encoding: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:51 GMT + - Mon, 04 Mar 2024 11:22:48 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=wxnhv2LTo3Aplu5kV%2B0Kx4cjJVIcPUp%2FPqNJzIoKefZWAmoSX2XK5J7pqvFmIhe15h7EXfeym7xfXDEafkGx6oSX61oYDgYUMHNqGUHh2%2BnapI0D1xw2xwr%2F%2BaMqQvm2gEdD8bYsYw4%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=q20dJJ1I4jbJYIw%2B3qE4uRjUf%2B8WJzTawXL8QlCHA2G7PKAu2YoJuqLvEGxKRrpSMm6c7JYoSqbOCYjyML0M2CoV2DJ1awZT9ADeaf5GrIuXaKZwNmGFVSf1bepSLvAb7%2BYSTrGVRM8%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -110,11 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"b93d5687a775788cecc27f1846ca73f6" + - W/"c19763e0102e8c1db20fb6711ce797fb" gitlab-lb: - - haproxy-main-08-lb-gprd + - haproxy-main-12-lb-gprd gitlab-sv: - - api-gke-us-east1-d + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -126,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"c1f49bccef6257bed3ab08a273ad9f8f","version":"1"}' + - '{"correlation_id":"ec2db8291747ef88b0ad778426b66110","version":"1"}' x-request-id: - - c1f49bccef6257bed3ab08a273ad9f8f + - ec2db8291747ef88b0ad778426b66110 x-runtime: - - '0.176741' + - '0.344766' status: code: 200 message: OK @@ -241,14 +241,14 @@ interactions: Content-Length: - '6409' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-dtGLp8eswAnEhhXO7nWkGH85E'; style-src - 'self' 'nonce-dtGLp8eswAnEhhXO7nWkGH85E'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-8uasOSWci7JnVHiEYsj7ZCmtT'; style-src + 'self' 'nonce-8uasOSWci7JnVHiEYsj7ZCmtT'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:52 GMT + - Mon, 04 Mar 2024 11:22:49 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -376,14 +376,14 @@ interactions: Content-Length: - '6409' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-V3KC0WTYjtXonqiME52cd579K'; style-src - 'self' 'nonce-V3KC0WTYjtXonqiME52cd579K'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-Hc7N37s4jRq71jhzomaZVtIVf'; style-src + 'self' 'nonce-Hc7N37s4jRq71jhzomaZVtIVf'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:53 GMT + - Mon, 04 Mar 2024 11:22:52 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -424,38 +424,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=o1vcfQqx8fQ0JgAURYCGs1Jdn1H_qyimtEdfLVQAumc-1708594371984-0.0-604800000 + - _cfuvid=PF1HUfxsSQ_eMM_orw4n5FT4CrtwJOiWNY.M2iermWo-1709551368389-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497547,"iid":13147,"project_id":42823949,"title":"[SN#4] This + string: '{"id":142912451,"iid":13529,"project_id":42823949,"title":"[SN#4] This is the title of the fourth test issue","description":"\nThis is the body of the fourth test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/4) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Tue Nov 21 08:06:56 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-06)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:32:54.825Z","updated_at":"2024-02-22T09:32:54.825Z","closed_at":null,"closed_by":null,"labels":["gggg","hhhh"],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13147","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13147","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13147/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13147/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13147","relative":"#13147","full":"gridhead/protop2g-test#13147"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:22:53.336Z","updated_at":"2024-03-04T11:22:53.336Z","closed_at":null,"closed_by":null,"labels":["gggg","hhhh"],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13529","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13529","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13529/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13529/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13529","relative":"#13529","full":"gridhead/protop2g-test#13529"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 859639777f3193bb-CCU + - 85f17db0881693c2-CCU Connection: - keep-alive Content-Length: - - '2205' + - '2237' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:55 GMT + - Mon, 04 Mar 2024 11:22:54 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=qigdU9D2LUNB%2BdmGU%2FXHZ%2Bh6gyYSgp0BkZ6UYTULnnDyLcUvLp9aBhPz01j3SVceD7EPE6iTCGduwhD6AagGR5i2%2FMrhWm4RFknh9gSDjDKoScbRyJ932x7Z819qa9k2orm57ZFlHuk%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=3SbjSjgkCZEHG7nTl3zp24L%2FVp%2FDOa1zllhfmBKitR%2FSbSzq%2B0FwAgBIYmn%2B7OAxCds5A9vyC6UF7q6mws8RI%2FrxuA6Or8MhUpWWRGebNJUJup5yxrdPCjMurrLLv9bKSSSLv8cMdwY%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -464,11 +465,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"fbb7412f5d1732add900ce5d7543a253" + - W/"e4aceda76115e17f6822f3e80193e0a0" gitlab-lb: - - haproxy-main-22-lb-gprd + - haproxy-main-11-lb-gprd gitlab-sv: - - api-gke-us-east1-c + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -480,11 +481,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"abc2a87cd417bc14ef57d3db78bcbab3","version":"1"}' + - '{"correlation_id":"e4f3342c674047d4e5c1e051cdd994a1","version":"1"}' x-request-id: - - abc2a87cd417bc14ef57d3db78bcbab3 + - e4f3342c674047d4e5c1e051cdd994a1 x-runtime: - - '0.523402' + - '0.852725' status: code: 201 message: Created @@ -508,38 +509,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=o1vcfQqx8fQ0JgAURYCGs1Jdn1H_qyimtEdfLVQAumc-1708594371984-0.0-604800000 + - _cfuvid=PF1HUfxsSQ_eMM_orw4n5FT4CrtwJOiWNY.M2iermWo-1709551368389-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497548,"iid":13148,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142912453,"iid":13530,"project_id":42823949,"title":"[SN#2] This is the title of the second test issue","description":"\nThis is the body of the second test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/2) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 04:01:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:32:55.908Z","updated_at":"2024-02-22T09:32:55.908Z","closed_at":null,"closed_by":null,"labels":["cccc","dddd"],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13148","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13148","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13148/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13148/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13148","relative":"#13148","full":"gridhead/protop2g-test#13148"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:22:55.457Z","updated_at":"2024-03-04T11:22:55.457Z","closed_at":null,"closed_by":null,"labels":["cccc","dddd"],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13530","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13530","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13530/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13530/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13530","relative":"#13530","full":"gridhead/protop2g-test#13530"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 8596397d7ea193c2-CCU + - 85f17db8fb3694b0-CCU Connection: - keep-alive Content-Length: - - '2205' + - '2237' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:56 GMT + - Mon, 04 Mar 2024 11:22:56 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=OBFlaQtG%2BLpPH5ew0lfpFCHwNLJ%2FQgYW2bq%2BJnyBa%2Fd0JuRc4qFtiWv4Dwgk%2FC3rwfHH8Ws7tLHoAOl%2F3DsYik5tf2y%2FXG1HTWTizvJzZg8Aq2qGtw3rHXAMUOEgoQO6%2FKvWPkU%2BPz8%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=IV1aSe36wmV%2BwkI2HzXtM3kWLzPk1cxXrybnF72CzVnbDHvPslDv3K1T%2BCCA5ENAaXOQxjSNan6vENtp%2BQi0XK5AdfZgga82O%2BYiYRymSrpy9gGGrHb7HX3Bcex5GI0R2ujkROye1xs%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -548,11 +550,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"ce05ca2808c477048591afa60fd8c0f4" + - W/"b9fd919a16ae40e1d48e71e091e8886f" gitlab-lb: - - haproxy-main-30-lb-gprd + - haproxy-main-06-lb-gprd gitlab-sv: - - gke-cny-api + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -564,11 +566,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"e9b5add48721c735f1a8c38839a6e67c","version":"1"}' + - '{"correlation_id":"2f415a55ade4e80c049c6938adc0f0ab","version":"1"}' x-request-id: - - e9b5add48721c735f1a8c38839a6e67c + - 2f415a55ade4e80c049c6938adc0f0ab x-runtime: - - '0.743757' + - '1.805995' status: code: 201 message: Created diff --git a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with SHUT status along with privacy but without states, without comments and without labels].yaml b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with SHUT status along with privacy but without states, without comments and without labels].yaml index 5d9c5a9..b3c3d2c 100644 --- a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with SHUT status along with privacy but without states, without comments and without labels].yaml +++ b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with SHUT status along with privacy but without states, without comments and without labels].yaml @@ -34,14 +34,14 @@ interactions: Content-Length: - '902' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-s8APs3rHlvao1nN86soA0uQlY'; style-src - 'self' 'nonce-s8APs3rHlvao1nN86soA0uQlY'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-59thUowpqLLTCpYLeiUzVvXSS'; style-src + 'self' 'nonce-59thUowpqLLTCpYLeiUzVvXSS'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:55 GMT + - Mon, 04 Mar 2024 11:21:46 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -80,14 +80,14 @@ interactions: response: body: string: '{"id":42823949,"description":null,"name":"protop2g-test","name_with_namespace":"Akashdeep - Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-02-22T09:31:08.610Z","namespace":{"id":13984834,"name":"Akashdeep + Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-03-04T11:20:52.799Z","namespace":{"id":13984834,"name":"Akashdeep Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"container_registry_image_prefix":"registry.gitlab.com/gridhead/protop2g-test","_links":{"self":"https://gitlab.com/api/v4/projects/42823949","issues":"https://gitlab.com/api/v4/projects/42823949/issues","merge_requests":"https://gitlab.com/api/v4/projects/42823949/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/42823949/repository/branches","labels":"https://gitlab.com/api/v4/projects/42823949/labels","events":"https://gitlab.com/api/v4/projects/42823949/events","members":"https://gitlab.com/api/v4/projects/42823949/members","cluster_agents":"https://gitlab.com/api/v4/projects/42823949/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"public","owner":{"id":10115999,"username":"gridhead","name":"Akashdeep - Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":5431,"description_html":"","updated_at":"2024-02-22T09:31:08.610Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":null}}' + Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":11,"description_html":"","updated_at":"2024-03-04T11:20:52.799Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":50,"notification_level":3},"group_access":null}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 8596380d4c9a93bb-CCU + - 85f17c115a3693bb-CCU Connection: - keep-alive Content-Encoding: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:56 GMT + - Mon, 04 Mar 2024 11:21:46 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=egYkJqoXny4yDZUbgXp5ZxSOC5JinZYM23ZFbHMD2TpVS8pi01Q%2BVeytnRzt4IzQ34ILgaArvuYSFrLYWi4YFtq1F212eDVgGbvgFmhs5V9bxeINiwY00vfjEfLFqEM9RuTzNhMGAkk%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=PsRYOORJVqj2FguTLIwoRmkXGLOrClDjEl8QrapLBMvv8W0Lg02fHUg70DzDI%2BjiYe0w7TVTn6URKkdfEMaQxPdytGoq0OJbNVBSOE%2FX3Otl776cmU4bIefTg2%2FktzIyEzla1QZaHNw%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -110,9 +110,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"911a5aabf7d48b62911faa6137953ba1" + - W/"424ee603f57396384d089ee70e16537f" gitlab-lb: - - haproxy-main-59-lb-gprd + - haproxy-main-29-lb-gprd gitlab-sv: - api-gke-us-east1-d referrer-policy: @@ -126,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"edb546fe8325f97c1b8d1b47e6e151fd","version":"1"}' + - '{"correlation_id":"3cd9121fb7261406ce8008d7497aff3e","version":"1"}' x-request-id: - - edb546fe8325f97c1b8d1b47e6e151fd + - 3cd9121fb7261406ce8008d7497aff3e x-runtime: - - '0.129904' + - '0.146900' status: code: 200 message: OK @@ -241,14 +241,14 @@ interactions: Content-Length: - '6409' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-TycgoSmjZBdDnoBo8nticacpq'; style-src - 'self' 'nonce-TycgoSmjZBdDnoBo8nticacpq'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-xBUiZOpH994yYCv25M5Mv6gKg'; style-src + 'self' 'nonce-xBUiZOpH994yYCv25M5Mv6gKg'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:57 GMT + - Mon, 04 Mar 2024 11:21:47 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -376,14 +376,14 @@ interactions: Content-Length: - '6409' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-RiFANMvFLYdjt9EL8Q3179UHa'; style-src - 'self' 'nonce-RiFANMvFLYdjt9EL8Q3179UHa'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-ImGQY6wN8m43pyP8eXpiZ4GaJ'; style-src + 'self' 'nonce-ImGQY6wN8m43pyP8eXpiZ4GaJ'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:58 GMT + - Mon, 04 Mar 2024 11:21:49 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -424,38 +424,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=jQkFkp.z_IyQr9tKfyQRS0uJxdxiEPBoiO76QadEXek-1708594316774-0.0-604800000 + - _cfuvid=muwXEd77yu08IwyzGp5FI_lNrJjXJCFqp5iQJGzkKPA-1709551306944-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497501,"iid":13137,"project_id":42823949,"title":"[SN#4] This + string: '{"id":142912410,"iid":13519,"project_id":42823949,"title":"[SN#4] This is the title of the fourth test issue","description":"\nThis is the body of the fourth test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/4) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Tue Nov 21 08:06:56 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-06)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:31:59.663Z","updated_at":"2024-02-22T09:31:59.663Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":true,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13137","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13137","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13137/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13137/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13137","relative":"#13137","full":"gridhead/protop2g-test#13137"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:21:50.714Z","updated_at":"2024-03-04T11:21:50.714Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":true,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13519","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13519","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13519/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13519/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13519","relative":"#13519","full":"gridhead/protop2g-test#13519"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 8596381f1c2294bc-CCU + - 85f17c25a83594ce-CCU Connection: - keep-alive Content-Length: - - '2191' + - '2223' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:00 GMT + - Mon, 04 Mar 2024 11:21:51 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=IWdSLOcDIeJh0C8AgYZyV4YxartEELPAV%2Fa8Ixsnhh0IQ5qjrtegSmZMoSJs1nv4up0eYDVhwe%2B50hDQlXCypRncbzsp9s0eEyvLfXfgpUdjAzEsJBzz%2FFNrZ6hGQeFJgp6y2KoDfPg%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=tt5b0QsqlXaJzsSmwCNTf%2B%2Fnk%2Fv2rZoximlrEG%2F0XML%2BTGSVQqkTOWG1pZxiHdQJb9mKWH3uWH%2BdxKogCJ8iNvK%2B7SjbmuVfxqcuN9X845J6ywggIHpNZ8lcl17E%2BHOl7n9sbYYBFbA%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -464,11 +465,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"e716399e83aeb156c42f074fa34718d7" + - W/"e202e32ea1ecd7c3a963a255977903e1" gitlab-lb: - - haproxy-main-58-lb-gprd + - haproxy-main-38-lb-gprd gitlab-sv: - - api-gke-us-east1-c + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -480,11 +481,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"988117c67d8c03602d0bfbaf727f8b8d","version":"1"}' + - '{"correlation_id":"61f4b10f7c7e12a5a2bd821e0b7a672e","version":"1"}' x-request-id: - - 988117c67d8c03602d0bfbaf727f8b8d + - 61f4b10f7c7e12a5a2bd821e0b7a672e x-runtime: - - '0.504831' + - '0.839855' status: code: 201 message: Created @@ -508,38 +509,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=jQkFkp.z_IyQr9tKfyQRS0uJxdxiEPBoiO76QadEXek-1708594316774-0.0-604800000 + - _cfuvid=muwXEd77yu08IwyzGp5FI_lNrJjXJCFqp5iQJGzkKPA-1709551306944-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497503,"iid":13138,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142912411,"iid":13520,"project_id":42823949,"title":"[SN#2] This is the title of the second test issue","description":"\nThis is the body of the second test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/2) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 04:01:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:32:00.600Z","updated_at":"2024-02-22T09:32:00.600Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13138","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13138","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13138/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13138/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13138","relative":"#13138","full":"gridhead/protop2g-test#13138"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:21:51.894Z","updated_at":"2024-03-04T11:21:51.894Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13520","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13520","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13520/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13520/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13520","relative":"#13520","full":"gridhead/protop2g-test#13520"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963824af6f94d0-CCU + - 85f17c30ab4c94c4-CCU Connection: - keep-alive Content-Length: - - '2192' + - '2224' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:00 GMT + - Mon, 04 Mar 2024 11:21:52 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=kfwYwPcLCh3%2BC7Gm1KuRPInw0zyh%2FiSLueY96IJsatZUd0jaJB7wpip1voFCkroMJfm331moAaXFna%2BpssiLK0JvH9c6zQRKuhUrOvyhcyRx8e19QdomzAqNjUMpOIuH4T2zEnX9DxQ%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=7IB9wn5N4mtKOodXiT962ky47czTb28Y2053ux9fin%2FiPh%2F0Kpt2Bq9abI13R67pCrhrP1kyXaS5jSc8cGGxVzyjPNvL3KPlweOGAIQPJZ6ylgLo3k8kEIpJtMP7wPJISakqsS83IRY%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -548,9 +550,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"0ab335c3ee78dae2c50bbc643acccea2" + - W/"e1f176fe987f70674dba079d5377f4bd" gitlab-lb: - - haproxy-main-18-lb-gprd + - haproxy-main-24-lb-gprd gitlab-sv: - api-gke-us-east1-b referrer-policy: @@ -564,11 +566,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"0f17c783e9090f2dc667eb9cca8b5aee","version":"1"}' + - '{"correlation_id":"3ea4c8c394152417346bd3528b5d899d","version":"1"}' x-request-id: - - 0f17c783e9090f2dc667eb9cca8b5aee + - 3ea4c8c394152417346bd3528b5d899d x-runtime: - - '0.507913' + - '0.446960' status: code: 201 message: Created diff --git a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with SHUT status along with states but without comments, without privacy and without labels].yaml b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with SHUT status along with states but without comments, without privacy and without labels].yaml index e589ec8..87e895d 100644 --- a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with SHUT status along with states but without comments, without privacy and without labels].yaml +++ b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with SHUT status along with states but without comments, without privacy and without labels].yaml @@ -34,14 +34,14 @@ interactions: Content-Length: - '902' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-a8p94i1yxV3hcdkyAbGDfbNmq'; style-src - 'self' 'nonce-a8p94i1yxV3hcdkyAbGDfbNmq'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-qLqj89GKv3kQX4w61jZ2Vntnm'; style-src + 'self' 'nonce-qLqj89GKv3kQX4w61jZ2Vntnm'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:36 GMT + - Mon, 04 Mar 2024 11:21:26 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -80,14 +80,14 @@ interactions: response: body: string: '{"id":42823949,"description":null,"name":"protop2g-test","name_with_namespace":"Akashdeep - Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-02-22T09:31:08.610Z","namespace":{"id":13984834,"name":"Akashdeep + Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-03-04T11:20:52.799Z","namespace":{"id":13984834,"name":"Akashdeep Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"container_registry_image_prefix":"registry.gitlab.com/gridhead/protop2g-test","_links":{"self":"https://gitlab.com/api/v4/projects/42823949","issues":"https://gitlab.com/api/v4/projects/42823949/issues","merge_requests":"https://gitlab.com/api/v4/projects/42823949/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/42823949/repository/branches","labels":"https://gitlab.com/api/v4/projects/42823949/labels","events":"https://gitlab.com/api/v4/projects/42823949/events","members":"https://gitlab.com/api/v4/projects/42823949/members","cluster_agents":"https://gitlab.com/api/v4/projects/42823949/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"public","owner":{"id":10115999,"username":"gridhead","name":"Akashdeep - Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":5430,"description_html":"","updated_at":"2024-02-22T09:31:08.610Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":null}}' + Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":10,"description_html":"","updated_at":"2024-03-04T11:20:52.799Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":50,"notification_level":3},"group_access":null}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963791ed4c94c4-CCU + - 85f17b9498dd94ce-CCU Connection: - keep-alive Content-Encoding: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:37 GMT + - Mon, 04 Mar 2024 11:21:27 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=koyqp4eSGTFXxF7pdmo8ONX3Gt%2BflGPLlxSvCTb2ZrKbZJ3Tn6Ww%2FvoP1UE3C8w3SgUTlyytmKQxZn04HsUDm7HMLTE3gl0g6sW1DVhUZah7K3hMocSGBFibpQvOQwQC4wFNlBO2r1E%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=sOvwmuUfWBR%2F2U05e71yU4s%2Fg3xO7fJl3QdXF%2BLvA4108RazgHqObfDXlxyCSJnwTQiUFUJvn0EBEUm%2Bf2Lbe5AZ3mZBfEaM%2Fb6wG02TI0eDl%2B8I0PqqQIWBdi0lBwj2fV1rVryJjGM%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -110,11 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"ef61ac7cb49ff5fb0f8a709a79e588fd" + - W/"e90bd1d2866b76d3285510815ac348a3" gitlab-lb: - - haproxy-main-27-lb-gprd + - haproxy-main-47-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -126,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"85c4184f70d79d295db035bd933629b7","version":"1"}' + - '{"correlation_id":"3aba656c2f5f481543992783d167cd4f","version":"1"}' x-request-id: - - 85c4184f70d79d295db035bd933629b7 + - 3aba656c2f5f481543992783d167cd4f x-runtime: - - '0.195871' + - '0.198935' status: code: 200 message: OK @@ -241,14 +241,14 @@ interactions: Content-Length: - '6409' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-5E1IdUkCZrHxfZYsrP6AssDWL'; style-src - 'self' 'nonce-5E1IdUkCZrHxfZYsrP6AssDWL'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-rv1163G9vPA7bqoYQdGTROsXF'; style-src + 'self' 'nonce-rv1163G9vPA7bqoYQdGTROsXF'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:37 GMT + - Mon, 04 Mar 2024 11:21:27 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -376,14 +376,14 @@ interactions: Content-Length: - '6409' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-fA9HzPeeGTj0KYAy0PeyvTwks'; style-src - 'self' 'nonce-fA9HzPeeGTj0KYAy0PeyvTwks'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-Q0PoBnpugtWBFywvsVYZcql9I'; style-src + 'self' 'nonce-Q0PoBnpugtWBFywvsVYZcql9I'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:38 GMT + - Mon, 04 Mar 2024 11:21:30 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -423,38 +423,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=08HLfzdUkFITf7QbA3p6RAzOTyAMBCLFUcOuW3kngVw-1708594297117-0.0-604800000 + - _cfuvid=UX1uewMd6wBcaswrRY9Yz9zQr703zsn353mvi0NHIY8-1709551287046-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497486,"iid":13133,"project_id":42823949,"title":"[SN#4] This + string: '{"id":142912399,"iid":13515,"project_id":42823949,"title":"[SN#4] This is the title of the fourth test issue","description":"\nThis is the body of the fourth test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/4) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Tue Nov 21 08:06:56 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-06)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:31:39.738Z","updated_at":"2024-02-22T09:31:39.738Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13133","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13133","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13133/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13133/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13133","relative":"#13133","full":"gridhead/protop2g-test#13133"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:21:30.903Z","updated_at":"2024-03-04T11:21:30.903Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13515","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13515","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13515/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13515/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13515","relative":"#13515","full":"gridhead/protop2g-test#13515"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 859637a28f6494bf-CCU + - 85f17bad6aec94d0-CCU Connection: - keep-alive Content-Length: - - '2192' + - '2224' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:40 GMT + - Mon, 04 Mar 2024 11:21:31 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=2afKBhskDez9lt8a66ThMHVFH7NNEhEveiF6PcWkz0xCGgU52Vfa7r491r%2FWWJflZ05D9112JacUdrj9a6vJYhzKblQxasOIoVXqj5%2BThMnIWUTnCUSND3FKBxSNZCio05r9cxmHCgM%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=%2Bmv47um5GLFrKizqZVHHlwG1swDmAWUcEu6SVbJ2qcx%2FoZuDML3smXv5ALiogITiuy9POqxKghs8Abx6B8fSav9eoiOC3dY9I7XPVA5gMgn3U%2FRzc8dZCtRcFe1I1XvuLdgZrplGveE%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -463,9 +464,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"29d1a54c9fb60a793ee3fcfc222ad839" + - W/"0a6af2fae5a9811fe5821bb208897724" gitlab-lb: - - haproxy-main-08-lb-gprd + - haproxy-main-14-lb-gprd gitlab-sv: - api-gke-us-east1-d referrer-policy: @@ -479,11 +480,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"15172eb6b90dc64ac695b01c71de955b","version":"1"}' + - '{"correlation_id":"7db1171bd1ad9d13daf7983eaa00453e","version":"1"}' x-request-id: - - 15172eb6b90dc64ac695b01c71de955b + - 7db1171bd1ad9d13daf7983eaa00453e x-runtime: - - '0.558096' + - '0.466813' status: code: 201 message: Created @@ -499,26 +500,27 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=08HLfzdUkFITf7QbA3p6RAzOTyAMBCLFUcOuW3kngVw-1708594297117-0.0-604800000 + - _cfuvid=UX1uewMd6wBcaswrRY9Yz9zQr703zsn353mvi0NHIY8-1709551287046-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13133 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13515 response: body: - string: '{"id":142497486,"iid":13133,"project_id":42823949,"title":"[SN#4] This + string: '{"id":142912399,"iid":13515,"project_id":42823949,"title":"[SN#4] This is the title of the fourth test issue","description":"\nThis is the body of the fourth test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/4) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Tue Nov 21 08:06:56 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-06)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:31:39.738Z","updated_at":"2024-02-22T09:31:39.738Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13133","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13133","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13133/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13133/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13133","relative":"#13133","full":"gridhead/protop2g-test#13133"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:21:30.903Z","updated_at":"2024-03-04T11:21:30.903Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13515","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13515","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13515/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13515/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13515","relative":"#13515","full":"gridhead/protop2g-test#13515"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 859637a85f7493bb-CCU + - 85f17bb3dd7393cb-CCU Connection: - keep-alive Content-Encoding: @@ -526,11 +528,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:40 GMT + - Mon, 04 Mar 2024 11:21:31 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=mh3ED5EaqYkyP5O5RyIxUIQuII5ElIt3iJ82iCyZfcC1Vhfkc04njklOllbRnFB5kXCbECNy77ZmacTsIaMtoQJFl0r2QfQHJzKGnuF9QLthDnQwjUQyWSLe%2F5If0bK90XbjELnjvhY%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=oxpil4yjNwoLGAQe4vJ3mxLPPckqYeUuyEFlL10OsiNOi1LtVXMvtLGtlPloScbWMb7AWRuoCPzudKYAE%2Bh9E6mhdJ4ovPpvG9ekwZAvRsN73mzoV7p%2FSFuz9jgt7EeEMjGHX9M7xeQ%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -541,9 +543,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"29d1a54c9fb60a793ee3fcfc222ad839" + - W/"0a6af2fae5a9811fe5821bb208897724" gitlab-lb: - - haproxy-main-38-lb-gprd + - haproxy-main-32-lb-gprd gitlab-sv: - api-gke-us-east1-d referrer-policy: @@ -557,11 +559,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"bd2576acef739c519772efbc1be87e43","version":"1"}' + - '{"correlation_id":"96b71a35f1ad98500171b408131c6282","version":"1"}' x-request-id: - - bd2576acef739c519772efbc1be87e43 + - 96b71a35f1ad98500171b408131c6282 x-runtime: - - '0.133471' + - '0.182029' status: code: 200 message: OK @@ -579,26 +581,28 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=08HLfzdUkFITf7QbA3p6RAzOTyAMBCLFUcOuW3kngVw-1708594297117-0.0-604800000 + - _cfuvid=UX1uewMd6wBcaswrRY9Yz9zQr703zsn353mvi0NHIY8-1709551287046-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: PUT - uri: https://gitlab.com/api/v4/projects/42823949/issues/13133 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13515 response: body: - string: '{"id":142497486,"iid":13133,"project_id":42823949,"title":"[SN#4] This + string: '{"id":142912399,"iid":13515,"project_id":42823949,"title":"[SN#4] This is the title of the fourth test issue","description":"\nThis is the body of the fourth test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/4) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Tue Nov 21 08:06:56 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-06)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"closed","created_at":"2024-02-22T09:31:39.738Z","updated_at":"2024-02-22T09:31:41.722Z","closed_at":"2024-02-22T09:31:41.706Z","closed_by":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13133","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13133","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13133/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13133/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13133","relative":"#13133","full":"gridhead/protop2g-test#13133"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"closed","created_at":"2024-03-04T11:21:30.903Z","updated_at":"2024-03-04T11:21:32.984Z","closed_at":"2024-03-04T11:21:32.964Z","closed_by":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13515","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13515","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13515/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13515/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13515","relative":"#13515","full":"gridhead/protop2g-test#13515"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 859637ab8fbf94b0-CCU + - 85f17bb7db8e94be-CCU Connection: - keep-alive Content-Encoding: @@ -606,11 +610,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:42 GMT + - Mon, 04 Mar 2024 11:21:33 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=GSeDqq2rU2QCnIVpU46R6pVvWlzAEeBMmX1InPJtppAbsWrVjOy98mwvfbU4PFfW2WhAMpRkL%2FL5NtI3IEHiG3Bb9NrqYZs37fKkBSZlerVckchQgURdDWSrgKoROrSVWOs1m45Dfbs%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=%2FdHktA0EBAjcMKl19%2Br4kZVrcIYVtdWktHqx4BRYjfevN22SqZC2fvoppcOKgg283mfJNHjqJfMwxG5Eh%2FOVRyRu211nhsxODKktnN4nT3gfy96pIbLkpH%2BwUZuU7tBQM0gcPUQBRw0%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -621,9 +625,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"faa13c4c875cddda061a9985165d2a9a" + - W/"802a70f6c1dc8d8c0fd84609f5fb045b" gitlab-lb: - - haproxy-main-49-lb-gprd + - haproxy-main-13-lb-gprd gitlab-sv: - api-gke-us-east1-c referrer-policy: @@ -637,11 +641,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"390207fdde0dcd662b456375fa393b2f","version":"1"}' + - '{"correlation_id":"040bb8e6f272f7528cad62b68e76e5f3","version":"1"}' x-request-id: - - 390207fdde0dcd662b456375fa393b2f + - 040bb8e6f272f7528cad62b68e76e5f3 x-runtime: - - '0.418669' + - '0.744842' status: code: 200 message: OK @@ -664,38 +668,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=08HLfzdUkFITf7QbA3p6RAzOTyAMBCLFUcOuW3kngVw-1708594297117-0.0-604800000 + - _cfuvid=UX1uewMd6wBcaswrRY9Yz9zQr703zsn353mvi0NHIY8-1709551287046-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497489,"iid":13134,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142912403,"iid":13516,"project_id":42823949,"title":"[SN#2] This is the title of the second test issue","description":"\nThis is the body of the second test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/2) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 04:01:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:31:42.736Z","updated_at":"2024-02-22T09:31:42.736Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13134","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13134","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13134/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13134/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13134","relative":"#13134","full":"gridhead/protop2g-test#13134"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:21:34.415Z","updated_at":"2024-03-04T11:21:34.415Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13516","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13516","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13516/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13516/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13516","relative":"#13516","full":"gridhead/protop2g-test#13516"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 859637b4e86494b0-CCU + - 85f17bc288cf94d0-CCU Connection: - keep-alive Content-Length: - - '2192' + - '2224' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:44 GMT + - Mon, 04 Mar 2024 11:21:34 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=fmigEGGslOYil1u1wBFh3RITd91SGtKQu%2BhfpIW%2BDX%2FQdvD5bh7Dn1m9JXAvS37PaOw8CFEhlZo%2Fdmf%2BpZEIeTbml1y5bPzuTrTSDBAVh6uay0p0J6RAmOkL2CNt6W2dffYdjwgSbvo%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=jiWeCiYs8BGg9JtKXSg3uBM%2FrzuEK5rx2dFuv5byYdjRrfbyHotyYEH5htD2H34fSzzmrjK%2BJ8cdE1aZ1dFV%2FgwY9Al1TKJipiEMKF%2BVrh8Tlun06kKucO4Me%2Br%2FuUtnXCQomxT66gI%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -704,9 +709,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"15c7cb677a57fadad431d0f78b9078ff" + - W/"55470c42efa80fbfbecc07a5e6ad7830" gitlab-lb: - - haproxy-main-09-lb-gprd + - haproxy-main-57-lb-gprd gitlab-sv: - api-gke-us-east1-b referrer-policy: @@ -720,11 +725,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"9610ea5957eda91a4831cf4a6bf7ad35","version":"1"}' + - '{"correlation_id":"092c0f192ffd5fd7db8a818322525e5b","version":"1"}' x-request-id: - - 9610ea5957eda91a4831cf4a6bf7ad35 + - 092c0f192ffd5fd7db8a818322525e5b x-runtime: - - '2.265285' + - '0.466374' status: code: 201 message: Created @@ -740,26 +745,27 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=08HLfzdUkFITf7QbA3p6RAzOTyAMBCLFUcOuW3kngVw-1708594297117-0.0-604800000 + - _cfuvid=UX1uewMd6wBcaswrRY9Yz9zQr703zsn353mvi0NHIY8-1709551287046-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13134 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13516 response: body: - string: '{"id":142497489,"iid":13134,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142912403,"iid":13516,"project_id":42823949,"title":"[SN#2] This is the title of the second test issue","description":"\nThis is the body of the second test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/2) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 04:01:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:31:42.736Z","updated_at":"2024-02-22T09:31:42.736Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13134","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13134","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13134/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13134/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13134","relative":"#13134","full":"gridhead/protop2g-test#13134"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:21:34.415Z","updated_at":"2024-03-04T11:21:34.415Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13516","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13516","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13516/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13516/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13516","relative":"#13516","full":"gridhead/protop2g-test#13516"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 859637c57f0294be-CCU + - 85f17bc9ae4893bb-CCU Connection: - keep-alive Content-Encoding: @@ -767,11 +773,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:45 GMT + - Mon, 04 Mar 2024 11:21:35 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=WPW9vaFeD%2BjK7W1l46M50oCZQEt%2B3%2FvjPTwsqnbdbyr6bTj1vZOmx0Dt8p2rqX5gn%2BvTgIEkxwvGFG9w%2F3D4SbfFZ3jNHaPjz0siQlnSMO78sd9O5KB8766uOsymcyKJzwt05bodz1U%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Yr%2B%2BBP94qnpbz5gML24%2Fgfq%2BUroKXxY4i5GtdUTwy06uwKhGiVJ8egHZ6TenMfwM8wtRp86WcMA8dYRet6l89QvZObojg%2FdPsT195kRIFFgrpRWyAvenCSsUXHGavhN0vGZhFr%2BSkeA%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -782,11 +788,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"15c7cb677a57fadad431d0f78b9078ff" + - W/"55470c42efa80fbfbecc07a5e6ad7830" gitlab-lb: - - haproxy-main-04-lb-gprd + - haproxy-main-48-lb-gprd gitlab-sv: - - api-gke-us-east1-c + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -798,11 +804,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"26afa438c73fda73d6cb4b2b90b4b374","version":"1"}' + - '{"correlation_id":"4c5332155740f52186860f903d5519b3","version":"1"}' x-request-id: - - 26afa438c73fda73d6cb4b2b90b4b374 + - 4c5332155740f52186860f903d5519b3 x-runtime: - - '0.189474' + - '0.127018' status: code: 200 message: OK @@ -820,26 +826,28 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=08HLfzdUkFITf7QbA3p6RAzOTyAMBCLFUcOuW3kngVw-1708594297117-0.0-604800000 + - _cfuvid=UX1uewMd6wBcaswrRY9Yz9zQr703zsn353mvi0NHIY8-1709551287046-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: PUT - uri: https://gitlab.com/api/v4/projects/42823949/issues/13134 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13516 response: body: - string: '{"id":142497489,"iid":13134,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142912403,"iid":13516,"project_id":42823949,"title":"[SN#2] This is the title of the second test issue","description":"\nThis is the body of the second test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/2) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 04:01:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"closed","created_at":"2024-02-22T09:31:42.736Z","updated_at":"2024-02-22T09:31:45.734Z","closed_at":"2024-02-22T09:31:45.717Z","closed_by":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13134","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13134","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13134/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13134/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13134","relative":"#13134","full":"gridhead/protop2g-test#13134"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"closed","created_at":"2024-03-04T11:21:34.415Z","updated_at":"2024-03-04T11:21:35.746Z","closed_at":"2024-03-04T11:21:35.737Z","closed_by":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13516","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13516","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13516/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13516/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13516","relative":"#13516","full":"gridhead/protop2g-test#13516"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 859637c928bd94b6-CCU + - 85f17bcceafd94b2-CCU Connection: - keep-alive Content-Encoding: @@ -847,11 +855,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:46 GMT + - Mon, 04 Mar 2024 11:21:36 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=lFKpESqgquWK5U8mMQ6ZmwJVyy3Lh14qbKiSx5HljH3v%2F2HMdjEFVKSm6atmgIdc6l24gRzVVcJ9XmAADyn%2Bqcl8a8UyX1ZbaPwZ5Fu5Y7G7Dotucn8ASByqFzjryvuny4qetCWV2Zk%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=sEO8TLidhcgWwlviDchC9vC28yMJp37YRdSC9cNqA5VWZEJODrCwULVqICnUFEJIlry3%2Fv8H5C3p%2BOeuDxV%2BnKlX75D%2BF%2Bl3Kr4yssNoZVFMjKEgNf%2BpPu1tRqfNONiMgzlgImiH7oc%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -862,11 +870,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"e541c26a87f8ec76b342811c715fc698" + - W/"fd312cef079f8e22921e90e77d42c62a" gitlab-lb: - - haproxy-main-07-lb-gprd + - haproxy-main-42-lb-gprd gitlab-sv: - - api-gke-us-east1-c + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -878,11 +886,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"a14c1b4677a39c391c891438408454b3","version":"1"}' + - '{"correlation_id":"ddc8cc146c016d65f5df64538533a769","version":"1"}' x-request-id: - - a14c1b4677a39c391c891438408454b3 + - ddc8cc146c016d65f5df64538533a769 x-runtime: - - '0.409586' + - '0.612493' status: code: 200 message: OK diff --git a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with SHUT status without labels, without states, without privacy and without comments the identities of which fall in the given range].yaml b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with SHUT status without labels, without states, without privacy and without comments the identities of which fall in the given range].yaml index 1fe6882..b4500c2 100644 --- a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with SHUT status without labels, without states, without privacy and without comments the identities of which fall in the given range].yaml +++ b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with SHUT status without labels, without states, without privacy and without comments the identities of which fall in the given range].yaml @@ -34,14 +34,14 @@ interactions: Content-Length: - '902' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-3iI7oyiaGo5i2gvxUT1YdjLHI'; style-src - 'self' 'nonce-3iI7oyiaGo5i2gvxUT1YdjLHI'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-M0ZNvkqb0BQJnNuurG1LUaz2g'; style-src + 'self' 'nonce-M0ZNvkqb0BQJnNuurG1LUaz2g'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:15 GMT + - Mon, 04 Mar 2024 11:24:19 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -80,14 +80,14 @@ interactions: response: body: string: '{"id":42823949,"description":null,"name":"protop2g-test","name_with_namespace":"Akashdeep - Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-02-22T09:31:08.610Z","namespace":{"id":13984834,"name":"Akashdeep + Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-03-04T11:20:52.799Z","namespace":{"id":13984834,"name":"Akashdeep Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"container_registry_image_prefix":"registry.gitlab.com/gridhead/protop2g-test","_links":{"self":"https://gitlab.com/api/v4/projects/42823949","issues":"https://gitlab.com/api/v4/projects/42823949/issues","merge_requests":"https://gitlab.com/api/v4/projects/42823949/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/42823949/repository/branches","labels":"https://gitlab.com/api/v4/projects/42823949/labels","events":"https://gitlab.com/api/v4/projects/42823949/events","members":"https://gitlab.com/api/v4/projects/42823949/members","cluster_agents":"https://gitlab.com/api/v4/projects/42823949/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"public","owner":{"id":10115999,"username":"gridhead","name":"Akashdeep - Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":5452,"description_html":"","updated_at":"2024-02-22T09:31:08.610Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":null}}' + Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":32,"description_html":"","updated_at":"2024-03-04T11:20:52.799Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":50,"notification_level":3},"group_access":null}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963b733aa194b2-CCU + - 85f17fdab96194d0-CCU Connection: - keep-alive Content-Encoding: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:15 GMT + - Mon, 04 Mar 2024 11:24:21 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=QaTWhbqxAobdpZQh87qIZYJyqRm%2Fadl%2BCVBiD%2BmumuwS1LptzVwLgtrikO7sTPM1iaKcckZ11MnAGrz7QPVDM43rBTYHlJJptW6UQmGmjokeUbPXmfx9fhU7Dk%2ByZebaFcD9Sdc66Yc%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=%2F9fJwIXZ5Kk5vTRjgiPvmkAqgcdqyQZMIIsvqeMWKhNac6vUdfiGGaa8U7qfH0LkXJD6mnKHN7RbZNjRttdwtag%2BLlciVcjJRPEnBDLrJgBPXsGmI0R7D%2FibREH%2FBQyxONND4C270LE%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -110,11 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"d0a2c70ea4236c02abb548f94470cfa3" + - W/"789732b217500a1592495b5876839954" gitlab-lb: - - haproxy-main-10-lb-gprd + - haproxy-main-45-lb-gprd gitlab-sv: - - api-gke-us-east1-c + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -126,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"b462ba774f86dae2a6a99812d045e7b8","version":"1"}' + - '{"correlation_id":"0eab6b274f2f89b94e5abc4bc5f0afdd","version":"1"}' x-request-id: - - b462ba774f86dae2a6a99812d045e7b8 + - 0eab6b274f2f89b94e5abc4bc5f0afdd x-runtime: - - '0.131233' + - '0.128682' status: code: 200 message: OK @@ -186,14 +186,14 @@ interactions: Content-Length: - '2135' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-c3eOQH6wXs3lnoIvokW0vwHVK'; style-src - 'self' 'nonce-c3eOQH6wXs3lnoIvokW0vwHVK'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-9jxZoU66n8S8Ogerrny5zLotd'; style-src + 'self' 'nonce-9jxZoU66n8S8Ogerrny5zLotd'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:16 GMT + - Mon, 04 Mar 2024 11:24:22 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -275,14 +275,14 @@ interactions: Content-Length: - '2784' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-nLJl6lfo7f1DOjcaCVG3xPnkK'; style-src - 'self' 'nonce-nLJl6lfo7f1DOjcaCVG3xPnkK'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-kN1x3obgzNSgVvnaZZ7JaQW6B'; style-src + 'self' 'nonce-kN1x3obgzNSgVvnaZZ7JaQW6B'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:18 GMT + - Mon, 04 Mar 2024 11:24:24 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -322,38 +322,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=wZxBLHyWv8sxe2a9ZBvNnmOU7KVrxApiyqGYpsDBcPE-1708594455986-0.0-604800000 + - _cfuvid=xYsOxfYlmfAcqLbBsK46qjQCHOEF44X6hysQofosBvE-1709551461982-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497613,"iid":13162,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142912512,"iid":13544,"project_id":42823949,"title":"[SN#2] This is the title of the second test issue","description":"\nThis is the body of the second test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/2) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 04:01:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:34:19.109Z","updated_at":"2024-02-22T09:34:19.109Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13162","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13162","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13162/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13162/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13162","relative":"#13162","full":"gridhead/protop2g-test#13162"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:24:25.698Z","updated_at":"2024-03-04T11:24:25.698Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13544","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13544","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13544/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13544/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13544","relative":"#13544","full":"gridhead/protop2g-test#13544"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963b864f6394ce-CCU + - 85f17ff1efaa94b6-CCU Connection: - keep-alive Content-Length: - - '2192' + - '2224' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:19 GMT + - Mon, 04 Mar 2024 11:24:26 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=M6CJoApC0bD94WX9l71tLLAvDWKE7XYucp3tsmHZt70MxR0kPUesAyPf5n0JyXnjTFoc18fSR7ntJGSANoNSUQN42MsuNaj4ipwAhwtGv5ucmTcRxiJsW33zbyYwurPryDDXnYwnZsE%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Buhgz0t2%2FgSbIzjgV%2FOGOW0gpWEESZJvGzv7ZEambuWRlXdbgWvWLjgC08anini2PU38JFrFcxbSHJKNuw38YsSCIzpaDHRvWHehYkrwrVoVEK8WekQXo3hYcRAbeVERZF%2B4WVdvH8A%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -362,11 +363,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"f0814255128c570b7171363abdb4ee5f" + - W/"cb908c1f61237d8b64e010ffe3b0af75" gitlab-lb: - - haproxy-main-25-lb-gprd + - haproxy-main-57-lb-gprd gitlab-sv: - - api-gke-us-east1-c + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -378,11 +379,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"b82727a8082460d1435b8dbc36ef8dc4","version":"1"}' + - '{"correlation_id":"55c913e8bf29f1ef359490ab62d06e2d","version":"1"}' x-request-id: - - b82727a8082460d1435b8dbc36ef8dc4 + - 55c913e8bf29f1ef359490ab62d06e2d x-runtime: - - '0.864192' + - '0.810501' status: code: 201 message: Created diff --git a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with SHUT status without labels, without states, without privacy and without comments the identities of which fall in the given selection].yaml b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with SHUT status without labels, without states, without privacy and without comments the identities of which fall in the given selection].yaml index cc4baf3..baa5926 100644 --- a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with SHUT status without labels, without states, without privacy and without comments the identities of which fall in the given selection].yaml +++ b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with SHUT status without labels, without states, without privacy and without comments the identities of which fall in the given selection].yaml @@ -34,14 +34,14 @@ interactions: Content-Length: - '902' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-ds551v8cy7ItYAz4zESNsBXl1'; style-src - 'self' 'nonce-ds551v8cy7ItYAz4zESNsBXl1'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-FnzuFwMQzgkf9w9cutWnQXRvj'; style-src + 'self' 'nonce-FnzuFwMQzgkf9w9cutWnQXRvj'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:32 GMT + - Mon, 04 Mar 2024 11:24:42 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -80,14 +80,14 @@ interactions: response: body: string: '{"id":42823949,"description":null,"name":"protop2g-test","name_with_namespace":"Akashdeep - Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-02-22T09:31:08.610Z","namespace":{"id":13984834,"name":"Akashdeep + Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-03-04T11:20:52.799Z","namespace":{"id":13984834,"name":"Akashdeep Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"container_registry_image_prefix":"registry.gitlab.com/gridhead/protop2g-test","_links":{"self":"https://gitlab.com/api/v4/projects/42823949","issues":"https://gitlab.com/api/v4/projects/42823949/issues","merge_requests":"https://gitlab.com/api/v4/projects/42823949/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/42823949/repository/branches","labels":"https://gitlab.com/api/v4/projects/42823949/labels","events":"https://gitlab.com/api/v4/projects/42823949/events","members":"https://gitlab.com/api/v4/projects/42823949/members","cluster_agents":"https://gitlab.com/api/v4/projects/42823949/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"public","owner":{"id":10115999,"username":"gridhead","name":"Akashdeep - Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":5456,"description_html":"","updated_at":"2024-02-22T09:31:08.610Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":null}}' + Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":36,"description_html":"","updated_at":"2024-03-04T11:20:52.799Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":50,"notification_level":3},"group_access":null}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963bdfb91394d0-CCU + - 85f1805cfc1d94ce-CCU Connection: - keep-alive Content-Encoding: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:33 GMT + - Mon, 04 Mar 2024 11:24:42 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=PX1yag9kvcK5Fm0MONuJQH7nD5TUOIucYZnht94Mgl5IhDjXl0P0O4GxyoDIC4KxPVNgzc8WmCdmgAGPziEsMLtCi%2FpZPls7AiK%2F%2FHay363hSa1tod91mwo%2BZ4lTvigXlnqboKCQQd4%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=gR%2Fso6lVLOW3JjcSUQkTUUcRMlIR80yErD69P99P2D0beuPV9kF2o15vMljTcmwXSSOQSUJLVwk4LYXNizWWOMBiZGr1JuF32RqMPSi6evxtU9lZYAxQvnWFY0eSSd1Df14RVmrtFZk%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -110,9 +110,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"5ab72570e050bb8ee3de28cd9e6c9aee" + - W/"66ecbe6da22b8b5e5aec6ce14d8bb585" gitlab-lb: - - haproxy-main-52-lb-gprd + - haproxy-main-31-lb-gprd gitlab-sv: - api-gke-us-east1-c referrer-policy: @@ -126,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"a74fb650fa82c00bed74c95fc77944bb","version":"1"}' + - '{"correlation_id":"a2862416d47e77522cd2aa8e44c4742b","version":"1"}' x-request-id: - - a74fb650fa82c00bed74c95fc77944bb + - a2862416d47e77522cd2aa8e44c4742b x-runtime: - - '0.269872' + - '0.137013' status: code: 200 message: OK @@ -186,14 +186,14 @@ interactions: Content-Length: - '2135' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-V99Q2DzcvABRFMO609cgIRNpE'; style-src - 'self' 'nonce-V99Q2DzcvABRFMO609cgIRNpE'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-v6LX74gXOwn6o3goFR5VNc6rn'; style-src + 'self' 'nonce-v6LX74gXOwn6o3goFR5VNc6rn'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:34 GMT + - Mon, 04 Mar 2024 11:24:43 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -275,14 +275,14 @@ interactions: Content-Length: - '2784' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-plhbS8Owz8CBqKF6NFgv4gUKY'; style-src - 'self' 'nonce-plhbS8Owz8CBqKF6NFgv4gUKY'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-yb8e4N8L2jtxiFkT4VvwEq2Na'; style-src + 'self' 'nonce-yb8e4N8L2jtxiFkT4VvwEq2Na'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:35 GMT + - Mon, 04 Mar 2024 11:24:45 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -322,38 +322,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=SNtFN2cIGEdggXkMXyq7pHw205f7wDG5waRYtEbdzAE-1708594473474-0.0-604800000 + - _cfuvid=26Dwt5JQmZcUn1lCUTcU1ld.zND9_58WBPYcbs3TDUI-1709551482884-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497625,"iid":13166,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142912529,"iid":13548,"project_id":42823949,"title":"[SN#2] This is the title of the second test issue","description":"\nThis is the body of the second test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/2) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 04:01:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:34:36.677Z","updated_at":"2024-02-22T09:34:36.677Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13166","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13166","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13166/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13166/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13166","relative":"#13166","full":"gridhead/protop2g-test#13166"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:24:45.808Z","updated_at":"2024-03-04T11:24:45.808Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13548","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13548","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13548/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13548/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13548","relative":"#13548","full":"gridhead/protop2g-test#13548"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963bf0ae6794b6-CCU + - 85f1806f898294d0-CCU Connection: - keep-alive Content-Length: - - '2192' + - '2224' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:34:37 GMT + - Mon, 04 Mar 2024 11:24:46 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Xt5Sj1f9tKWEzMpYkSTUfYVspD1mO7hm1pjYA%2BJ06WxuDWyiSf4%2BrElJjbPfVvCAI5qZVm4BNZwlIIdVjMAtHCPgvt58Vt52VWLySYJPufD6gJtmI7fW5dpddBG%2FYABjaK62PgdNW%2Bg%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=8lWbxou6jL%2BuIctpCe4W2z02MnwJ5Tnr7B4WiVAy5OCLWK%2FfXXceWpSl%2Fc4OXilzkgKoSBtqIVXPhpNX6PX1J2RdDb9K3FYbU1tZZai7DToj9%2FuencLEQajtrkNJPDPBuuwMzkfrtJA%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -362,11 +363,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"55f6d14a531987d9163d20cbeacbfc19" + - W/"18ef3b78d586549fdcc5d6e045fe8cec" gitlab-lb: - - haproxy-main-30-lb-gprd + - haproxy-main-56-lb-gprd gitlab-sv: - - gke-cny-api + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -378,11 +379,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"f567f53529f8189164a1d30fb84eca69","version":"1"}' + - '{"correlation_id":"90a1672153fb346610080dc6072daf05","version":"1"}' x-request-id: - - f567f53529f8189164a1d30fb84eca69 + - 90a1672153fb346610080dc6072daf05 x-runtime: - - '0.592401' + - '0.822769' status: code: 201 message: Created diff --git a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with SHUT status without labels, without states, without privacy and without comments].yaml b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with SHUT status without labels, without states, without privacy and without comments].yaml index d45a7ec..5e913ff 100644 --- a/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with SHUT status without labels, without states, without privacy and without comments].yaml +++ b/test/cassettes/test_tkts/test_main_tkts[Transferring issue tickets with SHUT status without labels, without states, without privacy and without comments].yaml @@ -30,20 +30,18 @@ interactions: \ }\n}\n" headers: Connection: - - Upgrade, Keep-Alive + - Upgrade, close Content-Length: - '902' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-qyacHFhlerreaLBuxmR5SMdMN'; style-src - 'self' 'nonce-qyacHFhlerreaLBuxmR5SMdMN'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-LDJxQa3fnlu19ZYuzaikJKXr6'; style-src + 'self' 'nonce-LDJxQa3fnlu19ZYuzaikJKXr6'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:10 GMT - Keep-Alive: - - timeout=5, max=100 + - Mon, 04 Mar 2024 11:20:54 GMT Referrer-Policy: - same-origin Server: @@ -80,14 +78,14 @@ interactions: response: body: string: '{"id":42823949,"description":null,"name":"protop2g-test","name_with_namespace":"Akashdeep - Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-02-22T09:31:08.610Z","namespace":{"id":13984834,"name":"Akashdeep + Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-03-04T11:20:52.799Z","namespace":{"id":13984834,"name":"Akashdeep Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"container_registry_image_prefix":"registry.gitlab.com/gridhead/protop2g-test","_links":{"self":"https://gitlab.com/api/v4/projects/42823949","issues":"https://gitlab.com/api/v4/projects/42823949/issues","merge_requests":"https://gitlab.com/api/v4/projects/42823949/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/42823949/repository/branches","labels":"https://gitlab.com/api/v4/projects/42823949/labels","events":"https://gitlab.com/api/v4/projects/42823949/events","members":"https://gitlab.com/api/v4/projects/42823949/members","cluster_agents":"https://gitlab.com/api/v4/projects/42823949/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"public","owner":{"id":10115999,"username":"gridhead","name":"Akashdeep - Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":5422,"description_html":"","updated_at":"2024-02-22T09:31:08.610Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":null}}' + Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":2,"description_html":"","updated_at":"2024-03-04T11:20:52.799Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":50,"notification_level":3},"group_access":null}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 859636f28c2594c2-CCU + - 85f17ad36aa094bc-CCU Connection: - keep-alive Content-Encoding: @@ -95,11 +93,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:11 GMT + - Mon, 04 Mar 2024 11:20:56 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=nDlYU%2FSh%2F3gX%2B7XUjCexcn33FgwRhqw2MZ80TseR4OldBeK7BdxvILatBXa3f1HPGmPjAxAyZPzZgXKRiZYOttktxQSLT%2B6ttUQ9jDtDjT7Vxnni0ugC3JS2EJVgCbakTe6HkRK1sw0%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=q5xy27xKRfxCsFp3GwdttUHSWPqXAUtPjYKgrjv5k%2BlppsNipvqXGJnNDodcZ16bdddt5h9h%2FL9YC7GVyLD8Uts8kZtkY%2Fw88fAT9t3Tx%2BRImK0t6d6tNPxIhL%2Byu%2FPb1Ehjf8hPg%2BY%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -110,11 +108,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"c3385c91fd4a451d4eed0fd48fb80de9" + - W/"6c9bcfac0d7cf7c9bceb3ff9bde91246" gitlab-lb: - - haproxy-main-14-lb-gprd + - haproxy-main-51-lb-gprd gitlab-sv: - - api-gke-us-east1-d + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -126,11 +124,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"35ad21e71cb2bde9b56bae7b506a232e","version":"1"}' + - '{"correlation_id":"bbb6b00f770a2f093438b11973fec6ab","version":"1"}' x-request-id: - - 35ad21e71cb2bde9b56bae7b506a232e + - bbb6b00f770a2f093438b11973fec6ab x-runtime: - - '0.161947' + - '0.140056' status: code: 200 message: OK @@ -241,14 +239,14 @@ interactions: Content-Length: - '6409' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-4yx6UdqhfoxiTGtYMhVYpE8Z1'; style-src - 'self' 'nonce-4yx6UdqhfoxiTGtYMhVYpE8Z1'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-tLI3D0EvSpxi1SPQEDsQVe3lj'; style-src + 'self' 'nonce-tLI3D0EvSpxi1SPQEDsQVe3lj'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:12 GMT + - Mon, 04 Mar 2024 11:20:56 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -376,14 +374,14 @@ interactions: Content-Length: - '6409' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-BAJ1CjecUh7Yk7ctEJXl5RXiw'; style-src - 'self' 'nonce-BAJ1CjecUh7Yk7ctEJXl5RXiw'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-P3XdAk3ITYYzRIvUQ2r7DJNT3'; style-src + 'self' 'nonce-P3XdAk3ITYYzRIvUQ2r7DJNT3'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:13 GMT + - Mon, 04 Mar 2024 11:20:58 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -423,38 +421,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=6QkKhRC7He.gvi2wvuCs3V.dvlN8Xrfu4lZYF03c4CI-1708594271627-0.0-604800000 + - _cfuvid=TEoc.CeT7MneIPLG9FNeCKLZOApRebvhJa8ZtveqfwU-1709551256045-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497473,"iid":13125,"project_id":42823949,"title":"[SN#4] This + string: '{"id":142912382,"iid":13507,"project_id":42823949,"title":"[SN#4] This is the title of the fourth test issue","description":"\nThis is the body of the fourth test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/4) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Tue Nov 21 08:06:56 2023** UTC](https://savvytime.com/converter/utc/nov-21-2023/08-06)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:31:14.414Z","updated_at":"2024-02-22T09:31:14.414Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13125","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13125","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13125/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13125/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13125","relative":"#13125","full":"gridhead/protop2g-test#13125"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:21:00.163Z","updated_at":"2024-03-04T11:21:00.163Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13507","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13507","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13507/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13507/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13507","relative":"#13507","full":"gridhead/protop2g-test#13507"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 859637037da393c5-CCU + - 85f17aed6c1093c8-CCU Connection: - keep-alive Content-Length: - - '2192' + - '2224' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:15 GMT + - Mon, 04 Mar 2024 11:21:00 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=1XtNmvpU2Va7KthqB3OEeqobyJXMXlKbNGBHNjRikOcu3QtJ1Kxi5ek%2FSHIYEY3y10Jh2AB0xjl2FofLrc3UEbXbSgOxzMmKLDKHclYkVTvnfEZI%2BFWhOPn8kcng2il71BtZCrPY6Pg%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=j3pQiJvQU7HBZy1rH2TjihMiy%2FSbV1Hdqc1RDjGB%2Fd1Ro4BQJiZ4VSWpuIpTJQP37z6jCXC7MGAK292AAEIpW8Ef5N4WhjR9aTsQHA1GNiPfH%2BnmUdiQSZlayt8CzOvPLkUUPv66plI%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -463,9 +462,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"ef9e2c3f7d1b9aff154b09f58cbe7648" + - W/"363fe674a8ee671e0694c320103f9789" gitlab-lb: - - haproxy-main-52-lb-gprd + - haproxy-main-16-lb-gprd gitlab-sv: - api-gke-us-east1-c referrer-policy: @@ -479,11 +478,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"141245e8620ce12273ccef69252f3da9","version":"1"}' + - '{"correlation_id":"4a37a73bac4b0d97c8ac05fd1eaba45e","version":"1"}' x-request-id: - - 141245e8620ce12273ccef69252f3da9 + - 4a37a73bac4b0d97c8ac05fd1eaba45e x-runtime: - - '1.285756' + - '0.446973' status: code: 201 message: Created @@ -506,38 +505,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=6QkKhRC7He.gvi2wvuCs3V.dvlN8Xrfu4lZYF03c4CI-1708594271627-0.0-604800000 + - _cfuvid=TEoc.CeT7MneIPLG9FNeCKLZOApRebvhJa8ZtveqfwU-1709551256045-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497474,"iid":13126,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142912383,"iid":13508,"project_id":42823949,"title":"[SN#2] This is the title of the second test issue","description":"\nThis is the body of the second test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/2) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 04:01:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:31:15.927Z","updated_at":"2024-02-22T09:31:15.927Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13126","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13126","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13126/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13126/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13126","relative":"#13126","full":"gridhead/protop2g-test#13126"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:21:01.069Z","updated_at":"2024-03-04T11:21:01.069Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13508","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13508","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13508/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13508/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13508","relative":"#13508","full":"gridhead/protop2g-test#13508"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 8596370ddd6694bc-CCU + - 85f17af289cd93c8-CCU Connection: - keep-alive Content-Length: - - '2192' + - '2224' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:31:16 GMT + - Mon, 04 Mar 2024 11:21:01 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=JYJ6WRP9H8EsDfBjk85kpG2oRNxHP81X3MBYLhNKAYeZ%2BAUyGVNGrEonC6vh%2FIinJ5Y8KgrSIeHCJodUUWqbEEBVkY6i9M6adhURTFunYT10JlGYpV2I%2FCIsDNxwZQ8HN2KDMsKSjUs%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=RAkgY7xhUB667UIDmBNnG6Sk43CgJd4YAt6LXFZH6ENOdrescVHoVyBFFQyV3m8n1mWR1NhBpKBq2HwWnTa8pCBvXEtMAgBz1Lq3dbqGmbO5a0eB332kUXVhKN6GLzRuKAzKDANlr3Y%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -546,11 +546,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"243e044c77f1b8546436773287267dd7" + - W/"1ea37c9a303085ca8dc25ec607c0bcb6" gitlab-lb: - - haproxy-main-39-lb-gprd + - haproxy-main-01-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -562,11 +562,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"3047fd757d93b019f59eaa25461c6572","version":"1"}' + - '{"correlation_id":"1e710c0a6dbf076f74ab6085c0e7f50f","version":"1"}' x-request-id: - - 3047fd757d93b019f59eaa25461c6572 + - 1e710c0a6dbf076f74ab6085c0e7f50f x-runtime: - - '0.525613' + - '0.610012' status: code: 201 message: Created diff --git a/test/cassettes/test_tkts/test_main_tkts[Transferring particular issue tickets with OPEN status along with states and comments but without labels and without privacy].yaml b/test/cassettes/test_tkts/test_main_tkts[Transferring particular issue tickets with OPEN status along with states and comments but without labels and without privacy].yaml index 5bad877..a965095 100644 --- a/test/cassettes/test_tkts/test_main_tkts[Transferring particular issue tickets with OPEN status along with states and comments but without labels and without privacy].yaml +++ b/test/cassettes/test_tkts/test_main_tkts[Transferring particular issue tickets with OPEN status along with states and comments but without labels and without privacy].yaml @@ -34,14 +34,14 @@ interactions: Content-Length: - '902' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-t3Bgo1GsPTBNrGtGkvZAFN3fX'; style-src - 'self' 'nonce-t3Bgo1GsPTBNrGtGkvZAFN3fX'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-sbCxBOVWIvJCjiLEijRTUfFpj'; style-src + 'self' 'nonce-sbCxBOVWIvJCjiLEijRTUfFpj'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:02 GMT + - Mon, 04 Mar 2024 11:21:53 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -80,14 +80,14 @@ interactions: response: body: string: '{"id":42823949,"description":null,"name":"protop2g-test","name_with_namespace":"Akashdeep - Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-02-22T09:31:08.610Z","namespace":{"id":13984834,"name":"Akashdeep + Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-03-04T11:20:52.799Z","namespace":{"id":13984834,"name":"Akashdeep Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"container_registry_image_prefix":"registry.gitlab.com/gridhead/protop2g-test","_links":{"self":"https://gitlab.com/api/v4/projects/42823949","issues":"https://gitlab.com/api/v4/projects/42823949/issues","merge_requests":"https://gitlab.com/api/v4/projects/42823949/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/42823949/repository/branches","labels":"https://gitlab.com/api/v4/projects/42823949/labels","events":"https://gitlab.com/api/v4/projects/42823949/events","members":"https://gitlab.com/api/v4/projects/42823949/members","cluster_agents":"https://gitlab.com/api/v4/projects/42823949/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"public","owner":{"id":10115999,"username":"gridhead","name":"Akashdeep - Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":5432,"description_html":"","updated_at":"2024-02-22T09:31:08.610Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":null}}' + Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":12,"description_html":"","updated_at":"2024-03-04T11:20:52.799Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":50,"notification_level":3},"group_access":null}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 859638331eed94bc-CCU + - 85f17c3cf8ea93c1-CCU Connection: - keep-alive Content-Encoding: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:03 GMT + - Mon, 04 Mar 2024 11:21:53 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=bu8LZhDbspApjLhtQ9wr5SyCwrLY%2BkPB1FUzn5MiOl%2Fe444EYbh6byQEvq5LO6XQ8UGjNc5FkdWI4IP91ZtPaaXKEnSf%2BYtf7KLtDhop9BMvGOr%2BYO4gLXqBJZyk1JJKCxh7Aj2CzAY%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=GkOcDCG1TOvEG1NwlHAeIN2Jjn1eqKTi2%2FM6oiDFEw%2BNewrsYifUgRXEqBTycDwzc%2BQhYs3OnXseF1Sp69nZxziLOTyqiRq7wcUqPWH8S58Q03rFKyUp%2BszdWx6pOPcgm3B7JLfuMcA%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -110,11 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"1bd38e8b719946efa61be57d021ea4a9" + - W/"46597e5cb822d477b4479218f3ff7841" gitlab-lb: - - haproxy-main-39-lb-gprd + - haproxy-main-40-lb-gprd gitlab-sv: - - gke-cny-api + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -126,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"4a4be2a5176ea532f540fcea920243d8","version":"1"}' + - '{"correlation_id":"353042283b9a4044665ba4de419a07b2","version":"1"}' x-request-id: - - 4a4be2a5176ea532f540fcea920243d8 + - 353042283b9a4044665ba4de419a07b2 x-runtime: - - '0.353751' + - '0.198415' status: code: 200 message: OK @@ -186,14 +186,14 @@ interactions: Content-Length: - '2135' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-eqKpbJm6LyU6t1RCFWxpbnC5l'; style-src - 'self' 'nonce-eqKpbJm6LyU6t1RCFWxpbnC5l'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-8BbkjBeWf6cGEDGvPVKyZxstW'; style-src + 'self' 'nonce-8BbkjBeWf6cGEDGvPVKyZxstW'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:03 GMT + - Mon, 04 Mar 2024 11:21:58 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -233,38 +233,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=QIMAcqWphlvcF0PkCva6tY7GGa34hGPWvVVEvsL5yxE-1708594323086-0.0-604800000 + - _cfuvid=eUGrJZe88AdsOBDeYwlvbCHMpDXBPI5OamlkkyPoxqs-1709551313949-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497508,"iid":13139,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142912416,"iid":13521,"project_id":42823949,"title":"[SN#1] This is the title of the first test issue","description":"\nThis is the body of the first test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/1) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 03:57:42 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/03-57)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:32:05.152Z","updated_at":"2024-02-22T09:32:05.152Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13139","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13139","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13139/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13139/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13139","relative":"#13139","full":"gridhead/protop2g-test#13139"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:21:59.700Z","updated_at":"2024-03-04T11:21:59.700Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13521","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13521","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13521/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13521/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13521","relative":"#13521","full":"gridhead/protop2g-test#13521"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 8596383f8f1e93c5-CCU + - 85f17c613a4394b2-CCU Connection: - keep-alive Content-Length: - - '2190' + - '2222' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:05 GMT + - Mon, 04 Mar 2024 11:22:00 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=M9pAvJoxbuoaATjltRpT44M5M2NStoMsPNzxH0UCNiaGvOqOsuvml8mRXgeoeBhg674NbI831rDEZupbmlhT87oZVcFPiXXELgu%2FEjRy0dv23PR0hreDD5AdXyOr0EODrVaEraVBAc8%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=%2BoFiyp2oZSdD64VjlDtwKLLUFyH6ShrpU0DE%2FOMiWSgoMOoQpgnwdf5A1H6bjilkFauYAqIM28GGNIdfN7%2FIfiZ4gAbpEJyvwSzOHduVK7331ILDUweCnXzPd2hj%2B46dzj1%2B%2BimXSvw%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -273,11 +274,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"ca6be91d7c9173a9588de4526d551ea4" + - W/"e17c5c508e04d2a2b00c1031f99ae1ae" gitlab-lb: - - haproxy-main-53-lb-gprd + - haproxy-main-01-lb-gprd gitlab-sv: - - api-gke-us-east1-d + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -289,11 +290,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"ba2ef1f713b9c50934c50618ae3f970c","version":"1"}' + - '{"correlation_id":"2daaa7d01a32451fa68271d42a40cec8","version":"1"}' x-request-id: - - ba2ef1f713b9c50934c50618ae3f970c + - 2daaa7d01a32451fa68271d42a40cec8 x-runtime: - - '0.813273' + - '0.545204' status: code: 201 message: Created @@ -309,26 +310,27 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=QIMAcqWphlvcF0PkCva6tY7GGa34hGPWvVVEvsL5yxE-1708594323086-0.0-604800000 + - _cfuvid=eUGrJZe88AdsOBDeYwlvbCHMpDXBPI5OamlkkyPoxqs-1709551313949-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13139 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13521 response: body: - string: '{"id":142497508,"iid":13139,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142912416,"iid":13521,"project_id":42823949,"title":"[SN#1] This is the title of the first test issue","description":"\nThis is the body of the first test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/1) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 03:57:42 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/03-57)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:32:05.152Z","updated_at":"2024-02-22T09:32:05.152Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13139","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13139","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13139/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13139/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13139","relative":"#13139","full":"gridhead/protop2g-test#13139"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:21:59.700Z","updated_at":"2024-03-04T11:21:59.700Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13521","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13521","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13521/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13521/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13521","relative":"#13521","full":"gridhead/protop2g-test#13521"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 859638473cbb93cb-CCU + - 85f17c67395a93bb-CCU Connection: - keep-alive Content-Encoding: @@ -336,11 +338,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:06 GMT + - Mon, 04 Mar 2024 11:22:00 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=pVI%2FNcT8TnBWRkqRh9t1tdc30pRbeOD027qM%2FVKikvx3anCczKNcUuIE7qzalmVmOpqRq6%2FS0Ff6dIaNnJUoZgqux6Y%2BXC9VLl3%2F6Y7%2B4A2OrRwLajV4ig6MrCCi%2BAwzlkI9YoMyPnU%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=2g4AcavlT%2Bvo2HVhPNzJ%2B3oqNoaOS34YvDFxUzsb5eKPRijoyN7zaQfsRa7kXeaKlzc3XVNuShK4CBFSRcJDivDb5JlC7lo5iV9j325Sd6rsC6A5c8SudMFeDh3jHhKVCUmKJiWZOA0%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -351,11 +353,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"ca6be91d7c9173a9588de4526d551ea4" + - W/"e17c5c508e04d2a2b00c1031f99ae1ae" gitlab-lb: - - haproxy-main-21-lb-gprd + - haproxy-main-20-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -367,11 +369,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"ed71fb7e6e2775b7f530bba2138a64a0","version":"1"}' + - '{"correlation_id":"b5a98cc6ced865d4e624d34aa46eafeb","version":"1"}' x-request-id: - - ed71fb7e6e2775b7f530bba2138a64a0 + - b5a98cc6ced865d4e624d34aa46eafeb x-runtime: - - '0.123947' + - '0.182898' status: code: 200 message: OK @@ -394,25 +396,25 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=QIMAcqWphlvcF0PkCva6tY7GGa34hGPWvVVEvsL5yxE-1708594323086-0.0-604800000 + - _cfuvid=eUGrJZe88AdsOBDeYwlvbCHMpDXBPI5OamlkkyPoxqs-1709551313949-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/13139/discussions + uri: https://gitlab.com/api/v4/projects/42823949/issues/13521/discussions response: body: - string: '{"id":"ff4797bf0c7748b4c708a0dc89b801f0cc9ccbcd","individual_note":false,"notes":[{"id":1784522894,"type":"DiscussionNote","body":"\n**Metadata + string: '{"id":"ee6acb9dd52d824e5ac0b7ae3009d458ad6cd26b","individual_note":false,"notes":[{"id":1799290127,"type":"DiscussionNote","body":"\n**Metadata Update from \u0026t0xic0der**:\n- Issue tagged with: aaaa, bbbb\n\n_This comment was originally created [here](https://pagure.io/protop2g-test-srce/issue/1#comment-878471) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) under\n[this](https://pagure.io/protop2g-test-srce/issue/1) issue ticket on a Pagure repository, [**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) on\n[**Fri Oct 13 04:01:39 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2024-02-22T09:32:07.444Z","updated_at":"2024-02-22T09:32:07.444Z","system":false,"noteable_id":142497508,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13139,"commands_changes":{}}]}' + comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"created_at":"2024-03-04T11:22:01.245Z","updated_at":"2024-03-04T11:22:01.245Z","system":false,"noteable_id":142912416,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13521,"commands_changes":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 8596384f199294b6-CCU + - 85f17c6adcd094b0-CCU Connection: - keep-alive Content-Length: @@ -420,11 +422,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:07 GMT + - Mon, 04 Mar 2024 11:22:01 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=uOGyoF%2FY%2FIdMDhrbPgpGwaDO2X8ofpbqBF8Xk1kkZlSezdcHISYOqsZlFFHL6NWEK11mxflRSlTJDE80Fd8asdjs4i8OM6nBqD%2BoR%2FUR3cvxgGt9dJTm4WQg1Ga2StFbgu9D%2FPx3JDE%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=LeiDIiNYFgIiqTH3%2B3DTyOm0PMbfmVU3iniYyRHrzRlH0rMf5NTK%2BhFXajdd6WizROflYfInBbDX55Te3HS3SA1qCiUlLUe3%2BnRWqcsY1RQHgXNYnxIIF0S%2FFbDO2Ed17ZrR9ALsuaI%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -433,11 +435,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"3d10651cccb2992d72ec4cb3833ba61c" + - W/"dd6d970e1c1c11e3b63f5244c0c5b9e2" gitlab-lb: - - haproxy-main-47-lb-gprd + - haproxy-main-24-lb-gprd gitlab-sv: - - api-gke-us-east1-d + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -449,11 +451,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"854400135bdb1ce290b5395a8d514f19","version":"1"}' + - '{"correlation_id":"fd49d69a2b3aa85f7a51039fef1ef406","version":"1"}' x-request-id: - - 854400135bdb1ce290b5395a8d514f19 + - fd49d69a2b3aa85f7a51039fef1ef406 x-runtime: - - '0.472396' + - '0.511897' status: code: 201 message: Created @@ -469,26 +471,27 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=QIMAcqWphlvcF0PkCva6tY7GGa34hGPWvVVEvsL5yxE-1708594323086-0.0-604800000 + - _cfuvid=eUGrJZe88AdsOBDeYwlvbCHMpDXBPI5OamlkkyPoxqs-1709551313949-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13139 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13521 response: body: - string: '{"id":142497508,"iid":13139,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142912416,"iid":13521,"project_id":42823949,"title":"[SN#1] This is the title of the first test issue","description":"\nThis is the body of the first test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/1) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 03:57:42 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/03-57)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:32:05.152Z","updated_at":"2024-02-22T09:32:05.152Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":1,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13139","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13139","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13139/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13139/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13139","relative":"#13139","full":"gridhead/protop2g-test#13139"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:21:59.700Z","updated_at":"2024-03-04T11:21:59.700Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":1,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13521","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13521","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13521/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13521/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13521","relative":"#13521","full":"gridhead/protop2g-test#13521"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 859638549e1e94b0-CCU + - 85f17c709ac293bb-CCU Connection: - keep-alive Content-Encoding: @@ -496,11 +499,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:08 GMT + - Mon, 04 Mar 2024 11:22:02 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=cofq%2BFMKzlKZsToheM%2Bp5KCAmrfSIpCDuA3jFhcit2qvBeIki%2BrbBgd%2B8rel8bYLDFF4txkg6ff%2Fur3bMNAPEqHF9I%2FCFrAGdjO5MJKFEmjQ3JHJe8%2BCdG99ctflLGyXB0yw%2BB9PiUw%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=SyriGdN8kSjUxyuQ5vQEXgj29qOseZKMdf%2FPH8wBQhA6hR7bO2pAr4OuTCTbFqc7JprbgBqJ0XtZVgMr%2BLNeh9JEUXq6OfPbd%2BKS%2FO7vu37KdQstV%2FXrAqawPJ%2F0g6fLq9IyBZRwCh8%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -511,9 +514,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"1e80cc8f1dc5f6347afc005a6e6f6ed2" + - W/"39694993d5f66df4332c3978935b4d32" gitlab-lb: - - haproxy-main-01-lb-gprd + - haproxy-main-04-lb-gprd gitlab-sv: - api-gke-us-east1-c referrer-policy: @@ -527,11 +530,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"eab1f999edb7c6f749b7544a20f8bc39","version":"1"}' + - '{"correlation_id":"15607bd68d0e5b68151376958aee75bb","version":"1"}' x-request-id: - - eab1f999edb7c6f749b7544a20f8bc39 + - 15607bd68d0e5b68151376958aee75bb x-runtime: - - '0.210959' + - '0.167098' status: code: 200 message: OK @@ -554,25 +557,25 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=QIMAcqWphlvcF0PkCva6tY7GGa34hGPWvVVEvsL5yxE-1708594323086-0.0-604800000 + - _cfuvid=eUGrJZe88AdsOBDeYwlvbCHMpDXBPI5OamlkkyPoxqs-1709551313949-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/13139/discussions + uri: https://gitlab.com/api/v4/projects/42823949/issues/13521/discussions response: body: - string: '{"id":"3c8276f0e06fa1eca9e22f5cb3ffcc61f7bea225","individual_note":false,"notes":[{"id":1784522955,"type":"DiscussionNote","body":"\nThis + string: '{"id":"bd56eed90732c21b04ac0ec95a6b97c36153a5f3","individual_note":false,"notes":[{"id":1799290172,"type":"DiscussionNote","body":"\nThis is the first comment under the first test issue\n\n_This comment was originally created [here](https://pagure.io/protop2g-test-srce/issue/1#comment-878473) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) under\n[this](https://pagure.io/protop2g-test-srce/issue/1) issue ticket on a Pagure repository, [**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) on\n[**Fri Oct 13 04:04:40 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-04)._\n\n_This - comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2024-02-22T09:32:09.139Z","updated_at":"2024-02-22T09:32:09.139Z","system":false,"noteable_id":142497508,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13139,"commands_changes":{}}]}' + comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"created_at":"2024-03-04T11:22:02.795Z","updated_at":"2024-03-04T11:22:02.795Z","system":false,"noteable_id":142912416,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13521,"commands_changes":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963858199794be-CCU + - 85f17c747f7b94bc-CCU Connection: - keep-alive Content-Length: @@ -580,11 +583,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:10 GMT + - Mon, 04 Mar 2024 11:22:03 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Qc8gjBO8JQnRGt4XIf7Qt6nEcjl2MkP%2FpeKWFYels2kH7RvtTuwKLuU3S%2BOer%2FJ0fjIchbiBCa2vxcK%2B8PrMt%2BloZL1cdvR9cf6Y%2F6gY3hISg%2BWV7sZB35YvhpO5hEdDyHZa9HXVrsI%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=rLi4gPSDdxq5hHFzdVrXz6pHJ3%2BTKXdRcNCZXUQfvEzG4oiJve%2BQ6urU0zXzoz6s%2B8NeHzzUaRpTcOQ9qjnbfsYUflZEhL68ciXnK0vMD7HA4M6asFzqpQzN6c3Q7ehE4AWJl5rL3qw%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -593,11 +596,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"615e64119029c4e0e983d346345b65f4" + - W/"32cc21eddf228ad94bfe780916552b5e" gitlab-lb: - - haproxy-main-07-lb-gprd + - haproxy-main-41-lb-gprd gitlab-sv: - - api-gke-us-east1-c + - gke-cny-api referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -609,11 +612,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"5c0f315ddc1a10512675aa8887e1ed13","version":"1"}' + - '{"correlation_id":"cc63fdc03f72d0add578cc8766bd760b","version":"1"}' x-request-id: - - 5c0f315ddc1a10512675aa8887e1ed13 + - cc63fdc03f72d0add578cc8766bd760b x-runtime: - - '2.068261' + - '0.466002' status: code: 201 message: Created @@ -629,26 +632,27 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=QIMAcqWphlvcF0PkCva6tY7GGa34hGPWvVVEvsL5yxE-1708594323086-0.0-604800000 + - _cfuvid=eUGrJZe88AdsOBDeYwlvbCHMpDXBPI5OamlkkyPoxqs-1709551313949-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13139 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13521 response: body: - string: '{"id":142497508,"iid":13139,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142912416,"iid":13521,"project_id":42823949,"title":"[SN#1] This is the title of the first test issue","description":"\nThis is the body of the first test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/1) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 03:57:42 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/03-57)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:32:05.152Z","updated_at":"2024-02-22T09:32:05.152Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":2,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13139","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13139","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13139/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13139/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13139","relative":"#13139","full":"gridhead/protop2g-test#13139"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:21:59.700Z","updated_at":"2024-03-04T11:21:59.700Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":2,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13521","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13521","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13521/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13521/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13521","relative":"#13521","full":"gridhead/protop2g-test#13521"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 85963867ca1a93cb-CCU + - 85f17c79bf0193c1-CCU Connection: - keep-alive Content-Encoding: @@ -656,11 +660,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:11 GMT + - Mon, 04 Mar 2024 11:22:03 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=q6UKNW0C2F%2F1RXzchrw7Ev9J3pzMQRvb0WXiyEKZsshefe%2BprfJe0ppBitXtiVOTrqwlEsAG3%2B9hm1N%2BfDfvQm2VAmHkKevmPTyTgTv9BIH%2BC8B7H0SsVXHMvImuhdWNpvfsT6nBtOo%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=aevsI6Qmbuxfj7uCrBTVANs59ZHnmFPndXiFkBoCdLGNNyQVHofIKEZFi5yZhpx6q4nj1cqmqAEu%2BRz7YBOCi0qNK5MlTbOVLOFcpmf5RIq1DddOktQCB7van92ndSWZ1sfqmXSFPCI%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -671,11 +675,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"3fd80d08de2768e64b37c084ef66ea02" + - W/"efa55c22e97f888e7f7d0e0aaeb98c0d" gitlab-lb: - - haproxy-main-04-lb-gprd + - haproxy-main-21-lb-gprd gitlab-sv: - - api-gke-us-east1-c + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -687,11 +691,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"0af1bbb75277b12f5cdac8b793771f76","version":"1"}' + - '{"correlation_id":"ca9b1be2304d30d405b900323be3bf65","version":"1"}' x-request-id: - - 0af1bbb75277b12f5cdac8b793771f76 + - ca9b1be2304d30d405b900323be3bf65 x-runtime: - - '0.170797' + - '0.328822' status: code: 200 message: OK @@ -714,25 +718,25 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=QIMAcqWphlvcF0PkCva6tY7GGa34hGPWvVVEvsL5yxE-1708594323086-0.0-604800000 + - _cfuvid=eUGrJZe88AdsOBDeYwlvbCHMpDXBPI5OamlkkyPoxqs-1709551313949-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/13139/discussions + uri: https://gitlab.com/api/v4/projects/42823949/issues/13521/discussions response: body: - string: '{"id":"439cc9abfa44d68b95a886b5d44c7219eab6c157","individual_note":false,"notes":[{"id":1784523037,"type":"DiscussionNote","body":"\nThis + string: '{"id":"0b5faa2a3bb165ce74ec26aa07acf3d6f043c049","individual_note":false,"notes":[{"id":1799290209,"type":"DiscussionNote","body":"\nThis is the second comment under the first test issue\n\n_This comment was originally created [here](https://pagure.io/protop2g-test-srce/issue/1#comment-878474) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) under\n[this](https://pagure.io/protop2g-test-srce/issue/1) issue ticket on a Pagure repository, [**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) on\n[**Fri Oct 13 04:05:24 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-05)._\n\n_This - comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2024-02-22T09:32:12.313Z","updated_at":"2024-02-22T09:32:12.313Z","system":false,"noteable_id":142497508,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13139,"commands_changes":{}}]}' + comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"created_at":"2024-03-04T11:22:04.530Z","updated_at":"2024-03-04T11:22:04.530Z","system":false,"noteable_id":142912416,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13521,"commands_changes":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 8596386b28f093bb-CCU + - 85f17c7f5ace94bc-CCU Connection: - keep-alive Content-Length: @@ -740,11 +744,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:12 GMT + - Mon, 04 Mar 2024 11:22:04 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=qS7t6XQWL%2Ft1JsZuBcEraKt8nXPztaz1UumUBFPo%2BWy1jKDqtl42rqdQzcJhVg9A3D9fViUiTckCVcU3Wdiv3DHRuEt2mJK770JOyyV7nn%2BPmHeGIHfpPbumhfIY0uO10gvzRcZkzZ0%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=TgBiXUp6BnYqEqvm6NYDAuN6eCxPuuaKtm1ebemm8ApIFGsd3t2AXUGjLym0udAhZBd55EHJ6CepNYKDMchxN2uRrRUAaK655CtvZomikQFBF2Tf8YJcZ%2Bgs8mHuRkM9lNYBtUun8Bs%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -753,11 +757,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"da89682b86e3791a57bc0947e0ffe441" + - W/"859b14de57394111c9b655a9a9e57084" gitlab-lb: - - haproxy-main-01-lb-gprd + - haproxy-main-32-lb-gprd gitlab-sv: - - api-gke-us-east1-c + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -769,11 +773,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"d2e8670f276afe85d6e792d075141387","version":"1"}' + - '{"correlation_id":"94ddb79a2a67f7f06b94eb6998c991c0","version":"1"}' x-request-id: - - d2e8670f276afe85d6e792d075141387 + - 94ddb79a2a67f7f06b94eb6998c991c0 x-runtime: - - '0.832991' + - '0.400286' status: code: 201 message: Created diff --git a/test/cassettes/test_tkts/test_main_tkts[Transferring particular issue tickets with OPEN status without labels, without states, without privacy and without comments when SHUT status is prescribed].yaml b/test/cassettes/test_tkts/test_main_tkts[Transferring particular issue tickets with OPEN status without labels, without states, without privacy and without comments when SHUT status is prescribed].yaml index fe1a29f..8fcf884 100644 --- a/test/cassettes/test_tkts/test_main_tkts[Transferring particular issue tickets with OPEN status without labels, without states, without privacy and without comments when SHUT status is prescribed].yaml +++ b/test/cassettes/test_tkts/test_main_tkts[Transferring particular issue tickets with OPEN status without labels, without states, without privacy and without comments when SHUT status is prescribed].yaml @@ -34,14 +34,14 @@ interactions: Content-Length: - '902' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-AufEq5W9XT0VBKdtMwedS03oW'; style-src - 'self' 'nonce-AufEq5W9XT0VBKdtMwedS03oW'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-XZctqJYRUNnKPrYgIwKioSVAL'; style-src + 'self' 'nonce-XZctqJYRUNnKPrYgIwKioSVAL'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:31 GMT + - Mon, 04 Mar 2024 11:22:21 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -80,14 +80,14 @@ interactions: response: body: string: '{"id":42823949,"description":null,"name":"protop2g-test","name_with_namespace":"Akashdeep - Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-02-22T09:31:08.610Z","namespace":{"id":13984834,"name":"Akashdeep + Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-03-04T11:20:52.799Z","namespace":{"id":13984834,"name":"Akashdeep Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"container_registry_image_prefix":"registry.gitlab.com/gridhead/protop2g-test","_links":{"self":"https://gitlab.com/api/v4/projects/42823949","issues":"https://gitlab.com/api/v4/projects/42823949/issues","merge_requests":"https://gitlab.com/api/v4/projects/42823949/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/42823949/repository/branches","labels":"https://gitlab.com/api/v4/projects/42823949/labels","events":"https://gitlab.com/api/v4/projects/42823949/events","members":"https://gitlab.com/api/v4/projects/42823949/members","cluster_agents":"https://gitlab.com/api/v4/projects/42823949/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"public","owner":{"id":10115999,"username":"gridhead","name":"Akashdeep - Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":5433,"description_html":"","updated_at":"2024-02-22T09:31:08.610Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":null}}' + Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":13,"description_html":"","updated_at":"2024-03-04T11:20:52.799Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":50,"notification_level":3},"group_access":null}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 859638e83db893c2-CCU + - 85f17cf14aa594d0-CCU Connection: - keep-alive Content-Encoding: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:31 GMT + - Mon, 04 Mar 2024 11:22:22 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=BLjrqw9yiNljbqNchDG0lz2p6yTwX9yKQ%2FhQy0H8ifKgqBXLkr23ATQSdLn8U3R1nvPIy3s8fOgOYPv%2F8b6ajrp%2FYEQr60hE%2FpRgbxXWwWbbPvRPzTMl6u3yHFzukEpnTNnZ9INBfMg%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=31c%2FVfaYP%2B2%2FTna8Jqz7uI49WtqctKSQ5PQGoJsiRNlfzUsq20Y9F6zNnVIcLqH9CdNBcDYn2wSaWxQhk5KQkh60HYbzhWmQXRKfniXrv%2FqddGo19jwtJGBaxcT5XVx8253Xt8mN9nQ%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -110,11 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"a937f65292ea5589e6eb054dc9a6e1f6" + - W/"bd281e03757a53ee34290cd306b360f0" gitlab-lb: - - haproxy-main-03-lb-gprd + - haproxy-main-47-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -126,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"f0788468c235ece35833ca1152bc36fb","version":"1"}' + - '{"correlation_id":"4d2a717c230daeb89c26a05fb9e78f31","version":"1"}' x-request-id: - - f0788468c235ece35833ca1152bc36fb + - 4d2a717c230daeb89c26a05fb9e78f31 x-runtime: - - '0.164462' + - '0.206579' status: code: 200 message: OK @@ -186,14 +186,14 @@ interactions: Content-Length: - '2135' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-aVJA5ZdZjeIl5Xc5dkUxQIORY'; style-src - 'self' 'nonce-aVJA5ZdZjeIl5Xc5dkUxQIORY'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-G8vFELmNl2LRjZZB5pW9WVQCH'; style-src + 'self' 'nonce-G8vFELmNl2LRjZZB5pW9WVQCH'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:32 GMT + - Mon, 04 Mar 2024 11:22:23 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: diff --git a/test/cassettes/test_tkts/test_main_tkts[Transferring particular issue tickets with SHUT status along with states and comments but without labels and without privacy].yaml b/test/cassettes/test_tkts/test_main_tkts[Transferring particular issue tickets with SHUT status along with states and comments but without labels and without privacy].yaml index 51eb81c..f966a92 100644 --- a/test/cassettes/test_tkts/test_main_tkts[Transferring particular issue tickets with SHUT status along with states and comments but without labels and without privacy].yaml +++ b/test/cassettes/test_tkts/test_main_tkts[Transferring particular issue tickets with SHUT status along with states and comments but without labels and without privacy].yaml @@ -34,14 +34,14 @@ interactions: Content-Length: - '902' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-jsa9ZeQlh630wTAdy5CP0Lv0o'; style-src - 'self' 'nonce-jsa9ZeQlh630wTAdy5CP0Lv0o'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-zLakBReXtie5OxYe34PJ9a0Wb'; style-src + 'self' 'nonce-zLakBReXtie5OxYe34PJ9a0Wb'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:13 GMT + - Mon, 04 Mar 2024 11:22:05 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -80,14 +80,14 @@ interactions: response: body: string: '{"id":42823949,"description":null,"name":"protop2g-test","name_with_namespace":"Akashdeep - Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-02-22T09:31:08.610Z","namespace":{"id":13984834,"name":"Akashdeep + Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-03-04T11:20:52.799Z","namespace":{"id":13984834,"name":"Akashdeep Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"container_registry_image_prefix":"registry.gitlab.com/gridhead/protop2g-test","_links":{"self":"https://gitlab.com/api/v4/projects/42823949","issues":"https://gitlab.com/api/v4/projects/42823949/issues","merge_requests":"https://gitlab.com/api/v4/projects/42823949/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/42823949/repository/branches","labels":"https://gitlab.com/api/v4/projects/42823949/labels","events":"https://gitlab.com/api/v4/projects/42823949/events","members":"https://gitlab.com/api/v4/projects/42823949/members","cluster_agents":"https://gitlab.com/api/v4/projects/42823949/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"public","owner":{"id":10115999,"username":"gridhead","name":"Akashdeep - Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":5433,"description_html":"","updated_at":"2024-02-22T09:31:08.610Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":null}}' + Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":13,"description_html":"","updated_at":"2024-03-04T11:20:52.799Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":50,"notification_level":3},"group_access":null}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 859638798e6294c2-CCU + - 85f17c8c287b94c4-CCU Connection: - keep-alive Content-Encoding: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:14 GMT + - Mon, 04 Mar 2024 11:22:06 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=BfsefwrHUQvAmYOs%2FbvoBOadG%2BhjrJFZkf0PS8X4XF4z%2B6iCFq5SdP7wJmt8VqF9HAP%2BlzfG%2Feqj%2FuvqzgQRiU%2BFeVDh7yj3lWnAyoMVwEOKeSCzFw92qA2%2BoowVuWeyaBF%2FdO1vOio%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=WKIuXRAq5cMIb%2BCIyoWYNt6CzIfUlV%2BcHK0D7R%2BZupILuJgUBvPAyZzyJ1Zgq2fNTj6tMgvOFVS7Yfcvw%2FTiym6RFouKXSVdBhSKCDlAXYS0SxU61iUIUrewU4I%2F7jKY38iG2coMKvs%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -110,11 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"a937f65292ea5589e6eb054dc9a6e1f6" + - W/"bd281e03757a53ee34290cd306b360f0" gitlab-lb: - - haproxy-main-52-lb-gprd + - haproxy-main-17-lb-gprd gitlab-sv: - - api-gke-us-east1-c + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -126,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"3b7a555f998e85a3e8c6eee717af88b9","version":"1"}' + - '{"correlation_id":"77c18b6f9fbe84b4952904193f9c190f","version":"1"}' x-request-id: - - 3b7a555f998e85a3e8c6eee717af88b9 + - 77c18b6f9fbe84b4952904193f9c190f x-runtime: - - '0.160023' + - '0.158902' status: code: 200 message: OK @@ -195,14 +195,14 @@ interactions: Content-Length: - '2784' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-QM9stQaYfUdUN4sm3N1trmALt'; style-src - 'self' 'nonce-QM9stQaYfUdUN4sm3N1trmALt'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-JYC6QigiWAVu9LLXT5am3Za2e'; style-src + 'self' 'nonce-JYC6QigiWAVu9LLXT5am3Za2e'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:14 GMT + - Mon, 04 Mar 2024 11:22:07 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -242,38 +242,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=qhdACFZtwIWRTwc5OrEz3EsHCaovTRfjJ37PoN94Fno-1708594334123-0.0-604800000 + - _cfuvid=sZkEJ1a2wPBN0D2WgPv4dXhypiTgEgqKfPYA5DOTMNQ-1709551326602-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497517,"iid":13140,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142912422,"iid":13522,"project_id":42823949,"title":"[SN#2] This is the title of the second test issue","description":"\nThis is the body of the second test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/2) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 04:01:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:32:18.384Z","updated_at":"2024-02-22T09:32:18.384Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13140","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13140","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13140/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13140/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13140","relative":"#13140","full":"gridhead/protop2g-test#13140"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:22:09.773Z","updated_at":"2024-03-04T11:22:09.773Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13522","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13522","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13522/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13522/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13522","relative":"#13522","full":"gridhead/protop2g-test#13522"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963884adf293c8-CCU + - 85f17ca02bd193c5-CCU Connection: - keep-alive Content-Length: - - '2192' + - '2224' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:22 GMT + - Mon, 04 Mar 2024 11:22:10 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=K%2FW1XHUTCDXRGW17PN6nXODzS39g1uzUd6N%2FNUgQ01P1PuPNo0oGNlYlS7IhV4yRRI0lcfF6ksVgMIxkfkh%2FchUtpMeigmbjR1E95Cz2sGj8NCvg0lDWfsp%2Fk09NntXbRhrqS79GIkU%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=z7hJ9xwdTyI4Ha%2FylorIc67QC9yOT4vyeVj8%2FUfF3T3YvVFoE%2B1VUBxxlIroZ0F5GipcD79MQiTgkRe%2FVW%2BknrKrdY%2BmR3cSQZ6ZHoFpd7JIVgll5jf17HxMZGDUZLXulTH%2FvS8Swlw%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -282,11 +283,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"b14d57af466b2cb85c1ee22dcf0de67f" + - W/"a311685df77906964c5ceaeb2c91d045" gitlab-lb: - - haproxy-main-57-lb-gprd + - haproxy-main-46-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - gke-cny-api referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -298,11 +299,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"b2c513be055f07a3d445ebf33e3438f2","version":"1"}' + - '{"correlation_id":"d567b48b2f068cf1baab7c6dbaaf95a5","version":"1"}' x-request-id: - - b2c513be055f07a3d445ebf33e3438f2 + - d567b48b2f068cf1baab7c6dbaaf95a5 x-runtime: - - '6.520942' + - '0.636121' status: code: 201 message: Created @@ -318,26 +319,27 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=qhdACFZtwIWRTwc5OrEz3EsHCaovTRfjJ37PoN94Fno-1708594334123-0.0-604800000 + - _cfuvid=sZkEJ1a2wPBN0D2WgPv4dXhypiTgEgqKfPYA5DOTMNQ-1709551326602-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13140 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13522 response: body: - string: '{"id":142497517,"iid":13140,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142912422,"iid":13522,"project_id":42823949,"title":"[SN#2] This is the title of the second test issue","description":"\nThis is the body of the second test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/2) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 04:01:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:32:18.384Z","updated_at":"2024-02-22T09:32:18.384Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13140","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13140","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13140/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13140/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13140","relative":"#13140","full":"gridhead/protop2g-test#13140"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:22:09.773Z","updated_at":"2024-03-04T11:22:09.773Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13522","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13522","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13522/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13522/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13522","relative":"#13522","full":"gridhead/protop2g-test#13522"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 859638b0184d93bb-CCU + - 85f17ca70b1393c5-CCU Connection: - keep-alive Content-Encoding: @@ -345,11 +347,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:22 GMT + - Mon, 04 Mar 2024 11:22:10 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=w8164unpN8H2IWQ1NP3WRb9fZHT%2Fo3UvAY9L0Kp564ASxiu8AeYiIc3K%2B6EsBwdfbieiPHMm81ovCytfHnAxJDF%2FijROpqUNUJSDeBIiNFcDpRfEdwuwxNVPBq4CAxQ%2FXKZgdXoFt74%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=2LSQPhVJJkRWW4JlMvD05ANFNMVOJ3pdUFXR%2FX3hYBt1GBzRWZWiRTbdfrK1hOXj4UAvnuE1yKd2MnObktBVyhLfLwilp3RTJNAXgipK6J%2FoMHT801fVLV46H0dzMG6SA3LIm6yPi90%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -360,9 +362,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"b14d57af466b2cb85c1ee22dcf0de67f" + - W/"a311685df77906964c5ceaeb2c91d045" gitlab-lb: - - haproxy-main-18-lb-gprd + - haproxy-main-60-lb-gprd gitlab-sv: - api-gke-us-east1-b referrer-policy: @@ -376,11 +378,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"42a85f5002227b24911c6c36c9c55599","version":"1"}' + - '{"correlation_id":"f4fc8af9e35f41f8b3f52dfa8d030d5a","version":"1"}' x-request-id: - - 42a85f5002227b24911c6c36c9c55599 + - f4fc8af9e35f41f8b3f52dfa8d030d5a x-runtime: - - '0.171386' + - '0.135914' status: code: 200 message: OK @@ -398,26 +400,28 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=qhdACFZtwIWRTwc5OrEz3EsHCaovTRfjJ37PoN94Fno-1708594334123-0.0-604800000 + - _cfuvid=sZkEJ1a2wPBN0D2WgPv4dXhypiTgEgqKfPYA5DOTMNQ-1709551326602-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: PUT - uri: https://gitlab.com/api/v4/projects/42823949/issues/13140 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13522 response: body: - string: '{"id":142497517,"iid":13140,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142912422,"iid":13522,"project_id":42823949,"title":"[SN#2] This is the title of the second test issue","description":"\nThis is the body of the second test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/2) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 04:01:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"closed","created_at":"2024-02-22T09:32:18.384Z","updated_at":"2024-02-22T09:32:23.246Z","closed_at":"2024-02-22T09:32:23.235Z","closed_by":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13140","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13140","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13140/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13140/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13140","relative":"#13140","full":"gridhead/protop2g-test#13140"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"closed","created_at":"2024-03-04T11:22:09.773Z","updated_at":"2024-03-04T11:22:11.359Z","closed_at":"2024-03-04T11:22:11.344Z","closed_by":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13522","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13522","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13522/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13522/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13522","relative":"#13522","full":"gridhead/protop2g-test#13522"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 859638b37d3c94b2-CCU + - 85f17cab4a7a94c4-CCU Connection: - keep-alive Content-Encoding: @@ -425,11 +429,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:23 GMT + - Mon, 04 Mar 2024 11:22:11 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=i9KqA2PdxLmkhLYORXiJ1PZJJCyq7WripP2vy%2Fz3pXEeDydr4lNlTN2Mx9JeuF8kS5wOs%2F4CgYUQKyFcySWiLjwVs%2B2z%2B0AyrLK6cBVPXxpCQq3cIlXwOptMehZYPlHkFmh3cST8QSs%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=j01rPUif70qLX9ncXRSSltgBRXdhtaEegy3vmtYG6cBfU8ExDP584K3pYexwMktVeZNYOU2qJtYZUq2f%2FNhnEM5Rn87GgZCiQlICZsb9uPj0kPexPeMawRZhQum8o3cHBicAoOtwT8w%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -440,11 +444,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"ecaeede227a4ec2cb20164ec65bd63aa" + - W/"21f6d1c7f79f100f2a718406baadcdeb" gitlab-lb: - - haproxy-main-58-lb-gprd + - haproxy-main-49-lb-gprd gitlab-sv: - - gke-cny-api + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -456,11 +460,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"cd3be74cba1c589efee6c56077733ae3","version":"1"}' + - '{"correlation_id":"7e3f5b978eceb42494898f527273c731","version":"1"}' x-request-id: - - cd3be74cba1c589efee6c56077733ae3 + - 7e3f5b978eceb42494898f527273c731 x-runtime: - - '0.326695' + - '0.374777' status: code: 200 message: OK @@ -476,26 +480,28 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=qhdACFZtwIWRTwc5OrEz3EsHCaovTRfjJ37PoN94Fno-1708594334123-0.0-604800000 + - _cfuvid=sZkEJ1a2wPBN0D2WgPv4dXhypiTgEgqKfPYA5DOTMNQ-1709551326602-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13140 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13522 response: body: - string: '{"id":142497517,"iid":13140,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142912422,"iid":13522,"project_id":42823949,"title":"[SN#2] This is the title of the second test issue","description":"\nThis is the body of the second test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/2) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 04:01:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"closed","created_at":"2024-02-22T09:32:18.384Z","updated_at":"2024-02-22T09:32:23.246Z","closed_at":"2024-02-22T09:32:23.235Z","closed_by":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13140","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13140","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13140/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13140/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13140","relative":"#13140","full":"gridhead/protop2g-test#13140"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"closed","created_at":"2024-03-04T11:22:09.773Z","updated_at":"2024-03-04T11:22:11.359Z","closed_at":"2024-03-04T11:22:11.344Z","closed_by":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13522","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13522","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13522/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13522/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13522","relative":"#13522","full":"gridhead/protop2g-test#13522"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 859638b8286694c4-CCU + - 85f17cb0580593c2-CCU Connection: - keep-alive Content-Encoding: @@ -503,11 +509,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:24 GMT + - Mon, 04 Mar 2024 11:22:12 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=zEFvnKUJ4JtqPogeITbNgWKQMI19DtK8jKADsZN9vB7GrMWJoPOsCSN8GSJVqDZG54kynvMccfTp1hzK%2B%2BeVdWMAu%2F5p7hVUl7H6VhiQhv8yPbTXZvcYqAGJvLOovaawWo2zU%2BqhnN8%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=nvHCW3Ncj71EdaGY7RJ0%2BHqvSmE98E00w3wZzpO1Jkbt7IsZvntbneM%2FETh2Sf77%2FukDe9RCNv3MulY8WdYohPvHuABoeSG5mV6sOaMsE9%2FZOI6IcIYSBug3xLflruTdHPJWsk21%2B0Q%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -518,11 +524,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"ecaeede227a4ec2cb20164ec65bd63aa" + - W/"21f6d1c7f79f100f2a718406baadcdeb" gitlab-lb: - - haproxy-main-07-lb-gprd + - haproxy-main-23-lb-gprd gitlab-sv: - - api-gke-us-east1-c + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -534,11 +540,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"4d2de48852aee11fcf3e3844a3fc56c1","version":"1"}' + - '{"correlation_id":"4527d422448a5fb688039447c160648d","version":"1"}' x-request-id: - - 4d2de48852aee11fcf3e3844a3fc56c1 + - 4527d422448a5fb688039447c160648d x-runtime: - - '0.172785' + - '0.150722' status: code: 200 message: OK @@ -561,25 +567,25 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=qhdACFZtwIWRTwc5OrEz3EsHCaovTRfjJ37PoN94Fno-1708594334123-0.0-604800000 + - _cfuvid=sZkEJ1a2wPBN0D2WgPv4dXhypiTgEgqKfPYA5DOTMNQ-1709551326602-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/13140/discussions + uri: https://gitlab.com/api/v4/projects/42823949/issues/13522/discussions response: body: - string: '{"id":"7e644b569db5453f0cc9fcda0823a7cf50f4cda5","individual_note":false,"notes":[{"id":1784523439,"type":"DiscussionNote","body":"\n**Metadata + string: '{"id":"68861bf39ae5d6a5aa2bb2f1567677b27bbe1c9c","individual_note":false,"notes":[{"id":1799290440,"type":"DiscussionNote","body":"\n**Metadata Update from \u0026t0xic0der**:\n- Issue tagged with: cccc, dddd\n\n_This comment was originally created [here](https://pagure.io/protop2g-test-srce/issue/2#comment-878472) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) under\n[this](https://pagure.io/protop2g-test-srce/issue/2) issue ticket on a Pagure repository, [**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) on\n[**Fri Oct 13 04:03:30 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-03)._\n\n_This - comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2024-02-22T09:32:24.700Z","updated_at":"2024-02-22T09:32:24.700Z","system":false,"noteable_id":142497517,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13140,"commands_changes":{}}]}' + comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"created_at":"2024-03-04T11:22:13.041Z","updated_at":"2024-03-04T11:22:13.041Z","system":false,"noteable_id":142912422,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13522,"commands_changes":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 859638bb896093c1-CCU + - 85f17cb47ba194d0-CCU Connection: - keep-alive Content-Length: @@ -587,11 +593,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:24 GMT + - Mon, 04 Mar 2024 11:22:13 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=ga8Gsr6KByVJMzTM75qNNr4P%2Fr7AOwjMTPDB%2Ba7DODKwT3zjNGt2lu6o5dJIhl59x68C0axrOqEltMAYvlxB6r3aqSEC37zB75BeIt2X5RuZLw8oljU8pbmpz58gOEpgDfkO6R%2BQUCQ%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=YQC35wSpc%2BtsgniqnhOu1vhBzczE9sD2H0%2BbuUCZXAdg3B3Tamc%2FW3EAG0a7tFahDHAZRD%2BUxAe9Z5VC2lFYzcFd%2FzhYHvOCgQqG7eBX25HgH3B65y8SjDoKzcm7JmjHE3fKpNmWpV0%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -600,11 +606,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"4f68ec7cb170fcb103905898c85755b6" + - W/"266ad3e67f280f83d3d99cf503703b70" gitlab-lb: - - haproxy-main-47-lb-gprd + - haproxy-main-52-lb-gprd gitlab-sv: - - api-gke-us-east1-d + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -616,11 +622,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"ce894a6ed088b4ef41474e929c9dc63a","version":"1"}' + - '{"correlation_id":"981f54a38c3a078a04ba7d081329761d","version":"1"}' x-request-id: - - ce894a6ed088b4ef41474e929c9dc63a + - 981f54a38c3a078a04ba7d081329761d x-runtime: - - '0.396261' + - '0.781953' status: code: 201 message: Created @@ -636,26 +642,28 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=qhdACFZtwIWRTwc5OrEz3EsHCaovTRfjJ37PoN94Fno-1708594334123-0.0-604800000 + - _cfuvid=sZkEJ1a2wPBN0D2WgPv4dXhypiTgEgqKfPYA5DOTMNQ-1709551326602-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13140 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13522 response: body: - string: '{"id":142497517,"iid":13140,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142912422,"iid":13522,"project_id":42823949,"title":"[SN#2] This is the title of the second test issue","description":"\nThis is the body of the second test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/2) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 04:01:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"closed","created_at":"2024-02-22T09:32:18.384Z","updated_at":"2024-02-22T09:32:23.246Z","closed_at":"2024-02-22T09:32:23.235Z","closed_by":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":1,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13140","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13140","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13140/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13140/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13140","relative":"#13140","full":"gridhead/protop2g-test#13140"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"closed","created_at":"2024-03-04T11:22:09.773Z","updated_at":"2024-03-04T11:22:11.359Z","closed_at":"2024-03-04T11:22:11.344Z","closed_by":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":1,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13522","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13522","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13522/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13522/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13522","relative":"#13522","full":"gridhead/protop2g-test#13522"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 859638c04c6894c2-CCU + - 85f17cbc2e3b94ce-CCU Connection: - keep-alive Content-Encoding: @@ -663,11 +671,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:25 GMT + - Mon, 04 Mar 2024 11:22:14 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=E2xJc53axA%2F7YUTEI%2Bey4Jp6VoKVmO8P34jowQJQ8vP1iUVQUMrntkr2hSGfIfn%2FnUYR2aWd3GosXAVj1PCpefXOL21cRDm5jjKdm%2FjU6Dgo3vzwak0kMp7rhhpm62WPTKX3mTjDvag%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=u2j%2FVw5yo56txpbea6ghTU4OUQWe0eRoXAXnwyHB805%2FNDIuBCjxddxOeu6e97Mv%2B8Gwl4zBACouaohcjQi2Jf9Yo41a%2BNfk%2FycCNRQyqOQldRkNJoFzY40YaoyztVKZDk5rfkf078g%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -678,11 +686,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"2ecf7f136248bce1502f33439a62f826" + - W/"fc5cf68eb176a64cca3c9c04302d5a77" gitlab-lb: - - haproxy-main-51-lb-gprd + - haproxy-main-47-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -694,11 +702,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"1a4e929f0ca19258c93ce36022befead","version":"1"}' + - '{"correlation_id":"c7feb37fea6defb8922d2a751b958f97","version":"1"}' x-request-id: - - 1a4e929f0ca19258c93ce36022befead + - c7feb37fea6defb8922d2a751b958f97 x-runtime: - - '0.152326' + - '0.202926' status: code: 200 message: OK @@ -721,25 +729,25 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=qhdACFZtwIWRTwc5OrEz3EsHCaovTRfjJ37PoN94Fno-1708594334123-0.0-604800000 + - _cfuvid=sZkEJ1a2wPBN0D2WgPv4dXhypiTgEgqKfPYA5DOTMNQ-1709551326602-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/13140/discussions + uri: https://gitlab.com/api/v4/projects/42823949/issues/13522/discussions response: body: - string: '{"id":"7405457d015f6ee4afaeda237551292f2626bf2c","individual_note":false,"notes":[{"id":1784523500,"type":"DiscussionNote","body":"\nThe + string: '{"id":"2a63247b7643b38607596017ebd848f7bd8d70ea","individual_note":false,"notes":[{"id":1799290503,"type":"DiscussionNote","body":"\nThe is the first comment under the second test issue\n\n_This comment was originally created [here](https://pagure.io/protop2g-test-srce/issue/2#comment-878475) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) under\n[this](https://pagure.io/protop2g-test-srce/issue/2) issue ticket on a Pagure repository, [**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) on\n[**Fri Oct 13 04:06:04 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-06)._\n\n_This - comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2024-02-22T09:32:26.563Z","updated_at":"2024-02-22T09:32:26.563Z","system":false,"noteable_id":142497517,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13140,"commands_changes":{}}]}' + comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"created_at":"2024-03-04T11:22:15.646Z","updated_at":"2024-03-04T11:22:15.646Z","system":false,"noteable_id":142912422,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13522,"commands_changes":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 859638c39a7294c4-CCU + - 85f17cc0caa594b9-CCU Connection: - keep-alive Content-Length: @@ -747,11 +755,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:27 GMT + - Mon, 04 Mar 2024 11:22:15 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=YJ8edA2sccBX16kEu5TnELqI1%2B5iHqJ531zRfkBLcAUQlFz4aye3r%2FKkFg8mk4JijbLfTm7hmlOnkPDwe%2B6LYZbrmv73jL226dOfTAFwca9e%2F%2F5%2F2etYOU%2F8m27UTQUY2%2BF%2FGc%2FQZqI%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=KHArIoo7U1yq9NzcSlsJdVdbeN8yMjybjdY0xXgNnFwytEcG0kiQDUkOIysdJ2gG%2FCxYffxEBelnWI1fJ8WVxPZbm2%2FtBFnV7barx65gzV4wuCcuRUKALRGKWqU5YT0kHxQ%2BwUs0l1Q%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -760,11 +768,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"5a4847dd56160de050da3370fb0c7dbf" + - W/"d3fac9b7afaa1d11fd135cdb8ba55374" gitlab-lb: - - haproxy-main-48-lb-gprd + - haproxy-main-46-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -776,11 +784,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"83b8d6ba37ef228b8c02d5224be97377","version":"1"}' + - '{"correlation_id":"345660554ea2ddfee59964fcca6f2420","version":"1"}' x-request-id: - - 83b8d6ba37ef228b8c02d5224be97377 + - 345660554ea2ddfee59964fcca6f2420 x-runtime: - - '0.830792' + - '0.510529' status: code: 201 message: Created @@ -796,26 +804,28 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=qhdACFZtwIWRTwc5OrEz3EsHCaovTRfjJ37PoN94Fno-1708594334123-0.0-604800000 + - _cfuvid=sZkEJ1a2wPBN0D2WgPv4dXhypiTgEgqKfPYA5DOTMNQ-1709551326602-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13140 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13522 response: body: - string: '{"id":142497517,"iid":13140,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142912422,"iid":13522,"project_id":42823949,"title":"[SN#2] This is the title of the second test issue","description":"\nThis is the body of the second test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/2) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 04:01:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"closed","created_at":"2024-02-22T09:32:18.384Z","updated_at":"2024-02-22T09:32:23.246Z","closed_at":"2024-02-22T09:32:23.235Z","closed_by":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":2,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13140","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13140","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13140/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13140/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13140","relative":"#13140","full":"gridhead/protop2g-test#13140"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"closed","created_at":"2024-03-04T11:22:09.773Z","updated_at":"2024-03-04T11:22:11.359Z","closed_at":"2024-03-04T11:22:11.344Z","closed_by":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":2,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13522","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13522","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13522/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13522/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13522","relative":"#13522","full":"gridhead/protop2g-test#13522"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 859638ce681d94c2-CCU + - 85f17ccadf7a94b0-CCU Connection: - keep-alive Content-Encoding: @@ -823,11 +833,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:27 GMT + - Mon, 04 Mar 2024 11:22:16 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=%2F%2F2aRpVtlEo1oyZ08ZRykKqzqSePHtjxntxM1cc%2Bw5HvGT72rZ65lnj%2B5EcWEOjaytc%2FT6xOGygvNztlGzCeFaSrZ6tWuD2dq%2Fwdvy4imfB0dzNMv9%2F%2F2s5MfP9RfQvT1mgsw9g0S88%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=3SC%2BZmO1hAwhOU%2BekHRO2ySK7Sl%2F8UcZluE3WZ9zEnkio4DvFtT9S1ZC09GgvWKZv%2BMHXPFinZ8D4mwlCL%2B7VfoZoNFa5rdb8JXvAD%2FTMCQFsJbsPeuf4OXlQOaL6RbuIcYNwlXPjJY%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -838,9 +848,9 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"a63622f49033e79b1ef076eb39becc5b" + - W/"79c66625802a41263caf09fc684dffe8" gitlab-lb: - - haproxy-main-55-lb-gprd + - haproxy-main-04-lb-gprd gitlab-sv: - api-gke-us-east1-c referrer-policy: @@ -854,11 +864,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"9b14a839851055ea8212bc7e9460f376","version":"1"}' + - '{"correlation_id":"94791c3edd1decf1dc8cc4c79622850a","version":"1"}' x-request-id: - - 9b14a839851055ea8212bc7e9460f376 + - 94791c3edd1decf1dc8cc4c79622850a x-runtime: - - '0.196488' + - '0.144042' status: code: 200 message: OK @@ -881,25 +891,25 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=qhdACFZtwIWRTwc5OrEz3EsHCaovTRfjJ37PoN94Fno-1708594334123-0.0-604800000 + - _cfuvid=sZkEJ1a2wPBN0D2WgPv4dXhypiTgEgqKfPYA5DOTMNQ-1709551326602-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/13140/discussions + uri: https://gitlab.com/api/v4/projects/42823949/issues/13522/discussions response: body: - string: '{"id":"7bd020d236e6e68db61c747bc64dc3c2d50d681d","individual_note":false,"notes":[{"id":1784523564,"type":"DiscussionNote","body":"\nThe + string: '{"id":"f3b798a2c837ed32baccad8c7d70ad69e5083acf","individual_note":false,"notes":[{"id":1799290537,"type":"DiscussionNote","body":"\nThe is the second comment under the second test issue\n\n_This comment was originally created [here](https://pagure.io/protop2g-test-srce/issue/2#comment-878476) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) under\n[this](https://pagure.io/protop2g-test-srce/issue/2) issue ticket on a Pagure repository, [**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) on\n[**Fri Oct 13 04:06:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-06)._\n\n_This - comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2024-02-22T09:32:28.412Z","updated_at":"2024-02-22T09:32:28.412Z","system":false,"noteable_id":142497517,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13140,"commands_changes":{}}]}' + comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"created_at":"2024-03-04T11:22:17.264Z","updated_at":"2024-03-04T11:22:17.264Z","system":false,"noteable_id":142912422,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13522,"commands_changes":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 859638d21bd794b9-CCU + - 85f17ccecc4794b0-CCU Connection: - keep-alive Content-Length: @@ -907,11 +917,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:28 GMT + - Mon, 04 Mar 2024 11:22:17 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=MJDGCO0qeSMu7QoRiU%2BQN3F99hg%2F%2FMXjUlJvC9uLBwdg7Bly3u9P%2BCMm7ifWufFcf0TwQbKovCthOAZ5Y1jOGi3W%2FwfO%2FqgKAyDq66eENCT%2FnMx4Xw7oFHDv%2FIm3ApKIFZIWGI8MKoA%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=wddjQ6okgMtnhC%2FEiaDVnyAkWJ7AGr0botck49VwxpfKlG9QtG%2BwfiHqJRYX1L%2FECkxAn2qAGFBEvTTz5r0PPCHENSnMaOW%2B%2FheBR2E3pumFYMLOv5Qev%2Fphsv2pQyZ0UPOTEIE2H60%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -920,11 +930,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"acedc40a6e623259ffd82951ef3f5fd5" + - W/"125d99dd67462471dbfbe518cc35c6f8" gitlab-lb: - - haproxy-main-53-lb-gprd + - haproxy-main-52-lb-gprd gitlab-sv: - - api-gke-us-east1-d + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -936,11 +946,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"61bdb0d3f67e20d52042488a16d9f825","version":"1"}' + - '{"correlation_id":"73a8660b856d790eaea64124e650905e","version":"1"}' x-request-id: - - 61bdb0d3f67e20d52042488a16d9f825 + - 73a8660b856d790eaea64124e650905e x-runtime: - - '0.570188' + - '0.764475' status: code: 201 message: Created @@ -956,26 +966,28 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=qhdACFZtwIWRTwc5OrEz3EsHCaovTRfjJ37PoN94Fno-1708594334123-0.0-604800000 + - _cfuvid=sZkEJ1a2wPBN0D2WgPv4dXhypiTgEgqKfPYA5DOTMNQ-1709551326602-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/13140 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13522 response: body: - string: '{"id":142497517,"iid":13140,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142912422,"iid":13522,"project_id":42823949,"title":"[SN#2] This is the title of the second test issue","description":"\nThis is the body of the second test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/2) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) on\n[**Fri Oct 13 04:01:16 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-01)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"closed","created_at":"2024-02-22T09:32:18.384Z","updated_at":"2024-02-22T09:32:23.246Z","closed_at":"2024-02-22T09:32:23.235Z","closed_by":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":3,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13140","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13140","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13140/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13140/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13140","relative":"#13140","full":"gridhead/protop2g-test#13140"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"closed","created_at":"2024-03-04T11:22:09.773Z","updated_at":"2024-03-04T11:22:11.359Z","closed_at":"2024-03-04T11:22:11.344Z","closed_by":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":3,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13522","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13522","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13522/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13522/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13522","relative":"#13522","full":"gridhead/protop2g-test#13522"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - MISS CF-RAY: - - 859638d7ecb794bf-CCU + - 85f17cd68f6594d0-CCU Connection: - keep-alive Content-Encoding: @@ -983,11 +995,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:29 GMT + - Mon, 04 Mar 2024 11:22:18 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=BNbvC6kcwnrqlmWO1oK6qlc79DVdnJxecBd%2BbF4TgRiau3Z5Aw6TvDWKFQEHG5VsAsfHkM4BpWjPzJgG9w%2B86pDSOD5JqSjN4%2FuXBWYs2Zz%2B5OhvSiF3Fts%2FsfL06viXC0%2Fh5mLPFZg%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=6IZwwMexcG1H38EfCx8CRjVMgulldYcHnUO3rkATvZZNRgQXYJ93xuN9MvD%2BytG4013qo9cU4iRoF7LUEhJlr1QHb4rcx1wIljpM4rtvNa5P9uTIVmf1XYSswFwivcY4B7x%2BZ8%2FLfYs%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -998,11 +1010,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"1c34652f8b206aa6ee63b9b64e9a175d" + - W/"d61e6e3b41e39ab59ef0914c6ddd70a6" gitlab-lb: - - haproxy-main-15-lb-gprd + - haproxy-main-44-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -1014,11 +1026,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"77389039aa5ca729ad47c66ac77dfbcd","version":"1"}' + - '{"correlation_id":"ec5e9675979d10fa5d6e0c00bb1bee28","version":"1"}' x-request-id: - - 77389039aa5ca729ad47c66ac77dfbcd + - ec5e9675979d10fa5d6e0c00bb1bee28 x-runtime: - - '0.151826' + - '0.189435' status: code: 200 message: OK @@ -1041,25 +1053,25 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=qhdACFZtwIWRTwc5OrEz3EsHCaovTRfjJ37PoN94Fno-1708594334123-0.0-604800000 + - _cfuvid=sZkEJ1a2wPBN0D2WgPv4dXhypiTgEgqKfPYA5DOTMNQ-1709551326602-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/13140/discussions + uri: https://gitlab.com/api/v4/projects/42823949/issues/13522/discussions response: body: - string: '{"id":"c805cf28e6c7f9cb1edd2de95f70d0f28622ef2a","individual_note":false,"notes":[{"id":1784523595,"type":"DiscussionNote","body":"\n**Metadata + string: '{"id":"aed4b9b6ef460571935509d28b97d88461aea26d","individual_note":false,"notes":[{"id":1799290582,"type":"DiscussionNote","body":"\n**Metadata Update from \u0026t0xic0der**:\n- Issue status updated to: Closed (was: Open)\n\n_This comment was originally created [here](https://pagure.io/protop2g-test-srce/issue/2#comment-878477) by [**Akashdeep Dhar**](https://pagure.io/user/t0xic0der) under\n[this](https://pagure.io/protop2g-test-srce/issue/2) issue ticket on a Pagure repository, [**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) on\n[**Fri Oct 13 04:07:12 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/04-07)._\n\n_This - comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2024-02-22T09:32:29.855Z","updated_at":"2024-02-22T09:32:29.855Z","system":false,"noteable_id":142497517,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13140,"commands_changes":{}}]}' + comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"created_at":"2024-03-04T11:22:19.543Z","updated_at":"2024-03-04T11:22:19.543Z","system":false,"noteable_id":142912422,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":13522,"commands_changes":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 859638db5f8593c1-CCU + - 85f17cdb8a9894bc-CCU Connection: - keep-alive Content-Length: @@ -1067,11 +1079,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:32:30 GMT + - Mon, 04 Mar 2024 11:22:20 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=xfL%2FBNyXOmr0GPOeGaIqCnj%2BTBQN9UbOhqjVjCJifAZkoCt7UZheYiWT0cOSSFWlMzbip1ImaOVXdpNMF4Tp3vTZh2RR%2Bwv%2F02I4D%2F9M1RmvMBABlJ%2FSd2SoEC1ZLDhMxzDWU6KGtFs%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Pr%2FJiEekv9yokH%2BSBsJv9PVcIfzkeogZLF5iMB%2BXRR%2F3Jr%2FXhOPxLwXeyavFY1rKu9C0e201cV2PoqF5PigWiOOOe6zEkwVfYNvOlTJMM1e3uO7ur66bE5Thba8NC%2F3V6jwlnQS7voo%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1080,11 +1092,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"febcf26172f62dc3d2aa9e75edec8f40" + - W/"1e4dbe14053250b0cf750b341ecfaa0e" gitlab-lb: - - haproxy-main-54-lb-gprd + - haproxy-main-13-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -1096,11 +1108,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"f123076718f87442bd137b1ff3d18cfe","version":"1"}' + - '{"correlation_id":"042742a14d6d39fb62f431e339b53c3e","version":"1"}' x-request-id: - - f123076718f87442bd137b1ff3d18cfe + - 042742a14d6d39fb62f431e339b53c3e x-runtime: - - '0.450148' + - '1.080338' status: code: 201 message: Created diff --git a/test/cassettes/test_unit_tkts/test_unit_getcount[Attempting to count issue tickets from a valid issue tracker of longer length].yaml b/test/cassettes/test_unit_tkts/test_unit_getcount[Attempting to count issue tickets from a valid issue tracker of longer length].yaml index 6729689..5446373 100644 --- a/test/cassettes/test_unit_tkts/test_unit_getcount[Attempting to count issue tickets from a valid issue tracker of longer length].yaml +++ b/test/cassettes/test_unit_tkts/test_unit_getcount[Attempting to count issue tickets from a valid issue tracker of longer length].yaml @@ -18,157 +18,7 @@ interactions: \ \"milestones\": [], \n \"no_stones\": null, \n \"order\": null, \n \"priority\": null, \n \"since\": null, \n \"status\": \"all\", \n \"tags\": []\n }, \n \"issues\": [\n {\n \"assignee\": null, - \n \"blocks\": [], \n \"close_status\": \"Invalid\", \n \"closed_at\": - \"1708581485\", \n \"closed_by\": {\n \"full_url\": \"https://pagure.io/user/chrismurphy\", - \n \"fullname\": \"Chris Murphy\", \n \"name\": \"chrismurphy\", - \n \"url_path\": \"user/chrismurphy\"\n }, \n \"comments\": - [\n {\n \"comment\": \"Seems to have resolved itself\", \n - \ \"date_created\": \"1708581488\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 896970, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/chrismurphy\", \n \"fullname\": - \"Chris Murphy\", \n \"name\": \"chrismurphy\", \n \"url_path\": - \"user/chrismurphy\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @chrismurphy**:\\n- Issue close_status updated to: - Invalid\\n- Issue status updated to: Closed (was: Open)\", \n \"date_created\": - \"1708581488\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 896971, \n \"notification\": true, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/chrismurphy\", \n \"fullname\": \"Chris - Murphy\", \n \"name\": \"chrismurphy\", \n \"url_path\": - \"user/chrismurphy\"\n }\n }\n ], \n \"content\": - \"**NOTE**\\r\\n\\r\\nIf your issue is for security or deals with sensitive - info please\\r\\nmark it as private using the checkbox below.\\r\\n\\r\\n# - Describe what you would like us to do:\\r\\n\\r\\nWhen updating a wiki entry - https://fedoraproject.org/wiki/User:Chrismurphy/Draft/dualboot_teststation - upon clicking Save Changes, I'm getting:\\r\\n\\r\\nGateway Timeout\\r\\nThe - gateway did not receive a timely response from the upstream server or application.\\r\\n\\r\\n# - When do you need this to be done by? (YYYY/MM/DD)\\r\\n\\r\\nnot urgent\\r\\n\", - \n \"custom_fields\": [], \n \"date_created\": \"1708578604\", \n - \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11784\", - \n \"id\": 11784, \n \"last_updated\": \"1708581488\", \n \"milestone\": - null, \n \"priority\": 1, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": - \"wiki gateway timeout when saving an update\", \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/chrismurphy\", \n \"fullname\": \"Chris Murphy\", - \n \"name\": \"chrismurphy\", \n \"url_path\": \"user/chrismurphy\"\n - \ }\n }, \n {\n \"assignee\": null, \n \"blocks\": [], - \n \"close_status\": \"Will Not/Can Not fix\", \n \"closed_at\": - \"1708593677\", \n \"closed_by\": {\n \"full_url\": \"https://pagure.io/user/zlopez\", - \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", \n \"name\": - \"zlopez\", \n \"url_path\": \"user/zlopez\"\n }, \n \"comments\": - [\n {\n \"comment\": \"The discourse instance in Fedora (https://discussion.fedoraproject.org) - is not maintained by Fedora Infrastructure team, so we don't have any way - to update it.\\r\\n\\r\\nTry to reach to @mattdm about this.\", \n \"date_created\": - \"1708593679\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 896990, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", - \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n - \ }\n }, \n {\n \"comment\": \"**Metadata Update - from @zlopez**:\\n- Issue close_status updated to: Will Not/Can Not fix\\n- - Issue status updated to: Closed (was: Open)\", \n \"date_created\": - \"1708593681\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 896991, \n \"notification\": true, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", - \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n - \ }\n }\n ], \n \"content\": \"**NOTE**\\r\\n\\r\\nIf - your issue is for security or deals with sensitive info please\\r\\nmark it - as private using the checkbox below.\\r\\n\\r\\n# Describe what you would - like us to do:\\r\\nUpdate and package discourse to have the latest and greatest\\r\\nhttps://release-monitoring.org/project/371547/\\r\\n\\r\\n# - When do you need this to be done by? (YYYY/MM/DD)\\r\\n-N/A\\r\\n\", \n \"custom_fields\": - [], \n \"date_created\": \"1708559961\", \n \"depends\": [], \n - \ \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11783\", - \n \"id\": 11783, \n \"last_updated\": \"1708593681\", \n \"milestone\": - null, \n \"priority\": 1, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": - \"Package discourse and update to latest\", \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/romulasry\", \n \"fullname\": \"Reon Beon\", - \n \"name\": \"romulasry\", \n \"url_path\": \"user/romulasry\"\n - \ }\n }, \n {\n \"assignee\": null, \n \"blocks\": [], - \n \"close_status\": \"Fixed\", \n \"closed_at\": \"1708486370\", - \n \"closed_by\": {\n \"full_url\": \"https://pagure.io/user/jflory7\", - \n \"fullname\": \"Justin W. Flory\", \n \"name\": \"jflory7\", - \n \"url_path\": \"user/jflory7\"\n }, \n \"comments\": [\n - \ {\n \"comment\": \"Just FYI, I saw this too, but it didn't - really seem worth it for the 4 users there. ;) \\r\\n\\r\\nBut we totally - can... \\r\\n\", \n \"date_created\": \"1708482713\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 896687, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": - \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": - \"user/kevin\"\n }\n }, \n {\n \"comment\": - \"Is it only a config file change? If this is all that is required, I wouldn't - mind piloting it from the handful of channels I use with this account. I also - have the motive of wanting two different Element apps on my phone that are - each associated with different Matrix accounts with different privileges.\", - \n \"date_created\": \"1708483083\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 896688, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/jflory7\", \n \"fullname\": - \"Justin W. Flory\", \n \"name\": \"jflory7\", \n \"url_path\": - \"user/jflory7\"\n }\n }, \n {\n \"comment\": - \"the well-known file is up to date.\", \n \"date_created\": \"1708483509\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 896692, \n \"notification\": false, \n \"parent\": null, - \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/darknao\", \n \"fullname\": \"Francois - Andrieu\", \n \"name\": \"darknao\", \n \"url_path\": - \"user/darknao\"\n }\n }, \n {\n \"comment\": - \"@darknao Thanks, login worked for me! Closing this issue as `Fixed`. :clapper: - \", \n \"date_created\": \"1708486372\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 896699, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/jflory7\", \n \"fullname\": - \"Justin W. Flory\", \n \"name\": \"jflory7\", \n \"url_path\": - \"user/jflory7\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @jflory7**:\\n- Issue close_status updated to: Fixed\\n- - Issue status updated to: Closed (was: Open)\", \n \"date_created\": - \"1708486373\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 896700, \n \"notification\": true, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/jflory7\", \n \"fullname\": \"Justin W. - Flory\", \n \"name\": \"jflory7\", \n \"url_path\": - \"user/jflory7\"\n }\n }\n ], \n \"content\": \"# - Describe what you would like us to do:\\r\\n\\r\\nOn 2023-09-27, I received - this email from EMS, our Matrix homeserver host:\\r\\n\\r\\n> Hi Fedora Project,\\r\\n>\\r\\n> - We have just announced the first major \\u201cIgnition\\u201d release of our - next generation mobile client, Element X! This client has been rewritten from - the ground up with a focus on usability, performance and stability. In light - of this release we have recently configured your homeserver fedoraproject.org - to support Element X, however due to the custom domain name configuration - your homeserver has, some action is also required from you.\\r\\n>\\r\\n> - When setting up this homeserver you chose a custom homeserver name of fedoraproject.org - and configured some \\\"well-known\\\" JSON files hosted on your own servers. - These files are important to how Matrix works and to enable Element X support - on your homeserver the following changes are required. Please note, no action - is needed for other Matrix clients, these will continue to work as they have - done before.\\r\\n>\\r\\n> Please ensure the file [**`https://fedoraproject.org/.well-known/matrix/client`**](https://fedoraproject.org/.well-known/matrix/client), - which is hosted by you, has the following content:\\r\\n\\r\\n```json\\r\\n{\\r\\n - \ \\\"m.homeserver\\\": {\\r\\n \\\"base_url\\\": \\\"https://fedoraproject.ems.host\\\"\\r\\n - \ },\\r\\n \\\"m.identity_server\\\": {\\r\\n \\\"base_url\\\": \\\"https://vector.im\\\"\\r\\n - \ },\\r\\n \\\"org.matrix.msc3575.proxy\\\": {\\r\\n \\\"url\\\": \\\"https://fedoraproject.ems.host\\\"\\r\\n - \ }\\r\\n}\\r\\n```\\r\\n>\\r\\n> Please note, if you have customized your - client well-known file, it is important to add the `org.matrix.msc3575.proxy` - entry to the JSON file for Element X support. If you have any questions or - encounter problems when making these changes, please contact our Support team.\\r\\n>\\r\\n> - Once the above changes have been deployed on your side, you should be able - to login using Element X (available via Apple\\u2019s App Store and Google\\u2019s - Play Store)! To find more information about Element X please see our [blog](https://element.io/blog/element-x-ignition/).\\r\\n>\\r\\n> - Thanks,\\r\\n>\\r\\n> The Element Team\\r\\n\\r\\n# When do you need this - to be done by? (2024-03-06)\\r\\n\\r\\nBy Wednesday, March 6th would be good - so we can see if there is more work required to enable Element X on the `:fedoraproject.org` - homeserver.\", \n \"custom_fields\": [], \n \"date_created\": \"1708480425\", - \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11782\", - \n \"id\": 11782, \n \"last_updated\": \"1708486373\", \n \"milestone\": - null, \n \"priority\": 1, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": - \"Add \\\"org.matrix.msc3575.proxy\\\" to fedoraproject.org/.well-known/matrix/client\", - \n \"user\": {\n \"full_url\": \"https://pagure.io/user/jflory7\", - \n \"fullname\": \"Justin W. Flory\", \n \"name\": \"jflory7\", - \n \"url_path\": \"user/jflory7\"\n }\n }, \n {\n \"assignee\": - null, \n \"blocks\": [], \n \"boards\": [\n {\n \"board\": + \n \"blocks\": [], \n \"boards\": [\n {\n \"board\": {\n \"active\": true, \n \"full_url\": \"https://pagure.io/fedora-infrastructure/boards/ops\", \n \"name\": \"ops\", \n \"status\": [\n {\n \ \"bg_color\": \"#ffb300\", \n \"close\": false, @@ -191,136 +41,44 @@ interactions: \n \"name\": \"Blocked\"\n }\n ], \n \ \"tag\": {\n \"tag\": \"ops\", \n \"tag_color\": \"#3efa0e\", \n \"tag_description\": \"ops problem now...\"\n - \ }\n }, \n \"rank\": 844, \n \"status\": + \ }\n }, \n \"rank\": 855, \n \"status\": {\n \"bg_color\": \"#ffb300\", \n \"close\": false, \n \"close_status\": null, \n \"default\": true, \n \ \"name\": \"Backlog\"\n }\n }\n ], \n \"close_status\": null, \n \"closed_at\": null, \n \"closed_by\": null, \n \"comments\": - [\n {\n \"comment\": \"We will try and figure out where to - direct this. \\r\\n\\r\\nPerhaps @msuchy could say?\\r\\n\", \n \"date_created\": - \"1708455996\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 896636, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", - \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }\n }, \n {\n \"comment\": \"**Metadata Update - from @kevin**:\\n- Issue priority set to: Waiting on Assignee (was: Needs - Review)\\n- Issue tagged with: low-gain, low-trouble, ops\", \n \"date_created\": - \"1708455997\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 896637, \n \"notification\": true, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", - \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }\n }, \n {\n \"comment\": \"@msrb is now - responsible for ABRT. I can assist him with running the playbook though. But - this is likely issues with the code. Michal can you check it?\", \n \"date_created\": - \"1708463038\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 896658, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/msuchy\", \n \"fullname\": \"Miroslav - Such\\u00fd\", \n \"name\": \"msuchy\", \n \"url_path\": - \"user/msuchy\"\n }\n }, \n {\n \"comment\": - \"Hmm, thanks for bringing this up to my attention. I reverted to the previous - version, so everything should be good now :thumbsup: \", \n \"date_created\": - \"1708501677\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 896712, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/msrb\", \n \"fullname\": \"Michal Srb\", - \n \"name\": \"msrb\", \n \"url_path\": \"user/msrb\"\n - \ }\n }, \n {\n \"comment\": \"**Metadata Update - from @zlopez**:\\n- Issue priority set to: Waiting on Reporter (was: Waiting - on Assignee)\", \n \"date_created\": \"1708506862\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 896714, \n \"notification\": - true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": - \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": - \"user/zlopez\"\n }\n }, \n {\n \"comment\": - \"Maybe this is what was hiding behind that _500_ error but now I get:\\r\\n\\r\\n```\\r\\n--- - Running report_uReport ---\\r\\nServer responded with an error: 'Element 'stacktrace' - is invalid: List element is invalid: Element 'frames' is invalid: List element - is invalid: Element 'file_name' is missing'\\r\\n('report_uReport' exited - with 1)\\r\\n```\", \n \"date_created\": \"1708531577\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 896767, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/brianjmurrell\", \n - \ \"fullname\": \"Brian J. Murrell\", \n \"name\": \"brianjmurrell\", - \n \"url_path\": \"user/brianjmurrell\"\n }\n }, - \n {\n \"comment\": \"The core_backtrace retrieved from coredumpctl - likely has stack frames without filenames in it. Please open a bug for \\\"abrt\\\" - component and, if possible, attach the core_backtrace file from the problem - directory. Thanks ;)\", \n \"date_created\": \"1708539951\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 896785, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/msrb\", \n \"fullname\": - \"Michal Srb\", \n \"name\": \"msrb\", \n \"url_path\": - \"user/msrb\"\n }\n }\n ], \n \"content\": \"When - trying to report a crash in pidgin with ABRT I get an error from `report_uReport`:\\r\\n\\r\\n```\\r\\n--- - Running report_uReport ---\\r\\nThe server at 'https://retrace.fedoraproject.org/faf' - encountered an internal error (got error 500)\\r\\n('report_uReport' exited - with 1)\\r\\n```\", \n \"custom_fields\": [], \n \"date_created\": - \"1708446819\", \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11781\", - \n \"id\": 11781, \n \"last_updated\": \"1708539951\", \n \"milestone\": - null, \n \"priority\": 4, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Open\", \n \"tags\": [\n \"low-gain\", - \n \"low-trouble\", \n \"ops\"\n ], \n \"title\": - \"The server at 'https://retrace.fedoraproject.org/faf' encountered an internal - error (got error 500)\", \n \"user\": {\n \"full_url\": \"https://pagure.io/user/brianjmurrell\", - \n \"fullname\": \"Brian J. Murrell\", \n \"name\": \"brianjmurrell\", - \n \"url_path\": \"user/brianjmurrell\"\n }\n }, \n {\n - \ \"assignee\": {\n \"full_url\": \"https://pagure.io/user/kevin\", - \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n - \ \"url_path\": \"user/kevin\"\n }, \n \"blocks\": [], \n - \ \"close_status\": \"Fixed with Explanation\", \n \"closed_at\": - \"1708120877\", \n \"closed_by\": {\n \"full_url\": \"https://pagure.io/user/kevin\", - \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n - \ \"url_path\": \"user/kevin\"\n }, \n \"comments\": [\n {\n - \ \"comment\": \"**Metadata Update from @kevin**:\\n- Issue assigned - to kevin\", \n \"date_created\": \"1708120873\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 895936, \n \"notification\": - true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": - \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": - \"user/kevin\"\n }\n }, \n {\n \"comment\": - \"Thanks. I've add you now, so you should see the site... \\r\\n\\r\\nlet - us know if you run into any problems. \", \n \"date_created\": \"1708120879\", + [\n {\n \"comment\": \"**Metadata Update from @kevin**:\\n- + Issue priority set to: Waiting on Assignee (was: Needs Review)\\n- Issue tagged + with: low-gain, low-trouble, ops\", \n \"date_created\": \"1709233605\", \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 895937, \n \"notification\": false, \n \"parent\": null, + 898657, \n \"notification\": true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }\n }, \n {\n \"comment\": \"**Metadata Update - from @kevin**:\\n- Issue close_status updated to: Fixed with Explanation\\n- - Issue status updated to: Closed (was: Open)\", \n \"date_created\": - \"1708120880\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 895938, \n \"notification\": true, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", - \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }\n }\n ], \n \"content\": \"**NOTE**\\r\\n\\r\\nIf - your issue is for security or deals with sensitive info please\\r\\nmark it - as private using the checkbox below.\\r\\n\\r\\n# Describe what you would - like us to do:\\r\\n----\\r\\nI've taken over administration of the University - of Calgary's open source mirror (https://mirror.cpsc.ucalgary.ca/) and would - like to have our Fedora mirror added to the public list.\\r\\n\\r\\nI am unable - to add UofC as a site in mirrormanager - I asked in the infrastructure Matrix - channel and this appears to be because a site already exists in UofC's name, - registered by a user who is no longer at the University. I'd like to be added - to the site so I can manage the mirror's entry.\\r\\n\\r\\n# When do you need - this to be done by? (YYYY/MM/DD)\\r\\n----\\r\\nNo defined end date\", \n - \ \"custom_fields\": [], \n \"date_created\": \"1708116810\", \n - \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11779\", - \n \"id\": 11779, \n \"last_updated\": \"1708120880\", \n \"milestone\": - null, \n \"priority\": 1, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": - \"Site ownership/membership change - University of Calgary\", \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/joedavison\", \n \"fullname\": - \"Joe Davison\", \n \"name\": \"joedavison\", \n \"url_path\": - \"user/joedavison\"\n }\n }, \n {\n \"assignee\": {\n \"full_url\": - \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", - \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n }, - \n \"blocks\": [], \n \"boards\": [\n {\n \"board\": - {\n \"active\": true, \n \"full_url\": \"https://pagure.io/fedora-infrastructure/boards/ops\", - \n \"name\": \"ops\", \n \"status\": [\n {\n + \ }\n }\n ], \n \"content\": \"The resultsdb-ci-listener + is a app we run in openshift. It takes messages from CI and inserts them into + resultsdb's database.\\r\\n\\r\\nRight now, changes to the app require: \\r\\n\\r\\nChanges + made in https://pagure.io/ci-resultsdb-listener/ for the app itself.\\r\\nThen, + image changes made in https://pagure.io/kube-sig/resultsdb-ci-listener-images\\r\\nThen, + an image built in quay.io and pushed out\\r\\nFinally changes in ansible to + use that container (if it's not :latest). \\r\\n\\r\\nIMHO we should move + this to: \\r\\n\\r\\nChanges made in https://pagure.io/ci-resultsdb-listener/ + for the app in production and staging branches.\\r\\nOur openshift using s2i + to see the changes and build it and deploy it. \", \n \"custom_fields\": + [], \n \"date_created\": \"1709154082\", \n \"depends\": [], \n + \ \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11807\", + \n \"id\": 11807, \n \"last_updated\": \"1709233605\", \n \"milestone\": + null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Open\", \n \"tags\": [\n \"low-gain\", + \n \"low-trouble\", \n \"ops\"\n ], \n \"title\": + \"move resultsdb-ci-listener deployment pipeline\", \n \"user\": {\n + \ \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": + \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n + \ }\n }, \n {\n \"assignee\": {\n \"full_url\": \"https://pagure.io/user/ryanlerch\", + \n \"fullname\": \"Ryan Lerch\", \n \"name\": \"ryanlerch\", + \n \"url_path\": \"user/ryanlerch\"\n }, \n \"blocks\": [], + \n \"boards\": [\n {\n \"board\": {\n \"active\": + true, \n \"full_url\": \"https://pagure.io/fedora-infrastructure/boards/dev\", + \n \"name\": \"dev\", \n \"status\": [\n {\n \ \"bg_color\": \"#ffb300\", \n \"close\": false, \n \"close_status\": null, \n \"default\": true, \n \"name\": \"Backlog\"\n }, \n {\n @@ -339,163 +97,138 @@ interactions: \ \"bg_color\": \"#e80909\", \n \"close\": false, \n \"close_status\": null, \n \"default\": false, \n \"name\": \"Blocked\"\n }\n ], \n - \ \"tag\": {\n \"tag\": \"ops\", \n \"tag_color\": - \"#3efa0e\", \n \"tag_description\": \"ops problem now...\"\n - \ }\n }, \n \"rank\": 842, \n \"status\": + \ \"tag\": {\n \"tag\": \"dev\", \n \"tag_color\": + \"#0909e1\", \n \"tag_description\": \"Tasks requiring some dev + work\"\n }\n }, \n \"rank\": 30, \n \"status\": {\n \"bg_color\": \"#ffb300\", \n \"close\": false, \n \"close_status\": null, \n \"default\": true, \n \ \"name\": \"Backlog\"\n }\n }\n ], \n \"close_status\": - \"Fixed\", \n \"closed_at\": \"1708557721\", \n \"closed_by\": {\n - \ \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": - \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }, \n \"comments\": [\n {\n \"comment\": \"FWIW, - my plan for db01 is: \\r\\n\\r\\n* I will be making a new db02 vm. rhel9 / - default postgresql \\r\\n* I will rsync all /var/lib/pgsql/data from db01 - to db02 (and possibly also to some other location to have a panic backup)\\r\\n* - I will rsync again before the outage window\\r\\n* at outage, take down db01's - postgresql\\r\\n* Do another rsync.\\r\\n* take down db01, save it's storage - and virt xml.\\r\\n* on db02 to a pg_upgrade to the default rhel9 version. - \\r\\n* on db02 upgrade postgresql to 15, do another pg_upgrade\\r\\n* rename - db02 to db01, switch it back to the db01 ip. \\r\\n* bring it back up. \\r\\n\\r\\n(I - did this with db-koji01 a while back just fine). \\r\\n\\r\\nI am going to - do this process now with staging. \", \n \"date_created\": \"1708111181\", + null, \n \"closed_at\": null, \n \"closed_by\": null, \n \"comments\": + [\n {\n \"comment\": \"**Metadata Update from @zlopez**:\\n- + Issue priority set to: Waiting on Assignee (was: Needs Review)\\n- Issue tagged + with: dev, high-gain, high-trouble\", \n \"date_created\": \"1709125669\", \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 895898, \n \"notification\": false, \n \"parent\": null, + 898412, \n \"notification\": true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", - \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }\n }, \n {\n \"comment\": \"It could be - wise to take down bodhi completely before taking down Koji, as failing to - tag builds will cause out of synch statuses between updates status and build - tags.\", \n \"date_created\": \"1708175072\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 895977, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/mattia\", \n \"fullname\": - \"Mattia Verga\", \n \"name\": \"mattia\", \n \"url_path\": - \"user/mattia\"\n }\n }, \n {\n \"comment\": - \"I'm going to change this outage to just be the koji update. \\r\\n\\r\\nThinking - about it we are getting some new hardware soon, and I want to wait for that - to be setup for the new rhel9 db01. I could set it up on existing hardware, - but then would have to move it, etc. So, just putting it on the new hardware - in the first place makes more sense. ;) \\r\\n\\r\\nYeah, I can scale bodhi - down before koji is taken down, thanks for the input!\", \n \"date_created\": - \"1708197820\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 896046, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", - \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n + \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", + \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n \ }\n }, \n {\n \"comment\": \"**Metadata Update - from @phsmoura**:\\n- Issue priority set to: Waiting on Assignee (was: Needs - Review)\\n- Issue tagged with: medium-gain, medium-trouble, ops\", \n \"date_created\": - \"1708369748\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 896374, \n \"notification\": true, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/phsmoura\", \n \"fullname\": \"Pedro Moura\", - \n \"name\": \"phsmoura\", \n \"url_path\": \"user/phsmoura\"\n - \ }\n }, \n {\n \"comment\": \"Outage is over. - \\r\\n\\r\\nI did try and do a vacuum full on the db, but the builrdoot table - is gigantic and it was taking a really really long time, so I ended up just - canceling. \\r\\nWe can try again sometime.\", \n \"date_created\": - \"1708557723\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 896866, \n \"notification\": false, \n \"parent\": + from @ryanlerch**:\\n- Issue assigned to ryanlerch\", \n \"date_created\": + \"1709244745\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 898663, \n \"notification\": true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", - \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }\n }, \n {\n \"comment\": \"**Metadata Update - from @kevin**:\\n- Issue close_status updated to: Fixed\\n- Issue status updated - to: Closed (was: Open)\", \n \"date_created\": \"1708557724\", \n - \ \"edited_on\": null, \n \"editor\": null, \n \"id\": - 896867, \n \"notification\": true, \n \"parent\": null, - \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", - \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }\n }\n ], \n \"content\": \"Planned Outage - koji - upgrade - 2024-02-21 21:00 UTC\\r\\n\\r\\nThere will be an outage starting - at 2024-02-21 21:00 UTC, \\r\\nwhich will last approximately 3 hours.\\r\\n\\r\\nTo - convert UTC to your local time, take a look at\\r\\nhttp://fedoraproject.org/wiki/Infrastructure/UTCHowto\\r\\nor - run:\\r\\n\\r\\ndate -d '2024-02-21 21:00UTC'\\r\\n\\r\\nReason for outage: - \\r\\n\\r\\nkoji will be upgraded to 1.34.0, which requires a schema update - that touches many rows. We estimate this will take about 45minutes to complete - and during that time, koji will be completely offline. \\r\\nPackage maintainers - are advised to not start any long term builds before the outage.\\r\\n\\r\\nAffected - Services:\\r\\n\\r\\n* koji\\r\\n* bodhi\\r\\n\\r\\nTicket Link:\\r\\n\\r\\nhttps://pagure.io/fedora-infrastructure/issue/11778\\r\\n\\r\\nPlease - join #fedora-admin or #fedora-noc on irc.libera.chat\\r\\nor #admin:fedoraproject.org - / #noc:fedoraproject.org on matrix.\\r\\nPlease add comments to the ticket - for this outage above.\\r\\n\\r\\nUpdated status for this outage may be available - at\\r\\nhttps://www.fedorastatus.org/\", \n \"custom_fields\": [], \n - \ \"date_created\": \"1708110949\", \n \"depends\": [], \n \"full_url\": - \"https://pagure.io/fedora-infrastructure/issue/11778\", \n \"id\": 11778, - \n \"last_updated\": \"1708557724\", \n \"milestone\": null, \n - \ \"priority\": 3, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Closed\", \n \"tags\": [\n \"medium-gain\", - \n \"medium-trouble\", \n \"ops\", \n \"outage\"\n ], - \n \"title\": \"Planned Outage - koji upgrade - 2024-02-21 21:00 UTC\", - \n \"user\": {\n \"full_url\": \"https://pagure.io/user/kevin\", - \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n - \ \"url_path\": \"user/kevin\"\n }\n }, \n {\n \"assignee\": - null, \n \"blocks\": [], \n \"close_status\": \"Fixed\", \n \"closed_at\": - \"1708108781\", \n \"closed_by\": {\n \"full_url\": \"https://pagure.io/user/catanzaro\", - \n \"fullname\": \"Michael Catanzaro\", \n \"name\": \"catanzaro\", - \n \"url_path\": \"user/catanzaro\"\n }, \n \"comments\": - [\n {\n \"comment\": \"So, pagure does have a block_user thing... - and indeed I do see you blocked for that project, but no clear idea why or - how that could have happened. \\r\\n\\r\\nI will unblock you. Huh, and I can't - unblock you with the web interface... so I just did it in the db. \\r\\n\\r\\nI - wonder if someone was playing with that functionaly, added you to test, then - couldn't remove it and didn't let anyone know?\\r\\n\\r\\nAnyhow, try now?\\r\\n\", - \n \"date_created\": \"1708107744\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 895894, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": - \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": - \"user/kevin\"\n }\n }, \n {\n \"comment\": - \"Yeah, it's fixed now. Thanks!\", \n \"date_created\": \"1708108783\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 895896, \n \"notification\": false, \n \"parent\": null, - \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/catanzaro\", \n \"fullname\": \"Michael - Catanzaro\", \n \"name\": \"catanzaro\", \n \"url_path\": - \"user/catanzaro\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @catanzaro**:\\n- Issue close_status updated to: - Fixed\\n- Issue status updated to: Closed (was: Open)\", \n \"date_created\": - \"1708108784\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 895897, \n \"notification\": true, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/catanzaro\", \n \"fullname\": \"Michael - Catanzaro\", \n \"name\": \"catanzaro\", \n \"url_path\": - \"user/catanzaro\"\n }\n }\n ], \n \"content\": - \"# Describe what you would like us to do:\\r\\n----\\r\\n\\r\\nWhen I try - to leave comments on the gnome-control-center project on src.fedoraproject.org, - the \\\"Submit Comment\\\" button becomes insensitive, and then nothing happens. - This has been broken for [at least three weeks now](https://src.fedoraproject.org/rpms/gnome-control-center/pull-request/20#comment-178977).\\r\\n\\r\\n[I - can comment on the gnome-initial-setup project without issue,](https://src.fedoraproject.org/rpms/gnome-initial-setup/pull-request/4#comment-183779) - so the problem seems to be specific to gnome-control-center.\\r\\n\\r\\nI'm - able to [push commits](https://src.fedoraproject.org/rpms/gnome-control-center/c/249b9d205494f4ed770160194ebd9638a8f2ca71?branch=rawhide) - without difficulty. But I cannot merge pull requests. When I try to merge - a pull request, it says:\\r\\n\\r\\n\\\"\\\"\\\"\\r\\nForbidden\\r\\n\\r\\nYou - have been blocked from this project\\r\\n\\\"\\\"\\\"\\r\\n\\r\\nThat's weird, - because I don't think pagure has settings for blocking people from projects. - At least, I can't find any such settings for projects where I am an admin. - I wonder why I'm blocked.\\r\\n\\r\\n(And Pagure really should display some - sort of error message instead of just failing to add a comment, but I guess - you probably don't track pagure issues here.)\\r\\n\\r\\n# When do you need - this to be done by? (YYYY/MM/DD)\\r\\n----\\r\\nPlease investigate when you - can. Since a date is required, I'll arbitrary pick 2024/02/19\", \n \"custom_fields\": - [], \n \"date_created\": \"1708107105\", \n \"depends\": [], \n - \ \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11777\", - \n \"id\": 11777, \n \"last_updated\": \"1708108784\", \n \"milestone\": - null, \n \"priority\": 1, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": - \"Cannot comment on gnome-control-center, cannot merge merge requests \\\"Forbidden - You have been blocked from this project\\\"\", \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/catanzaro\", \n \"fullname\": \"Michael Catanzaro\", - \n \"name\": \"catanzaro\", \n \"url_path\": \"user/catanzaro\"\n - \ }\n }, \n {\n \"assignee\": {\n \"full_url\": \"https://pagure.io/user/zlopez\", + \"https://pagure.io/user/ryanlerch\", \n \"fullname\": \"Ryan Lerch\", + \n \"name\": \"ryanlerch\", \n \"url_path\": \"user/ryanlerch\"\n + \ }\n }\n ], \n \"content\": \"# Describe what you + would like us to do:\\r\\n----\\r\\nRHEL 7 EOL is approaching (June 2024) + and we still have some services running on RHEL7 machines.\\r\\n\\r\\n[kerneltest](https://apps.fedoraproject.org/kerneltest/) + is one of these services and we need to do something about it.\\r\\n\\r\\nCurrent + state of things:\\r\\n\\r\\n* python 3 support is missing\\r\\n* fedora messaging + support is missing \\r\\n\\r\\n[ARC investigation document](https://fedora-arc.readthedocs.io/en/latest/kerneltest/index.html)\\r\\n\\r\\n# + When do you need this to be done by? (YYYY/MM/DD)\\r\\n----\\r\\nJune 2024\", + \n \"custom_fields\": [], \n \"date_created\": \"1709125645\", \n + \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11806\", + \n \"id\": 11806, \n \"last_updated\": \"1709244745\", \n \"milestone\": + null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Open\", \n \"tags\": [\n \"dev\", \n + \ \"high-gain\", \n \"high-trouble\"\n ], \n \"title\": + \"rhel7 EOL - kerneltest\", \n \"user\": {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", \n \"name\": - \"zlopez\", \n \"url_path\": \"user/zlopez\"\n }, \n \"blocks\": + \"zlopez\", \n \"url_path\": \"user/zlopez\"\n }\n }, \n {\n + \ \"assignee\": {\n \"full_url\": \"https://pagure.io/user/abompard\", + \n \"fullname\": \"Aur\\u00e9lien Bompard\", \n \"name\": \"abompard\", + \n \"url_path\": \"user/abompard\"\n }, \n \"blocks\": [], + \n \"close_status\": null, \n \"closed_at\": null, \n \"closed_by\": + null, \n \"comments\": [\n {\n \"comment\": \"**Metadata + Update from @abompard**:\\n- Issue assigned to abompard\", \n \"date_created\": + \"1709126702\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 898417, \n \"notification\": true, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/abompard\", \n \"fullname\": \"Aur\\u00e9lien + Bompard\", \n \"name\": \"abompard\", \n \"url_path\": + \"user/abompard\"\n }\n }\n ], \n \"content\": \"# + Describe what you would like us to do:\\r\\n----\\r\\nRHEL 7 EOL is approaching + (June 2024) and we still have some services running on RHEL7 machines.\\r\\n\\r\\n[mirrormanager](https://github.com/fedora-infra/mirrormanager2) + is of these services and we need to do something about it.\\r\\n\\r\\nCurrent + state of things:\\r\\n\\r\\n* There is an ongoing work on updating it by @abompard + \\r\\n\\r\\n# When do you need this to be done by? (YYYY/MM/DD)\\r\\n----\\r\\nJune + 2024\", \n \"custom_fields\": [], \n \"date_created\": \"1709125313\", + \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11805\", + \n \"id\": 11805, \n \"last_updated\": \"1709126702\", \n \"milestone\": + null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Open\", \n \"tags\": [\n \"dev\", \n + \ \"high-gain\", \n \"high-trouble\"\n ], \n \"title\": + \"rhel7 EOL - mirrormanager\", \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", + \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n + \ }\n }, \n {\n \"assignee\": {\n \"full_url\": \"https://pagure.io/user/abompard\", + \n \"fullname\": \"Aur\\u00e9lien Bompard\", \n \"name\": \"abompard\", + \n \"url_path\": \"user/abompard\"\n }, \n \"blocks\": [], + \n \"boards\": [\n {\n \"board\": {\n \"active\": + true, \n \"full_url\": \"https://pagure.io/fedora-infrastructure/boards/dev\", + \n \"name\": \"dev\", \n \"status\": [\n {\n + \ \"bg_color\": \"#ffb300\", \n \"close\": false, + \n \"close_status\": null, \n \"default\": true, + \n \"name\": \"Backlog\"\n }, \n {\n + \ \"bg_color\": \"#f4ff64\", \n \"close\": false, + \n \"close_status\": null, \n \"default\": false, + \n \"name\": \"Triaged\"\n }, \n {\n + \ \"bg_color\": \"#99d200\", \n \"close\": false, + \n \"close_status\": null, \n \"default\": false, + \n \"name\": \"In Progress\"\n }, \n {\n + \ \"bg_color\": \"#3c7bff\", \n \"close\": false, + \n \"close_status\": null, \n \"default\": false, + \n \"name\": \"In Review\"\n }, \n {\n + \ \"bg_color\": \"#15d415\", \n \"close\": true, + \n \"close_status\": \"Fixed\", \n \"default\": + false, \n \"name\": \"Done\"\n }, \n {\n + \ \"bg_color\": \"#e80909\", \n \"close\": false, + \n \"close_status\": null, \n \"default\": false, + \n \"name\": \"Blocked\"\n }\n ], \n + \ \"tag\": {\n \"tag\": \"dev\", \n \"tag_color\": + \"#0909e1\", \n \"tag_description\": \"Tasks requiring some dev + work\"\n }\n }, \n \"rank\": 31, \n \"status\": + {\n \"bg_color\": \"#ffb300\", \n \"close\": false, + \n \"close_status\": null, \n \"default\": true, \n + \ \"name\": \"Backlog\"\n }\n }\n ], \n \"close_status\": + null, \n \"closed_at\": null, \n \"closed_by\": null, \n \"comments\": + [\n {\n \"comment\": \"**Metadata Update from @zlopez**:\\n- + Issue assigned to abompard\", \n \"date_created\": \"1709135914\", + \n \"edited_on\": null, \n \"editor\": null, \n \"id\": + 898471, \n \"notification\": true, \n \"parent\": null, + \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", + \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n + \ }\n }, \n {\n \"comment\": \"This is submitted + as outreachy project with @abompard as potential mentor.\", \n \"date_created\": + \"1709136063\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 898475, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", + \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n + \ }\n }\n ], \n \"content\": \"# Describe what you + would like us to do:\\r\\n----\\r\\n\\r\\nRHEL 7 EOL is approaching (June + 2024) and we still have some services running on RHEL7 machines.\\r\\n\\r\\n[github2fedmsg](https://apps.fedoraproject.org/github2fedmsg) + is of these services and we need to do something about it.\\r\\n\\r\\nCurrent + state of things:\\r\\n\\r\\n* Support for Fedora Messaging is missing\\r\\n* + Python 3 support is missing\\r\\n\\r\\n[ARC investigation document](https://fedora-arc.readthedocs.io/en/latest/github2fedmsg/index.html)\\r\\n\\r\\nRecommendation + was to replace it with more general solution `webhook2fedmsg`\\r\\n\\r\\n# + When do you need this to be done by? (YYYY/MM/DD)\\r\\n----\\r\\nJune 2024\", + \n \"custom_fields\": [], \n \"date_created\": \"1709125064\", \n + \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11804\", + \n \"id\": 11804, \n \"last_updated\": \"1709136063\", \n \"milestone\": + null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Open\", \n \"tags\": [\n \"dev\", \n + \ \"high-gain\", \n \"high-trouble\"\n ], \n \"title\": + \"rhel7 EOL - github2fedmsg\", \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", + \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n + \ }\n }, \n {\n \"assignee\": {\n \"full_url\": \"https://pagure.io/user/humaton\", + \n \"fullname\": \"Tom\\u00e1\\u0161 Hr\\u010dka\", \n \"name\": + \"humaton\", \n \"url_path\": \"user/humaton\"\n }, \n \"blocks\": [], \n \"boards\": [\n {\n \"board\": {\n \"active\": - true, \n \"full_url\": \"https://pagure.io/fedora-infrastructure/boards/ops\", - \n \"name\": \"ops\", \n \"status\": [\n {\n + true, \n \"full_url\": \"https://pagure.io/fedora-infrastructure/boards/dev\", + \n \"name\": \"dev\", \n \"status\": [\n {\n \ \"bg_color\": \"#ffb300\", \n \"close\": false, \n \"close_status\": null, \n \"default\": true, \n \"name\": \"Backlog\"\n }, \n {\n @@ -514,139 +247,252 @@ interactions: \ \"bg_color\": \"#e80909\", \n \"close\": false, \n \"close_status\": null, \n \"default\": false, \n \"name\": \"Blocked\"\n }\n ], \n - \ \"tag\": {\n \"tag\": \"ops\", \n \"tag_color\": - \"#3efa0e\", \n \"tag_description\": \"ops problem now...\"\n - \ }\n }, \n \"rank\": 843, \n \"status\": + \ \"tag\": {\n \"tag\": \"dev\", \n \"tag_color\": + \"#0909e1\", \n \"tag_description\": \"Tasks requiring some dev + work\"\n }\n }, \n \"rank\": 32, \n \"status\": {\n \"bg_color\": \"#ffb300\", \n \"close\": false, \n \"close_status\": null, \n \"default\": true, \n \ \"name\": \"Backlog\"\n }\n }\n ], \n \"close_status\": null, \n \"closed_at\": null, \n \"closed_by\": null, \n \"comments\": [\n {\n \"comment\": \"**Metadata Update from @zlopez**:\\n- - Issue priority set to: Waiting on Assignee (was: Needs Review)\\n- Issue tagged - with: Needs investigation\", \n \"date_created\": \"1708344324\", + Issue assigned to humaton\", \n \"date_created\": \"1709135935\", \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 896246, \n \"notification\": true, \n \"parent\": null, + 898472, \n \"notification\": true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n - \ }\n }, \n {\n \"comment\": \"I found this - in the logs:\\r\\n```\\r\\n[Wed Feb 14 06:19:22.038476 2024] [:error] [pid - 9210] [remote 10.3.163.74:100] mod_wsgi (pid=9210): Exception occurred processing - WSGI script '/usr/share/github2fedmsg/github2fedmsg.wsgi'.\\r\\n[Wed Feb 14 - 06:19:22.038574 2024] [:error] [pid 9210] [remote 10.3.163.74:100] Traceback - (most recent call last):\\r\\n[Wed Feb 14 06:19:22.038614 2024] [:error] [pid - 9210] [remote 10.3.163.74:100] File \\\"/usr/lib/python2.7/site-packages/tw2/core/middleware.py\\\", - line 204, in __call__\\r\\n[Wed Feb 14 06:19:22.038832 2024] [:error] [pid - 9210] [remote 10.3.163.74:100] resp = req.get_response(self.app, catch_exc_info=True)\\r\\n[Wed - Feb 14 06:19:22.038851 2024] [:error] [pid 9210] [remote 10.3.163.74:100] - \ File \\\"/usr/lib/python2.7/site-packages/WebOb-1.4.1-py2.7.egg/webob/request.py\\\", - line 1313, in send\\r\\n[Wed Feb 14 06:19:22.038872 2024] [:error] [pid 9210] - [remote 10.3.163.74:100] application, catch_exc_info=True)\\r\\n[Wed Feb - 14 06:19:22.038879 2024] [:error] [pid 9210] [remote 10.3.163.74:100] File - \\\"/usr/lib/python2.7/site-packages/WebOb-1.4.1-py2.7.egg/webob/request.py\\\", - line 1281, in call_application\\r\\n[Wed Feb 14 06:19:22.038892 2024] [:error] - [pid 9210] [remote 10.3.163.74:100] app_iter = application(self.environ, - start_response)\\r\\n[Wed Feb 14 06:19:22.038900 2024] [:error] [pid 9210] - [remote 10.3.163.74:100] File \\\"/usr/lib/python2.7/site-packages/paste/deploy/config.py\\\", - line 291, in __call__\\r\\n[Wed Feb 14 06:19:22.038914 2024] [:error] [pid - 9210] [remote 10.3.163.74:100] return self.app(environ, start_response)\\r\\n[Wed - Feb 14 06:19:22.038923 2024] [:error] [pid 9210] [remote 10.3.163.74:100] - \ File \\\"/usr/lib/python2.7/site-packages/pyramid/router.py\\\", line 242, - in __call__\\r\\n[Wed Feb 14 06:19:22.038937 2024] [:error] [pid 9210] [remote - 10.3.163.74:100] response = self.invoke_subrequest(request, use_tweens=True)\\r\\n[Wed - Feb 14 06:19:22.038944 2024] [:error] [pid 9210] [remote 10.3.163.74:100] - \ File \\\"/usr/lib/python2.7/site-packages/pyramid/router.py\\\", line 217, - in invoke_subrequest\\r\\n[Wed Feb 14 06:19:22.038967 2024] [:error] [pid - 9210] [remote 10.3.163.74:100] response = handle_request(request)\\r\\n[Wed - Feb 14 06:19:22.038976 2024] [:error] [pid 9210] [remote 10.3.163.74:100] - \ File \\\"/usr/lib/python2.7/site-packages/pyramid/tweens.py\\\", line 21, - in excview_tween\\r\\n[Wed Feb 14 06:19:22.038989 2024] [:error] [pid 9210] - [remote 10.3.163.74:100] response = handler(request)\\r\\n[Wed Feb 14 - 06:19:22.038996 2024] [:error] [pid 9210] [remote 10.3.163.74:100] File - \\\"/usr/lib/python2.7/site-packages/pyramid_tm/__init__.py\\\", line 99, - in tm_tween\\r\\n[Wed Feb 14 06:19:22.039010 2024] [:error] [pid 9210] [remote - 10.3.163.74:100] reraise(*exc_info)\\r\\n[Wed Feb 14 06:19:22.039016 2024] - [:error] [pid 9210] [remote 10.3.163.74:100] File \\\"/usr/lib/python2.7/site-packages/pyramid_tm/__init__.py\\\", - line 80, in tm_tween\\r\\n[Wed Feb 14 06:19:22.039028 2024] [:error] [pid - 9210] [remote 10.3.163.74:100] response = handler(request)\\r\\n[Wed Feb - 14 06:19:22.039038 2024] [:error] [pid 9210] [remote 10.3.163.74:100] File - \\\"/usr/lib/python2.7/site-packages/pyramid/router.py\\\", line 163, in handle_request\\r\\n[Wed - Feb 14 06:19:22.039050 2024] [:error] [pid 9210] [remote 10.3.163.74:100] - \ response = view_callable(context, request)\\r\\n[Wed Feb 14 06:19:22.039058 - 2024] [:error] [pid 9210] [remote 10.3.163.74:100] File \\\"/usr/lib/python2.7/site-packages/pyramid/config/views.py\\\", - line 329, in attr_view\\r\\n[Wed Feb 14 06:19:22.039087 2024] [:error] [pid - 9210] [remote 10.3.163.74:100] return view(context, request)\\r\\n[Wed - Feb 14 06:19:22.039101 2024] [:error] [pid 9210] [remote 10.3.163.74:100] - \ File \\\"/usr/lib/python2.7/site-packages/pyramid/config/views.py\\\", - line 305, in predicate_wrapper\\r\\n[Wed Feb 14 06:19:22.039115 2024] [:error] - [pid 9210] [remote 10.3.163.74:100] return view(context, request)\\r\\n[Wed - Feb 14 06:19:22.039121 2024] [:error] [pid 9210] [remote 10.3.163.74:100] - \ File \\\"/usr/lib/python2.7/site-packages/pyramid/config/views.py\\\", - line 355, in rendered_view\\r\\n[Wed Feb 14 06:19:22.039132 2024] [:error] - [pid 9210] [remote 10.3.163.74:100] result = view(context, request)\\r\\n[Wed - Feb 14 06:19:22.039139 2024] [:error] [pid 9210] [remote 10.3.163.74:100] - \ File \\\"/usr/lib/python2.7/site-packages/pyramid/config/views.py\\\", - line 501, in _requestonly_view\\r\\n[Wed Feb 14 06:19:22.039150 2024] [:error] - [pid 9210] [remote 10.3.163.74:100] response = view(request)\\r\\n[Wed - Feb 14 06:19:22.039157 2024] [:error] [pid 9210] [remote 10.3.163.74:100] - \ File \\\"/usr/lib/python2.7/site-packages/github2fedmsg/views/webhooks.py\\\", - line 132, in webhook\\r\\n[Wed Feb 14 06:19:22.039172 2024] [:error] [pid - 9210] [remote 10.3.163.74:100] fas_usernames = build_fas_lookup(payload)\\r\\n[Wed - Feb 14 06:19:22.039179 2024] [:error] [pid 9210] [remote 10.3.163.74:100] - \ File \\\"/usr/lib/python2.7/site-packages/github2fedmsg/views/webhooks.py\\\", - line 172, in build_fas_lookup\\r\\n[Wed Feb 14 06:19:22.039191 2024] [:error] - [pid 9210] [remote 10.3.163.74:100] usernames.add(commit['committer']['username'])\\r\\n[Wed - Feb 14 06:19:22.039219 2024] [:error] [pid 9210] [remote 10.3.163.74:100] - KeyError: 'username'\\r\\n```\\r\\n\\r\\nLooking at the [corresponding code](https://github.com/fedora-infra/github2fedmsg/blob/develop/github2fedmsg/views/webhooks.py#L182), - it's really strange because it's checking if the code is actually there before - accessing it. \\r\\nHm, it seems that the version is actually different in - github from the one that is deployed on production.\", \n \"date_created\": - \"1708347864\", \n \"edited_on\": \"1708347920\", \n \"editor\": - {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": - \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": - \"user/zlopez\"\n }, \n \"id\": 896268, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": - \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": - \"user/zlopez\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @zlopez**:\\n- Issue **un**tagged with: Needs investigation\\n- - Issue assigned to zlopez\\n- Issue tagged with: low-gain, medium-trouble, - ops\", \n \"date_created\": \"1708425905\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 896502, \n \"notification\": - true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": - \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": - \"user/zlopez\"\n }\n }, \n {\n \"comment\": - \"I patched the error I found in this [PR](https://pagure.io/fedora-infra/ansible/pull-request/1795). - @ralph Did it solved the error for you?\", \n \"date_created\": \"1708430203\", + \ }\n }\n ], \n \"content\": \"# Describe what you + would like us to do:\\r\\n----\\r\\nRHEL 7 EOL is approaching (June 2024) + and we still have some services running on RHEL7 machines.\\r\\n\\r\\n[Fedimg](https://fedimg.readthedocs.io/en/latest/) + is one of these services and we need to do something about it.\\r\\n\\r\\nThis + application needs to be investigated first, so we know if it's still used + and needs to be updated.\\r\\n\\r\\n# When do you need this to be done by? + (YYYY/MM/DD)\\r\\n----\\r\\nJune 2024\", \n \"custom_fields\": [], \n + \ \"date_created\": \"1709124871\", \n \"depends\": [], \n \"full_url\": + \"https://pagure.io/fedora-infrastructure/issue/11803\", \n \"id\": 11803, + \n \"last_updated\": \"1709135935\", \n \"milestone\": null, \n + \ \"priority\": 3, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Open\", \n \"tags\": [\n \"dev\", \n + \ \"high-gain\", \n \"high-trouble\"\n ], \n \"title\": + \"rhel7 EOL - Fedimg\", \n \"user\": {\n \"full_url\": \"https://pagure.io/user/zlopez\", + \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", \n \"name\": + \"zlopez\", \n \"url_path\": \"user/zlopez\"\n }\n }, \n {\n + \ \"assignee\": {\n \"full_url\": \"https://pagure.io/user/abompard\", + \n \"fullname\": \"Aur\\u00e9lien Bompard\", \n \"name\": \"abompard\", + \n \"url_path\": \"user/abompard\"\n }, \n \"blocks\": [], + \n \"boards\": [\n {\n \"board\": {\n \"active\": + true, \n \"full_url\": \"https://pagure.io/fedora-infrastructure/boards/dev\", + \n \"name\": \"dev\", \n \"status\": [\n {\n + \ \"bg_color\": \"#ffb300\", \n \"close\": false, + \n \"close_status\": null, \n \"default\": true, + \n \"name\": \"Backlog\"\n }, \n {\n + \ \"bg_color\": \"#f4ff64\", \n \"close\": false, + \n \"close_status\": null, \n \"default\": false, + \n \"name\": \"Triaged\"\n }, \n {\n + \ \"bg_color\": \"#99d200\", \n \"close\": false, + \n \"close_status\": null, \n \"default\": false, + \n \"name\": \"In Progress\"\n }, \n {\n + \ \"bg_color\": \"#3c7bff\", \n \"close\": false, + \n \"close_status\": null, \n \"default\": false, + \n \"name\": \"In Review\"\n }, \n {\n + \ \"bg_color\": \"#15d415\", \n \"close\": true, + \n \"close_status\": \"Fixed\", \n \"default\": + false, \n \"name\": \"Done\"\n }, \n {\n + \ \"bg_color\": \"#e80909\", \n \"close\": false, + \n \"close_status\": null, \n \"default\": false, + \n \"name\": \"Blocked\"\n }\n ], \n + \ \"tag\": {\n \"tag\": \"dev\", \n \"tag_color\": + \"#0909e1\", \n \"tag_description\": \"Tasks requiring some dev + work\"\n }\n }, \n \"rank\": 33, \n \"status\": + {\n \"bg_color\": \"#ffb300\", \n \"close\": false, + \n \"close_status\": null, \n \"default\": true, \n + \ \"name\": \"Backlog\"\n }\n }\n ], \n \"close_status\": + null, \n \"closed_at\": null, \n \"closed_by\": null, \n \"comments\": + [\n {\n \"comment\": \"**Metadata Update from @zlopez**:\\n- + Issue assigned to abompard\", \n \"date_created\": \"1709135971\", \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 896533, \n \"notification\": false, \n \"parent\": null, + 898473, \n \"notification\": true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n - \ }\n }, \n {\n \"comment\": \"**Metadata Update - from @zlopez**:\\n- Issue priority set to: Waiting on Reporter (was: Waiting - on Assignee)\", \n \"date_created\": \"1708430215\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 896534, \n \"notification\": - true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + \ }\n }, \n {\n \"comment\": \"@abompard will + work on PoC for next badges meeting to see how complex the update would be\", + \n \"date_created\": \"1709136013\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 898474, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": - \"user/zlopez\"\n }\n }\n ], \n \"content\": \"I - tried to enable a repo in github2fedmsg, but I was met with a 500 error.\\r\\n\\r\\nThe - repo is https://github.com/konflux-ci/project-controller\\r\\n\\r\\nI found - that I can toggle other repos under my personal namespace, but not this one.\\r\\n\\r\\n# - Describe what you would like us to do:\\r\\n\\r\\nCan you find the traceback - in the logs and share it here?\\r\\n\\r\\n# When do you need this to be done - by? (YYYY/MM/DD)\\r\\n\\r\\nNo rush. :)\", \n \"custom_fields\": [], - \n \"date_created\": \"1708030760\", \n \"depends\": [], \n \"full_url\": - \"https://pagure.io/fedora-infrastructure/issue/11776\", \n \"id\": 11776, - \n \"last_updated\": \"1708430215\", \n \"milestone\": null, \n - \ \"priority\": 4, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Open\", \n \"tags\": [\n \"low-gain\", + \"user/zlopez\"\n }\n }\n ], \n \"content\": \"# + Describe what you would like us to do:\\r\\n----\\r\\nRHEL 7 EOL is approaching + (June 2024) and we still have some services running on RHEL7 machines.\\r\\n\\r\\n[Badges](https://badges.fedoraproject.org/) + are one of these services and we need to do something about it.\\r\\n\\r\\nCurrent + state of things:\\r\\n\\r\\n* Support for Fedora Messaging is missing\\r\\n* + Python 3 support is complicated as there are plenty of dependencies not available + in Python 3\\r\\n\\r\\n[ARC investigation document](https://fedora-arc.readthedocs.io/en/latest/badges/index.html)\\r\\n\\r\\n# + When do you need this to be done by? (YYYY/MM/DD)\\r\\n----\\r\\nJune 2024\", + \n \"custom_fields\": [], \n \"date_created\": \"1709124510\", \n + \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11802\", + \n \"id\": 11802, \n \"last_updated\": \"1709136013\", \n \"milestone\": + null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Open\", \n \"tags\": [\n \"dev\", \n + \ \"high-gain\", \n \"high-trouble\"\n ], \n \"title\": + \"rhel7 EOL - Badges\", \n \"user\": {\n \"full_url\": \"https://pagure.io/user/zlopez\", + \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", \n \"name\": + \"zlopez\", \n \"url_path\": \"user/zlopez\"\n }\n }, \n {\n + \ \"assignee\": null, \n \"blocks\": [], \n \"boards\": [\n + \ {\n \"board\": {\n \"active\": true, \n \"full_url\": + \"https://pagure.io/fedora-infrastructure/boards/ops\", \n \"name\": + \"ops\", \n \"status\": [\n {\n \"bg_color\": + \"#ffb300\", \n \"close\": false, \n \"close_status\": + null, \n \"default\": true, \n \"name\": \"Backlog\"\n + \ }, \n {\n \"bg_color\": \"#f4ff64\", + \n \"close\": false, \n \"close_status\": null, + \n \"default\": false, \n \"name\": \"Triaged\"\n + \ }, \n {\n \"bg_color\": \"#99d200\", + \n \"close\": false, \n \"close_status\": null, + \n \"default\": false, \n \"name\": \"In Progress\"\n + \ }, \n {\n \"bg_color\": \"#3c7bff\", + \n \"close\": false, \n \"close_status\": null, + \n \"default\": false, \n \"name\": \"In Review\"\n + \ }, \n {\n \"bg_color\": \"#15d415\", + \n \"close\": true, \n \"close_status\": \"Fixed\", + \n \"default\": false, \n \"name\": \"Done\"\n + \ }, \n {\n \"bg_color\": \"#e80909\", + \n \"close\": false, \n \"close_status\": null, + \n \"default\": false, \n \"name\": \"Blocked\"\n + \ }\n ], \n \"tag\": {\n \"tag\": + \"ops\", \n \"tag_color\": \"#3efa0e\", \n \"tag_description\": + \"ops problem now...\"\n }\n }, \n \"rank\": + 854, \n \"status\": {\n \"bg_color\": \"#ffb300\", \n + \ \"close\": false, \n \"close_status\": null, \n \"default\": + true, \n \"name\": \"Backlog\"\n }\n }\n ], + \n \"close_status\": null, \n \"closed_at\": null, \n \"closed_by\": + null, \n \"comments\": [\n {\n \"comment\": \"**Metadata + Update from @zlopez**:\\n- Issue priority set to: Waiting on Assignee (was: + Needs Review)\\n- Issue tagged with: low-trouble, medium-gain, ops\", \n \"date_created\": + \"1709121743\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 898401, \n \"notification\": true, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", + \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n + \ }\n }\n ], \n \"content\": \"The primary CentOS + mirror probably has firewall rules that prevent the staging area to reach + it via HTTP. My guess is that it's allowing `mm-backend01` only at the moment.\\r\\nIf + possible, I'd like to allow the openshift clusters in production and staging + to reach that host as well, via HTTP and rsync. Read-only of course.\\r\\n\\r\\nHappy + to discuss other methods if it's not possible.\\r\\n\\r\\n@arrfab ?\", \n + \ \"custom_fields\": [], \n \"date_created\": \"1709117913\", \n + \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11800\", + \n \"id\": 11800, \n \"last_updated\": \"1709121743\", \n \"milestone\": + null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Open\", \n \"tags\": [\n \"low-trouble\", + \n \"medium-gain\", \n \"ops\"\n ], \n \"title\": + \"Allow staging to reach mref1-priv.iad2.centos.org\", \n \"user\": {\n + \ \"full_url\": \"https://pagure.io/user/abompard\", \n \"fullname\": + \"Aur\\u00e9lien Bompard\", \n \"name\": \"abompard\", \n \"url_path\": + \"user/abompard\"\n }\n }, \n {\n \"assignee\": null, \n \"blocks\": + [], \n \"boards\": [\n {\n \"board\": {\n \"active\": + true, \n \"full_url\": \"https://pagure.io/fedora-infrastructure/boards/ops\", + \n \"name\": \"ops\", \n \"status\": [\n {\n + \ \"bg_color\": \"#ffb300\", \n \"close\": false, + \n \"close_status\": null, \n \"default\": true, + \n \"name\": \"Backlog\"\n }, \n {\n + \ \"bg_color\": \"#f4ff64\", \n \"close\": false, + \n \"close_status\": null, \n \"default\": false, + \n \"name\": \"Triaged\"\n }, \n {\n + \ \"bg_color\": \"#99d200\", \n \"close\": false, + \n \"close_status\": null, \n \"default\": false, + \n \"name\": \"In Progress\"\n }, \n {\n + \ \"bg_color\": \"#3c7bff\", \n \"close\": false, + \n \"close_status\": null, \n \"default\": false, + \n \"name\": \"In Review\"\n }, \n {\n + \ \"bg_color\": \"#15d415\", \n \"close\": true, + \n \"close_status\": \"Fixed\", \n \"default\": + false, \n \"name\": \"Done\"\n }, \n {\n + \ \"bg_color\": \"#e80909\", \n \"close\": false, + \n \"close_status\": null, \n \"default\": false, + \n \"name\": \"Blocked\"\n }\n ], \n + \ \"tag\": {\n \"tag\": \"ops\", \n \"tag_color\": + \"#3efa0e\", \n \"tag_description\": \"ops problem now...\"\n + \ }\n }, \n \"rank\": 853, \n \"status\": + {\n \"bg_color\": \"#ffb300\", \n \"close\": false, + \n \"close_status\": null, \n \"default\": true, \n + \ \"name\": \"Backlog\"\n }\n }\n ], \n \"close_status\": + null, \n \"closed_at\": null, \n \"closed_by\": null, \n \"comments\": + [\n {\n \"comment\": \"**Metadata Update from @phsmoura**:\\n- + Issue priority set to: Waiting on Assignee (was: Needs Review)\\n- Issue tagged + with: medium-gain, medium-trouble, ops\", \n \"date_created\": \"1709061133\", + \n \"edited_on\": null, \n \"editor\": null, \n \"id\": + 898281, \n \"notification\": true, \n \"parent\": null, + \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/phsmoura\", \n \"fullname\": \"Pedro Moura\", + \n \"name\": \"phsmoura\", \n \"url_path\": \"user/phsmoura\"\n + \ }\n }\n ], \n \"content\": \"From time to time + recently, one or both of our ipsilon idp servers have gone unresponsive. \\r\\n\\r\\nWhen + this happens haproxy should remove the unresponsive node, but it does not + seem to do so and users get a 'gateway timeout' or the like on _some_ requests + (but not all). \\r\\n\\r\\nThe next time this happens we should check the + haproxy check and see why it's not marking the machine as down. \\r\\n\\r\\nWe + may also want to upgrade the nodes to fedora 39 to see if that helps this + underlying issue. \\r\\n\", \n \"custom_fields\": [], \n \"date_created\": + \"1709047684\", \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11799\", + \n \"id\": 11799, \n \"last_updated\": \"1709061133\", \n \"milestone\": + null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Open\", \n \"tags\": [\n \"medium-gain\", \n \"medium-trouble\", \n \"ops\"\n ], \n \"title\": - \"github2fedmsg 500 error\", \n \"user\": {\n \"full_url\": \"https://pagure.io/user/ralph\", - \n \"fullname\": \"Ralph Bean\", \n \"name\": \"ralph\", \n - \ \"url_path\": \"user/ralph\"\n }\n }, \n {\n \"assignee\": + \"investigate ipsilon hangs\", \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", + \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n }\n + \ }, \n {\n \"assignee\": null, \n \"blocks\": [], \n \"boards\": + [\n {\n \"board\": {\n \"active\": true, \n \"full_url\": + \"https://pagure.io/fedora-infrastructure/boards/ops\", \n \"name\": + \"ops\", \n \"status\": [\n {\n \"bg_color\": + \"#ffb300\", \n \"close\": false, \n \"close_status\": + null, \n \"default\": true, \n \"name\": \"Backlog\"\n + \ }, \n {\n \"bg_color\": \"#f4ff64\", + \n \"close\": false, \n \"close_status\": null, + \n \"default\": false, \n \"name\": \"Triaged\"\n + \ }, \n {\n \"bg_color\": \"#99d200\", + \n \"close\": false, \n \"close_status\": null, + \n \"default\": false, \n \"name\": \"In Progress\"\n + \ }, \n {\n \"bg_color\": \"#3c7bff\", + \n \"close\": false, \n \"close_status\": null, + \n \"default\": false, \n \"name\": \"In Review\"\n + \ }, \n {\n \"bg_color\": \"#15d415\", + \n \"close\": true, \n \"close_status\": \"Fixed\", + \n \"default\": false, \n \"name\": \"Done\"\n + \ }, \n {\n \"bg_color\": \"#e80909\", + \n \"close\": false, \n \"close_status\": null, + \n \"default\": false, \n \"name\": \"Blocked\"\n + \ }\n ], \n \"tag\": {\n \"tag\": + \"ops\", \n \"tag_color\": \"#3efa0e\", \n \"tag_description\": + \"ops problem now...\"\n }\n }, \n \"rank\": + 852, \n \"status\": {\n \"bg_color\": \"#ffb300\", \n + \ \"close\": false, \n \"close_status\": null, \n \"default\": + true, \n \"name\": \"Backlog\"\n }\n }\n ], + \n \"close_status\": null, \n \"closed_at\": null, \n \"closed_by\": + null, \n \"comments\": [\n {\n \"comment\": \"**Metadata + Update from @phsmoura**:\\n- Issue priority set to: Waiting on Assignee (was: + Needs Review)\\n- Issue tagged with: low-gain, low-trouble, ops\", \n \"date_created\": + \"1709060914\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 898280, \n \"notification\": true, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/phsmoura\", \n \"fullname\": \"Pedro Moura\", + \n \"name\": \"phsmoura\", \n \"url_path\": \"user/phsmoura\"\n + \ }\n }\n ], \n \"content\": \"# Describe what you + would like us to do:\\r\\n----\\r\\n\\r\\nThis is needed by resalloc. The + database and username could be `openscanhub_resalloc`.\\r\\n\\r\\n# When do + you need this to be done by? (YYYY/MM/DD)\\r\\n----\\r\\nasap\", \n \"custom_fields\": + [], \n \"date_created\": \"1709037565\", \n \"depends\": [], \n + \ \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11797\", + \n \"id\": 11797, \n \"last_updated\": \"1709060914\", \n \"milestone\": + null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Open\", \n \"tags\": [\n \"low-gain\", + \n \"low-trouble\", \n \"ops\"\n ], \n \"title\": + \"Request for central database for OpenScanHub Resalloc integration\", \n + \ \"user\": {\n \"full_url\": \"https://pagure.io/user/svashisht\", + \n \"fullname\": \"Siteshwar Vashisht\", \n \"name\": \"svashisht\", + \n \"url_path\": \"user/svashisht\"\n }\n }, \n {\n \"assignee\": null, \n \"blocks\": [], \n \"boards\": [\n {\n \"board\": {\n \"active\": true, \n \"full_url\": \"https://pagure.io/fedora-infrastructure/boards/ops\", \n \"name\": \"ops\", \n \"status\": [\n {\n @@ -670,57 +516,216 @@ interactions: \n \"name\": \"Blocked\"\n }\n ], \n \ \"tag\": {\n \"tag\": \"ops\", \n \"tag_color\": \"#3efa0e\", \n \"tag_description\": \"ops problem now...\"\n - \ }\n }, \n \"rank\": 841, \n \"status\": + \ }\n }, \n \"rank\": 851, \n \"status\": {\n \"bg_color\": \"#ffb300\", \n \"close\": false, \n \"close_status\": null, \n \"default\": true, \n \ \"name\": \"Backlog\"\n }\n }\n ], \n \"close_status\": - null, \n \"closed_at\": null, \n \"closed_by\": null, \n \"comments\": - [\n {\n \"comment\": \"its in root.log...\\r\\n\\r\\nDEBUG - buildroot.py:802: kernel version == 6.6.9-100.fc38.x86_64\\r\\n\\r\\nyeah, - we can try... I can't right now, but later today or tomorrow possibly.\", - \n \"date_created\": \"1708030673\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 895775, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": - \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": - \"user/kevin\"\n }\n }, \n {\n \"comment\": - \"Ahh, I missed it in root.log - sure, whenever works for you, I don't think - there's any particular rush with it. Thanks!\", \n \"date_created\": - \"1708030883\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 895776, \n \"notification\": false, \n \"parent\": + \"Fixed with Explanation\", \n \"closed_at\": \"1709064065\", \n \"closed_by\": + {\n \"full_url\": \"https://pagure.io/user/c4rt0\", \n \"fullname\": + \"Adam Piasecki\", \n \"name\": \"c4rt0\", \n \"url_path\": + \"user/c4rt0\"\n }, \n \"comments\": [\n {\n \"comment\": + \"**Metadata Update from @zlopez**:\\n- Issue tagged with: Needs investigation\", + \n \"date_created\": \"1709038196\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 898218, \n \"notification\": + true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": + \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": + \"user/zlopez\"\n }\n }, \n {\n \"comment\": + \"You need to use 'sudo' for the command?\\r\\n\", \n \"date_created\": + \"1709047550\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 898242, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/kalev\", \n \"fullname\": \"Kalev Lember\", - \n \"name\": \"kalev\", \n \"url_path\": \"user/kalev\"\n + \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", + \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n + \ }\n }, \n {\n \"comment\": \"Pretty sure + we tried with `sudo`, could you check that sysadmin-coreos actually gives + permission to this playbook?\", \n \"date_created\": \"1709057838\", + \n \"edited_on\": null, \n \"editor\": null, \n \"id\": + 898274, \n \"notification\": false, \n \"parent\": null, + \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/cverna\", \n \"fullname\": \"Clement Verna\", + \n \"name\": \"cverna\", \n \"url_path\": \"user/cverna\"\n \ }\n }, \n {\n \"comment\": \"**Metadata Update from @phsmoura**:\\n- Issue priority set to: Waiting on Assignee (was: Needs Review)\\n- Issue tagged with: low-gain, low-trouble, ops\", \n \"date_created\": - \"1708369623\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 896373, \n \"notification\": true, \n \"parent\": + \"1709060793\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 898279, \n \"notification\": true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/phsmoura\", \n \"fullname\": \"Pedro Moura\", \n \"name\": \"phsmoura\", \n \"url_path\": \"user/phsmoura\"\n - \ }\n }\n ], \n \"content\": \"Would it be possible - to temporarily downgrade the kernel on one of the i686 builders? I strongly - suspect that webkitgtk build issues on i686 (see https://pagure.io/releng/issue/11952) - are somehow due to the builders getting a newer kernel and it would be good - to test the theory. I played around with the builds a bit locally and it seems - to point in that direction.\\r\\n\\r\\nLast build that went through was webkitgtk-2.43.4-3.fc40, - but I don't know how to check what version of kernel was on the build host - back then. Maybe we could pick one of the 6.6.x kernels if it's not clear - what version was installed back then?\", \n \"custom_fields\": [], \n - \ \"date_created\": \"1708029961\", \n \"depends\": [], \n \"full_url\": - \"https://pagure.io/fedora-infrastructure/issue/11775\", \n \"id\": 11775, - \n \"last_updated\": \"1708369623\", \n \"milestone\": null, \n - \ \"priority\": 3, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Open\", \n \"tags\": [\n \"low-gain\", - \n \"low-trouble\", \n \"ops\"\n ], \n \"title\": - \"Test downgrade kernel on a i686 koji builder\", \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/kalev\", \n \"fullname\": \"Kalev Lember\", - \n \"name\": \"kalev\", \n \"url_path\": \"user/kalev\"\n }\n - \ }, \n {\n \"assignee\": {\n \"full_url\": \"https://pagure.io/user/kevin\", - \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n - \ \"url_path\": \"user/kevin\"\n }, \n \"blocks\": [], \n - \ \"boards\": [\n {\n \"board\": {\n \"active\": + \ }\n }, \n {\n \"comment\": \"Only now I verified + the above and it turns out I was not using `sudo`.\\r\\nThank you @kevin & + @cverna - this issue can now be closed.\", \n \"date_created\": \"1709064067\", + \n \"edited_on\": null, \n \"editor\": null, \n \"id\": + 898294, \n \"notification\": false, \n \"parent\": null, + \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/c4rt0\", \n \"fullname\": \"Adam Piasecki\", + \n \"name\": \"c4rt0\", \n \"url_path\": \"user/c4rt0\"\n + \ }\n }, \n {\n \"comment\": \"**Metadata Update + from @c4rt0**:\\n- Issue close_status updated to: Fixed with Explanation\\n- + Issue status updated to: Closed (was: Open)\", \n \"date_created\": + \"1709064068\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 898295, \n \"notification\": true, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/c4rt0\", \n \"fullname\": \"Adam Piasecki\", + \n \"name\": \"c4rt0\", \n \"url_path\": \"user/c4rt0\"\n + \ }\n }\n ], \n \"content\": \"I am a member of both + `sysadmin` and `sysadmin-coreos`.\\r\\n```\\r\\n[c4rt0@batcave01 ~][PROD-IAD2]$ + groups\\r\\nc4rt0 signed_fpca fedora-contributor fedorabugs packager sysadmin + sysadmin-coreos\\r\\n```\\r\\n\\r\\nI was expecting to be able to run :\\r\\n```\\r\\n[c4rt0@batcave01 + ~][PROD-IAD2]$ rbac-playbook -C openshift-apps/fedora-coreos-pipeline.yml\\r\\n```\\r\\n\\r\\nThe + above attempt however fails with an error:\\r\\n```\\r\\nSorry, user c4rt0 + is not allowed to execute '/bin/bash -i -c cd /srv/web/infra/ansible ; /usr/bin/python3 + /usr/bin/ansible-playbook /srv/web/infra/ansible/playbooks/openshift-apps/fedora-coreos-pipeline.yml + --check' as root on batcave01.iad2.fedoraproject.org.\\r\\n```\\r\\n\\r\\nCan + I please receive some assistance here?\\r\\ncc. @cverna \", \n \"custom_fields\": + [], \n \"date_created\": \"1709035014\", \n \"depends\": [], \n + \ \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11796\", + \n \"id\": 11796, \n \"last_updated\": \"1709064068\", \n \"milestone\": + null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [\n \"Needs investigation\", + \n \"low-gain\", \n \"low-trouble\", \n \"ops\"\n ], + \n \"title\": \"Member of sysadmin&sysadmin-coreos unable to run rbac-playbook + on batcave\", \n \"user\": {\n \"full_url\": \"https://pagure.io/user/c4rt0\", + \n \"fullname\": \"Adam Piasecki\", \n \"name\": \"c4rt0\", + \n \"url_path\": \"user/c4rt0\"\n }\n }, \n {\n \"assignee\": + {\n \"full_url\": \"https://pagure.io/user/ryanlerch\", \n \"fullname\": + \"Ryan Lerch\", \n \"name\": \"ryanlerch\", \n \"url_path\": + \"user/ryanlerch\"\n }, \n \"blocks\": [], \n \"boards\": [\n + \ {\n \"board\": {\n \"active\": true, \n \"full_url\": + \"https://pagure.io/fedora-infrastructure/boards/ops\", \n \"name\": + \"ops\", \n \"status\": [\n {\n \"bg_color\": + \"#ffb300\", \n \"close\": false, \n \"close_status\": + null, \n \"default\": true, \n \"name\": \"Backlog\"\n + \ }, \n {\n \"bg_color\": \"#f4ff64\", + \n \"close\": false, \n \"close_status\": null, + \n \"default\": false, \n \"name\": \"Triaged\"\n + \ }, \n {\n \"bg_color\": \"#99d200\", + \n \"close\": false, \n \"close_status\": null, + \n \"default\": false, \n \"name\": \"In Progress\"\n + \ }, \n {\n \"bg_color\": \"#3c7bff\", + \n \"close\": false, \n \"close_status\": null, + \n \"default\": false, \n \"name\": \"In Review\"\n + \ }, \n {\n \"bg_color\": \"#15d415\", + \n \"close\": true, \n \"close_status\": \"Fixed\", + \n \"default\": false, \n \"name\": \"Done\"\n + \ }, \n {\n \"bg_color\": \"#e80909\", + \n \"close\": false, \n \"close_status\": null, + \n \"default\": false, \n \"name\": \"Blocked\"\n + \ }\n ], \n \"tag\": {\n \"tag\": + \"ops\", \n \"tag_color\": \"#3efa0e\", \n \"tag_description\": + \"ops problem now...\"\n }\n }, \n \"rank\": + 850, \n \"status\": {\n \"bg_color\": \"#ffb300\", \n + \ \"close\": false, \n \"close_status\": null, \n \"default\": + true, \n \"name\": \"Backlog\"\n }\n }\n ], + \n \"close_status\": null, \n \"closed_at\": null, \n \"closed_by\": + null, \n \"comments\": [\n {\n \"comment\": \"**Metadata + Update from @zlopez**:\\n- Issue priority set to: Waiting on Assignee (was: + Needs Review)\\n- Issue tagged with: gitlab, medium-gain, ops\", \n \"date_created\": + \"1709034214\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 898195, \n \"notification\": true, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", + \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n + \ }\n }, \n {\n \"comment\": \"@ryanlerch Where + did we document the gitlab permissions conventions?\\r\\n\\r\\nbasically we + need to make fas groups for each permission level in gitlab (owner, developer, + etc). \\r\\n\", \n \"date_created\": \"1709067934\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 898329, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": + \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": + \"user/kevin\"\n }\n }, \n {\n \"comment\": + \"I think we'd want the go-sig group to have `developer` access by default + and then a `go-sig-gitlab-owners` group to manage the `owner` role, unless + it's possible to manage the `owner` role directly in Gitlab without a second + FAS group. I prefer having `-gitlab-` in there to make it clear that this + is about Gitlab ACLs and not some separate \\\"exclusive\\\" part of the Go + SIG.\", \n \"date_created\": \"1709076350\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 898334, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/gotmax23\", \n \"fullname\": + \"Maxwell G\", \n \"name\": \"gotmax23\", \n \"url_path\": + \"user/gotmax23\"\n }\n }, \n {\n \"comment\": + \"**Metadata Update from @ryanlerch**:\\n- Issue assigned to ryanlerch\", + \n \"date_created\": \"1709258276\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 898671, \n \"notification\": + true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/ryanlerch\", \n \"fullname\": + \"Ryan Lerch\", \n \"name\": \"ryanlerch\", \n \"url_path\": + \"user/ryanlerch\"\n }\n }, \n {\n \"comment\": + \"we can use any groups you want here, but typically in the past, the convention + is:\\r\\n\\r\\n`go-sig` maps to developers on gitlab\\r\\n`go-sig-admin` maps + to owner on gitlab\\r\\n\\r\\ncant remember where we formally documented this, + but this thread outlines it:\\r\\n\\r\\nhttps://discussion.fedoraproject.org/t/fedora-docs-gitlab-permissions/39545\\r\\n\\r\\n\\r\\nThat + said, we can map any group you want to any role, but tpyically in the past + groups have only wanted developer and owner roles, and we have just used the + `-admin` suffix when making the new group\", \n \"date_created\": + \"1709258486\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 898672, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {\n \"Thumbs up\": [\n \"gotmax23\"\n + \ ]\n }, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/ryanlerch\", \n \"fullname\": \"Ryan Lerch\", + \n \"name\": \"ryanlerch\", \n \"url_path\": \"user/ryanlerch\"\n + \ }\n }, \n {\n \"comment\": \"I'd prefer to + map `go-sig` to the `developer`role and create a new `go-sig-gitlab-owners` + group for the `owner` role if possible. If not, `go-sig-admin` works.\", \n + \ \"date_created\": \"1709259365\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 898674, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {\n \"Thumbs + up\": [\n \"alexsaezm\"\n ]\n }, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/gotmax23\", \n \"fullname\": + \"Maxwell G\", \n \"name\": \"gotmax23\", \n \"url_path\": + \"user/gotmax23\"\n }\n }\n ], \n \"content\": \"**NOTE**\\r\\n\\r\\nIf + your issue is for security or deals with sensitive info please\\r\\nmark it + as private using the checkbox below.\\r\\n\\r\\n# Describe what you would + like us to do:\\r\\n----\\r\\n\\r\\nThe Go SIG would like to create a https://gitlab.com/fedora/sigs/go + group to host our code. Ideally, the permissions would be synced with the + go-sig group on FAS. Please let me know if you need any additional info from + me; I've never requested a Fedora Gitlab group before. Thanks!\", \n \"custom_fields\": + [], \n \"date_created\": \"1708975256\", \n \"depends\": [], \n + \ \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11795\", + \n \"id\": 11795, \n \"last_updated\": \"1709259365\", \n \"milestone\": + null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Open\", \n \"tags\": [\n \"gitlab\", + \n \"medium-gain\", \n \"ops\"\n ], \n \"title\": + \"Create Gitlab group for the Go SIG\", \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/gotmax23\", \n \"fullname\": \"Maxwell G\", + \n \"name\": \"gotmax23\", \n \"url_path\": \"user/gotmax23\"\n + \ }\n }, \n {\n \"assignee\": null, \n \"blocks\": [], + \n \"close_status\": \"Invalid\", \n \"closed_at\": \"1708971459\", + \n \"closed_by\": {\n \"full_url\": \"https://pagure.io/user/mattia\", + \n \"fullname\": \"Mattia Verga\", \n \"name\": \"mattia\", + \n \"url_path\": \"user/mattia\"\n }, \n \"comments\": [\n + \ {\n \"comment\": \"Moved to https://pagure.io/releng/issue/11982\", + \n \"date_created\": \"1708971460\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 898041, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/mattia\", \n \"fullname\": + \"Mattia Verga\", \n \"name\": \"mattia\", \n \"url_path\": + \"user/mattia\"\n }\n }, \n {\n \"comment\": + \"**Metadata Update from @mattia**:\\n- Issue close_status updated to: Invalid\\n- + Issue status updated to: Closed (was: Open)\", \n \"date_created\": + \"1708971461\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 898042, \n \"notification\": true, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/mattia\", \n \"fullname\": \"Mattia Verga\", + \n \"name\": \"mattia\", \n \"url_path\": \"user/mattia\"\n + \ }\n }\n ], \n \"content\": \"I've noticed that + recently flatpak updates aren't available to users and asked info on matrix + channel about that. @otaylor says that flatpak-indexer may be broken.\\r\\nI + had a look at ansible stuff and I see the indexes are made available on sundries01 + at `/srv/web/registry-index`, but indeed those files aren't updated since + Feb 13.\", \n \"custom_fields\": [], \n \"date_created\": \"1708970131\", + \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11794\", + \n \"id\": 11794, \n \"last_updated\": \"1708971461\", \n \"milestone\": + null, \n \"priority\": 1, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": + \"flatpak-indexer not updating indexes since February 13th\", \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/mattia\", \n \"fullname\": + \"Mattia Verga\", \n \"name\": \"mattia\", \n \"url_path\": + \"user/mattia\"\n }\n }, \n {\n \"assignee\": null, \n \"blocks\": + [], \n \"boards\": [\n {\n \"board\": {\n \"active\": true, \n \"full_url\": \"https://pagure.io/fedora-infrastructure/boards/ops\", \n \"name\": \"ops\", \n \"status\": [\n {\n \ \"bg_color\": \"#ffb300\", \n \"close\": false, @@ -743,82 +748,127 @@ interactions: \n \"name\": \"Blocked\"\n }\n ], \n \ \"tag\": {\n \"tag\": \"ops\", \n \"tag_color\": \"#3efa0e\", \n \"tag_description\": \"ops problem now...\"\n - \ }\n }, \n \"rank\": 840, \n \"status\": + \ }\n }, \n \"rank\": 848, \n \"status\": {\n \"bg_color\": \"#ffb300\", \n \"close\": false, \n \"close_status\": null, \n \"default\": true, \n \ \"name\": \"Backlog\"\n }\n }\n ], \n \"close_status\": - null, \n \"closed_at\": null, \n \"closed_by\": null, \n \"comments\": - [\n {\n \"comment\": \"builds are getting killed by OOM with - every new toolchain release requiring to reduce parallelism, see eg. https://koji.fedoraproject.org/koji/taskinfo?taskID=113539413\", - \n \"date_created\": \"1708020122\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 895741, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/sharkcz\", \n \"fullname\": - \"Dan Hor\\u00e1k\", \n \"name\": \"sharkcz\", \n \"url_path\": - \"user/sharkcz\"\n }\n }, \n {\n \"comment\": - \"So, this is not some kind of easy magic. I dislike that we have this channel - and really discourage adding more to it... but we can do it if needed. \\r\\n\\r\\nThe - downside is that if we add this then you will need to wait behind any builds - for the other things in the heavybuilder channel. ie, chromium and webkitgtk. - If those have a bunch of builds fired off (not upcommon for them to build - for all active branches), then your build will just wait until heavybuilder - resources are available. \\r\\n\\r\\nThat said, if you don't mind that it - could make builds a lot slower, but fail less we can try it. \\r\\n\", \n - \ \"date_created\": \"1708021135\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 895743, \n \"notification\": + \"Fixed with Explanation\", \n \"closed_at\": \"1708954085\", \n \"closed_by\": + {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": + \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": + \"user/zlopez\"\n }, \n \"comments\": [\n {\n \"comment\": + \"kinit is failing as well.\\r\\n\\r\\n[4162580] 1708952570.214063: Received + error from KDC: -1765328324/Generic error (see e-text)\\r\\nkinit: Generic + error (see e-text) while getting initial credentials\", \n \"date_created\": + \"1708952760\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 897915, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/rcritten\", \n \"fullname\": \"Rob Crittenden\", + \n \"name\": \"rcritten\", \n \"url_path\": \"user/rcritten\"\n + \ }\n }, \n {\n \"comment\": \"Similarly, can't + get a ticket:\\r\\n```\\r\\n$ kinit -V pghmcfc@FEDORAPROJECT.ORG\\r\\nUsing + existing cache: 1000\\r\\nUsing principal: pghmcfc@FEDORAPROJECT.ORG\\r\\nkinit: + Generic error (see e-text) while getting initial credentials\\r\\n```\\r\\n\\r\\n\\r\\n\\r\\n\", + \n \"date_created\": \"1708952797\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 897916, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": - \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": - \"user/kevin\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @phsmoura**:\\n- Issue assigned to kevin\\n- Issue - priority set to: Waiting on Reporter (was: Needs Review)\\n- Issue tagged - with: low-trouble, medium-gain, ops\", \n \"date_created\": \"1708024031\", + {\n \"full_url\": \"https://pagure.io/user/pghmcfc\", \n \"fullname\": + \"Paul Howarth\", \n \"name\": \"pghmcfc\", \n \"url_path\": + \"user/pghmcfc\"\n }\n }, \n {\n \"comment\": + \"> kinit is failing as well.\\r\\n> \\r\\n> [4162580] 1708952570.214063: + Received error from KDC: -1765328324/Generic error (see e-text)\\r\\n> kinit: + Generic error (see e-text) while getting initial credentials\\r\\n\\r\\nJust + came to say the same thing.\", \n \"date_created\": \"1708952814\", \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 895750, \n \"notification\": true, \n \"parent\": null, + 897917, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/phsmoura\", \n \"fullname\": \"Pedro Moura\", - \n \"name\": \"phsmoura\", \n \"url_path\": \"user/phsmoura\"\n - \ }\n }, \n {\n \"comment\": \"a build finally - succeeded. If I could rely on normal builds not running out of memory every - time the wind changes direction I'd be happy to keep using the regular builders.\", - \n \"date_created\": \"1708088246\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 895844, \n \"notification\": + \"https://pagure.io/user/sgallagh\", \n \"fullname\": \"Stephen + Gallagher\", \n \"name\": \"sgallagh\", \n \"url_path\": + \"user/sgallagh\"\n }\n }, \n {\n \"comment\": + \"The issue is probably caused by ipa01 server running out of space. @darknao + is currently trying to find out what could be deleted and will restart the + ipa service.\", \n \"date_created\": \"1708953780\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 897921, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/kkeithle\", \n \"fullname\": - \"Kaleb S. KEITHLEY\", \n \"name\": \"kkeithle\", \n \"url_path\": - \"user/kkeithle\"\n }\n }, \n {\n \"comment\": - \"Is there any pattern to the failures? are they always on x84_64 / s390x? - \", \n \"date_created\": \"1708106316\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 895891, \n \"notification\": + {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": + \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": + \"user/zlopez\"\n }\n }, \n {\n \"comment\": + \"**Metadata Update from @zlopez**:\\n- Issue priority set to: None (was: + Needs Review)\\n- Issue tagged with: high-gain\", \n \"date_created\": + \"1708953824\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 897922, \n \"notification\": true, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", + \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n + \ }\n }, \n {\n \"comment\": \"kinit just worked + for me now.\", \n \"date_created\": \"1708954029\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 897923, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": - \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": - \"user/kevin\"\n }\n }, \n {\n \"comment\": - \"yes, AFAICR it's never happened on aarch64 or ppc64le.\", \n \"date_created\": - \"1708113705\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 895899, \n \"notification\": false, \n \"parent\": + {\n \"full_url\": \"https://pagure.io/user/pghmcfc\", \n \"fullname\": + \"Paul Howarth\", \n \"name\": \"pghmcfc\", \n \"url_path\": + \"user/pghmcfc\"\n }\n }, \n {\n \"comment\": + \"The issue is now resolved, closing this ticket.\", \n \"date_created\": + \"1708954058\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 897924, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {\n \"Thumbs up\": [\n \"music\"\n + \ ]\n }, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", + \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n + \ }\n }, \n {\n \"comment\": \"**Metadata Update + from @zlopez**:\\n- Issue close_status updated to: Fixed with Explanation\\n- + Issue status updated to: Closed (was: Open)\", \n \"date_created\": + \"1708954059\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 897925, \n \"notification\": true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/kkeithle\", \n \"fullname\": \"Kaleb S. - KEITHLEY\", \n \"name\": \"kkeithle\", \n \"url_path\": - \"user/kkeithle\"\n }\n }\n ], \n \"content\": \"**NOTE**\\r\\n\\r\\nIf - your issue is for security or deals with sensitive info please\\r\\nmark it - as private using the checkbox below.\\r\\n\\r\\n# Describe what you would - like us to do:\\r\\n----\\r\\n\\r\\nplease add ceph to the set of packages - that use the heavybuilder channel\\r\\n\\r\\n# When do you need this to be - done by? (YYYY/MM/DD)\\r\\n----\\r\\n\\r\\n2024/02/15\\r\\n\\r\\nThanks\", - \n \"custom_fields\": [], \n \"date_created\": \"1708019951\", \n - \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11774\", - \n \"id\": 11774, \n \"last_updated\": \"1708113705\", \n \"milestone\": - null, \n \"priority\": 4, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Open\", \n \"tags\": [\n \"low-trouble\", - \n \"medium-gain\", \n \"ops\"\n ], \n \"title\": - \"add ceph to the set of packages that use the heavybuilder channel\", \n - \ \"user\": {\n \"full_url\": \"https://pagure.io/user/kkeithle\", - \n \"fullname\": \"Kaleb S. KEITHLEY\", \n \"name\": \"kkeithle\", - \n \"url_path\": \"user/kkeithle\"\n }\n }, \n {\n \"assignee\": - {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": - \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }, \n \"blocks\": [], \n \"boards\": [\n {\n \"board\": + \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", + \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n + \ }\n }, \n {\n \"comment\": \"Issue status + updated to: Open (was: Closed)\", \n \"date_created\": \"1708954076\", + \n \"edited_on\": null, \n \"editor\": null, \n \"id\": + 897926, \n \"notification\": true, \n \"parent\": null, + \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", + \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n + \ }\n }, \n {\n \"comment\": \"**Metadata Update + from @zlopez**:\\n- Issue tagged with: low-trouble, ops\", \n \"date_created\": + \"1708954077\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 897927, \n \"notification\": true, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", + \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n + \ }\n }, \n {\n \"comment\": \"**Metadata Update + from @zlopez**:\\n- Issue close_status updated to: Fixed with Explanation\\n- + Issue status updated to: Closed (was: Open)\", \n \"date_created\": + \"1708954087\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 897928, \n \"notification\": true, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", + \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n + \ }\n }\n ], \n \"content\": \"Hey!\\r\\n\\r\\nFor + the past couple of minutes I've been trying to log in into our Weblate interface, + but even though I'm pretty sure I'm entering the correct password every attempt + ends with \\\"Authentication failure\\\". However, when trying to log in directly + through https://accounts.fedoraproject.org/, I get a slightly more informative + message:\\r\\n\\r\\n```\\r\\n + 500 Internal Server Error

Internal + Server Error

The server encountered an internal error or misconfiguration + and was unable to complete your request.

Please contact the server + administrator at root@localhost to inform them of the time this error occurred, + and the actions you performed just before this error.

More information + about this error may be available in the server error log.

+ \\r\\n```\\r\\n\\r\\nSo it looks like there's something wrong with the auth + server(s).\\r\\n\", \n \"custom_fields\": [], \n \"date_created\": + \"1708952267\", \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11793\", + \n \"id\": 11793, \n \"last_updated\": \"1708954087\", \n \"milestone\": + null, \n \"priority\": 0, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [\n \"high-gain\", + \n \"low-trouble\", \n \"ops\"\n ], \n \"title\": + \"Issues with logging in (500 Internal Server Error)\", \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/mrc0mmand\", \n \"fullname\": + \"Frantisek Sumsal\", \n \"name\": \"mrc0mmand\", \n \"url_path\": + \"user/mrc0mmand\"\n }\n }, \n {\n \"assignee\": {\n \"full_url\": + \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", + \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n }, + \n \"blocks\": [], \n \"boards\": [\n {\n \"board\": {\n \"active\": true, \n \"full_url\": \"https://pagure.io/fedora-infrastructure/boards/ops\", \n \"name\": \"ops\", \n \"status\": [\n {\n \ \"bg_color\": \"#ffb300\", \n \"close\": false, @@ -841,229 +891,375 @@ interactions: \n \"name\": \"Blocked\"\n }\n ], \n \ \"tag\": {\n \"tag\": \"ops\", \n \"tag_color\": \"#3efa0e\", \n \"tag_description\": \"ops problem now...\"\n - \ }\n }, \n \"rank\": 839, \n \"status\": + \ }\n }, \n \"rank\": 847, \n \"status\": {\n \"bg_color\": \"#ffb300\", \n \"close\": false, \n \"close_status\": null, \n \"default\": true, \n \ \"name\": \"Backlog\"\n }\n }\n ], \n \"close_status\": - null, \n \"closed_at\": null, \n \"closed_by\": null, \n \"comments\": - [\n {\n \"comment\": \"**Metadata Update from @kevin**:\\n- - Issue assigned to kevin\\n- Issue priority set to: Waiting on Assignee (was: - Needs Review)\\n- Issue tagged with: low-gain, low-trouble, ops\", \n \"date_created\": - \"1707937798\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 895594, \n \"notification\": true, \n \"parent\": + \"Fixed with Explanation\", \n \"closed_at\": \"1709067488\", \n \"closed_by\": + {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": + \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n + \ }, \n \"comments\": [\n {\n \"comment\": \"**Metadata + Update from @zlopez**:\\n- Issue priority set to: Waiting on Assignee (was: + Needs Review)\\n- Issue tagged with: high-gain, low-trouble, ops\", \n \"date_created\": + \"1708949521\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 897895, \n \"notification\": true, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", + \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n + \ }\n }, \n {\n \"comment\": \"**Metadata Update + from @kevin**:\\n- Issue assigned to kevin\", \n \"date_created\": + \"1709067484\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 898326, \n \"notification\": true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }\n }\n ], \n \"content\": \"# Describe what you - would like us to do:\\r\\n----\\r\\nI've created a Matrix room for the CentOS - Cloud SIG on behalf of @spotz as `#centos-cloud:fedora.im` and I'd like to - get it renamed to `#centos-cloud:fedoraproject.org` to make it official. Thanks!\\r\\n\\r\\n# - When do you need this to be done by? (YYYY/MM/DD)\\r\\n----\\r\\nnot urgent\", - \n \"custom_fields\": [], \n \"date_created\": \"1707931569\", \n - \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11773\", - \n \"id\": 11773, \n \"last_updated\": \"1707937798\", \n \"milestone\": - null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Open\", \n \"tags\": [\n \"low-gain\", - \n \"low-trouble\", \n \"ops\"\n ], \n \"title\": - \"Rename #centos-cloud:fedora.im to #centos-cloud:fedoraproject.org\", \n - \ \"user\": {\n \"full_url\": \"https://pagure.io/user/dcavalca\", - \n \"fullname\": \"Davide Cavalca\", \n \"name\": \"dcavalca\", - \n \"url_path\": \"user/dcavalca\"\n }\n }, \n {\n \"assignee\": - null, \n \"blocks\": [], \n \"close_status\": \"Fixed\", \n \"closed_at\": - \"1707918789\", \n \"closed_by\": {\n \"full_url\": \"https://pagure.io/user/darknao\", - \n \"fullname\": \"Francois Andrieu\", \n \"name\": \"darknao\", - \n \"url_path\": \"user/darknao\"\n }, \n \"comments\": [\n - \ {\n \"comment\": \"I restarted Mailman. Please check if you - still see that error and let us know.\", \n \"date_created\": \"1707918202\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 895519, \n \"notification\": false, \n \"parent\": null, - \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/darknao\", \n \"fullname\": \"Francois - Andrieu\", \n \"name\": \"darknao\", \n \"url_path\": - \"user/darknao\"\n }\n }, \n {\n \"comment\": - \"That did the trick, thanks.\", \n \"date_created\": \"1707918733\", + \ }\n }, \n {\n \"comment\": \"ok. I added + those for read-only access. \", \n \"date_created\": \"1709067490\", \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 895521, \n \"notification\": false, \n \"parent\": null, + 898327, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/rcritten\", \n \"fullname\": \"Rob Crittenden\", - \n \"name\": \"rcritten\", \n \"url_path\": \"user/rcritten\"\n + \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", + \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n \ }\n }, \n {\n \"comment\": \"**Metadata Update - from @darknao**:\\n- Issue close_status updated to: Fixed\\n- Issue status - updated to: Closed (was: Open)\", \n \"date_created\": \"1707918790\", + from @kevin**:\\n- Issue close_status updated to: Fixed with Explanation\\n- + Issue status updated to: Closed (was: Open)\", \n \"date_created\": + \"1709067491\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 898328, \n \"notification\": true, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", + \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n + \ }\n }\n ], \n \"content\": \"Following #11765, + I'd like to give the openshift pods in staging and prod **read-only** access + to Fedora's NFS volumes containing the primary mirror:\\r\\n\\r\\n- ntap-iad2-c02-fedora01-nfs01a:/fedora_ftp/fedora.redhat.com/pub\\r\\n- + ntap-iad2-c02-fedora01-nfs01a:/fedora_ftp_archive\\r\\n\\r\\nI don't think + there would be any security issue with this as it's a read-only access to + something that we publish on the internet anyway. Could there be a significant + risk of DOS maybe?\\r\\n\\r\\nUnless I'm mistaken the Openshift IP range is + `10.3.163.65`-`10.3.163.73` in prod and `10.3.166.50`-`10.3.166.58` in staging.\", + \n \"custom_fields\": [], \n \"date_created\": \"1708949015\", \n + \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11792\", + \n \"id\": 11792, \n \"last_updated\": \"1709067491\", \n \"milestone\": + null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [\n \"high-gain\", + \n \"low-trouble\", \n \"ops\"\n ], \n \"title\": + \"Maybe give access to the Fedora mirror volumes to Openshift pods?\", \n + \ \"user\": {\n \"full_url\": \"https://pagure.io/user/abompard\", + \n \"fullname\": \"Aur\\u00e9lien Bompard\", \n \"name\": \"abompard\", + \n \"url_path\": \"user/abompard\"\n }\n }, \n {\n \"assignee\": + null, \n \"blocks\": [], \n \"boards\": [\n {\n \"board\": + {\n \"active\": true, \n \"full_url\": \"https://pagure.io/fedora-infrastructure/boards/ops\", + \n \"name\": \"ops\", \n \"status\": [\n {\n + \ \"bg_color\": \"#ffb300\", \n \"close\": false, + \n \"close_status\": null, \n \"default\": true, + \n \"name\": \"Backlog\"\n }, \n {\n + \ \"bg_color\": \"#f4ff64\", \n \"close\": false, + \n \"close_status\": null, \n \"default\": false, + \n \"name\": \"Triaged\"\n }, \n {\n + \ \"bg_color\": \"#99d200\", \n \"close\": false, + \n \"close_status\": null, \n \"default\": false, + \n \"name\": \"In Progress\"\n }, \n {\n + \ \"bg_color\": \"#3c7bff\", \n \"close\": false, + \n \"close_status\": null, \n \"default\": false, + \n \"name\": \"In Review\"\n }, \n {\n + \ \"bg_color\": \"#15d415\", \n \"close\": true, + \n \"close_status\": \"Fixed\", \n \"default\": + false, \n \"name\": \"Done\"\n }, \n {\n + \ \"bg_color\": \"#e80909\", \n \"close\": false, + \n \"close_status\": null, \n \"default\": false, + \n \"name\": \"Blocked\"\n }\n ], \n + \ \"tag\": {\n \"tag\": \"ops\", \n \"tag_color\": + \"#3efa0e\", \n \"tag_description\": \"ops problem now...\"\n + \ }\n }, \n \"rank\": 849, \n \"status\": + {\n \"bg_color\": \"#ffb300\", \n \"close\": false, + \n \"close_status\": null, \n \"default\": true, \n + \ \"name\": \"Backlog\"\n }\n }\n ], \n \"close_status\": + null, \n \"closed_at\": null, \n \"closed_by\": null, \n \"comments\": + [\n {\n \"comment\": \"@ngompa Do you know what we are missing?\", + \n \"date_created\": \"1708947798\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 897883, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": + \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": + \"user/zlopez\"\n }\n }, \n {\n \"comment\": + \"**Metadata Update from @zlopez**:\\n- Issue tagged with: Needs investigation\", + \n \"date_created\": \"1708947813\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 897884, \n \"notification\": + true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": + \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": + \"user/zlopez\"\n }\n }, \n {\n \"comment\": + \"I would guess that the patch needs to be backported now? It is in mainline + pagure coming as part of 6.0...\", \n \"date_created\": \"1708948500\", \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 895522, \n \"notification\": true, \n \"parent\": null, + 897892, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/darknao\", \n \"fullname\": \"Francois - Andrieu\", \n \"name\": \"darknao\", \n \"url_path\": - \"user/darknao\"\n }\n }\n ], \n \"content\": \"# - Describe what you would like us to do:\\r\\n\\r\\nI'm trying to moderate the - freeipa-users mailing list. Going to the moderation link, fails with the message:\\r\\nhttps://lists.fedoraproject.org/admin/lists/freeipa-users.lists.fedorahosted.org/held_messages\\r\\n```\\r\\nSomething - went wrong\\r\\n\\r\\nMailman REST API not available. Please start Mailman - core.\\r\\n```\\r\\n\\r\\n----\\r\\n\\r\\n# When do you need this to be done - by? (YYYY/MM/DD)\\r\\n\\r\\nI mean it's not super urgent but the queue is - building. It will become more urgent the longer mailman is not available.\\r\\n\\r\\n----\\r\\n\", - \n \"custom_fields\": [], \n \"date_created\": \"1707916008\", \n - \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11772\", - \n \"id\": 11772, \n \"last_updated\": \"1707918790\", \n \"milestone\": - null, \n \"priority\": 1, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": - \"Mailman is not running?\", \n \"user\": {\n \"full_url\": \"https://pagure.io/user/rcritten\", - \n \"fullname\": \"Rob Crittenden\", \n \"name\": \"rcritten\", - \n \"url_path\": \"user/rcritten\"\n }\n }, \n {\n \"assignee\": - null, \n \"blocks\": [], \n \"close_status\": \"Duplicate\", \n - \ \"closed_at\": \"1707836951\", \n \"closed_by\": {\n \"full_url\": - \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", - \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n - \ }, \n \"comments\": [\n {\n \"comment\": \"Closing - as duplicate of https://pagure.io/fedora-infrastructure/issue/11769, but good - catch that status.fedoraproject.org is not changed. Thanks for pointing that - out.\", \n \"date_created\": \"1707836954\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 895369, \n \"notification\": + \"https://pagure.io/user/ngompa\", \n \"fullname\": \"Neal Gompa\", + \n \"name\": \"ngompa\", \n \"url_path\": \"user/ngompa\"\n + \ }\n }, \n {\n \"comment\": \"@ngompa According + to https://src.fedoraproject.org/rpms/pagure/tree/epel8 it should be already + backported as patch and the version running on pkgs01 is already on latest + version.\", \n \"date_created\": \"1708949413\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 897894, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @zlopez**:\\n- Issue close_status updated to: Duplicate\\n- - Issue status updated to: Closed (was: Open)\", \n \"date_created\": - \"1707836955\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 895370, \n \"notification\": true, \n \"parent\": + \"Do we override `CROSS_PROJECT_ACLS` in the deployed `pagure.cfg`? If we + do, then we need to add the ACL to that list.\", \n \"date_created\": + \"1708949790\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 897898, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", - \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n - \ }\n }\n ], \n \"content\": \"Koji seems to be down - at the moment, returning \\\"The server is offline. Please try again later.\\\". - There is no relevant outage listed at https://status.fedoraproject.org/, so - I presume this is not planned.\\r\\n\\r\\nCould someone look into it?\", \n - \ \"custom_fields\": [], \n \"date_created\": \"1707836601\", \n - \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11771\", - \n \"id\": 11771, \n \"last_updated\": \"1707836955\", \n \"milestone\": - null, \n \"priority\": 1, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": - \"Koji is down\", \n \"user\": {\n \"full_url\": \"https://pagure.io/user/omos\", - \n \"fullname\": \"Ondrej Mosn\\u00e1\\u010dek\", \n \"name\": - \"omos\", \n \"url_path\": \"user/omos\"\n }\n }, \n {\n - \ \"assignee\": null, \n \"blocks\": [], \n \"boards\": [\n - \ {\n \"board\": {\n \"active\": true, \n \"full_url\": - \"https://pagure.io/fedora-infrastructure/boards/ops\", \n \"name\": - \"ops\", \n \"status\": [\n {\n \"bg_color\": - \"#ffb300\", \n \"close\": false, \n \"close_status\": - null, \n \"default\": true, \n \"name\": \"Backlog\"\n - \ }, \n {\n \"bg_color\": \"#f4ff64\", - \n \"close\": false, \n \"close_status\": null, - \n \"default\": false, \n \"name\": \"Triaged\"\n - \ }, \n {\n \"bg_color\": \"#99d200\", - \n \"close\": false, \n \"close_status\": null, - \n \"default\": false, \n \"name\": \"In Progress\"\n - \ }, \n {\n \"bg_color\": \"#3c7bff\", - \n \"close\": false, \n \"close_status\": null, - \n \"default\": false, \n \"name\": \"In Review\"\n - \ }, \n {\n \"bg_color\": \"#15d415\", - \n \"close\": true, \n \"close_status\": \"Fixed\", - \n \"default\": false, \n \"name\": \"Done\"\n - \ }, \n {\n \"bg_color\": \"#e80909\", - \n \"close\": false, \n \"close_status\": null, - \n \"default\": false, \n \"name\": \"Blocked\"\n - \ }\n ], \n \"tag\": {\n \"tag\": - \"ops\", \n \"tag_color\": \"#3efa0e\", \n \"tag_description\": - \"ops problem now...\"\n }\n }, \n \"rank\": - 838, \n \"status\": {\n \"bg_color\": \"#ffb300\", \n - \ \"close\": false, \n \"close_status\": null, \n \"default\": - true, \n \"name\": \"Backlog\"\n }\n }\n ], - \n \"close_status\": null, \n \"closed_at\": null, \n \"closed_by\": - null, \n \"comments\": [\n {\n \"comment\": \"This sounds - like something, that should be possible to do with [FMN](https://notifications.fedoraproject.org/). - Did you tried that?\", \n \"date_created\": \"1707834623\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 895363, \n \"notification\": + \"https://pagure.io/user/ngompa\", \n \"fullname\": \"Neal Gompa\", + \n \"name\": \"ngompa\", \n \"url_path\": \"user/ngompa\"\n + \ }\n }, \n {\n \"comment\": \"We deployed + it only on staging for now and we updated both `CROSS_PROJECT_ACLS` and `USER_ACLS` + (here is the current [config](USER_ACLS)), but it's not available in web UI. + I even checked the config on server itself and the values are really there.\", + \n \"date_created\": \"1708950623\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 897903, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n }\n }, \n {\n \"comment\": - \"For item one, yeah, FMN should do it hopefully?\\r\\n\\r\\nfor item 2, you - should be able to go into settings there and there's a place to send messages - to a address I think?\\r\\nCan look for the exact place later. \\r\\n\", \n - \ \"date_created\": \"1707851287\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 895392, \n \"notification\": + \"Does the API work though?\", \n \"date_created\": \"1708950767\", + \n \"edited_on\": null, \n \"editor\": null, \n \"id\": + 897907, \n \"notification\": false, \n \"parent\": null, + \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/ngompa\", \n \"fullname\": \"Neal Gompa\", + \n \"name\": \"ngompa\", \n \"url_path\": \"user/ngompa\"\n + \ }\n }, \n {\n \"comment\": \"It's not in + the web UI because it wasn't added to the list enumerated in `pagure/api/__init__.py` + and no written description.\", \n \"date_created\": \"1708950859\", + \n \"edited_on\": \"1708951338\", \n \"editor\": {\n \"full_url\": + \"https://pagure.io/user/ngompa\", \n \"fullname\": \"Neal Gompa\", + \n \"name\": \"ngompa\", \n \"url_path\": \"user/ngompa\"\n + \ }, \n \"id\": 897908, \n \"notification\": false, + \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/ngompa\", \n \"fullname\": + \"Neal Gompa\", \n \"name\": \"ngompa\", \n \"url_path\": + \"user/ngompa\"\n }\n }, \n {\n \"comment\": + \"Compare that change to this one (written by @zlopez), where there are updates + to make it show up in the web UI: https://pagure.io/pagure/pull-request/5416\", + \n \"date_created\": \"1708951299\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 897910, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": - \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": - \"user/kevin\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @kevin**:\\n- Issue tagged with: low-gain, low-trouble, - ops\", \n \"date_created\": \"1707851288\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 895393, \n \"notification\": + {\n \"full_url\": \"https://pagure.io/user/ngompa\", \n \"fullname\": + \"Neal Gompa\", \n \"name\": \"ngompa\", \n \"url_path\": + \"user/ngompa\"\n }\n }, \n {\n \"comment\": + \"@ngompa This means that the [patch](https://src.fedoraproject.org/rpms/pagure/blob/epel8/f/user_token_pr_update_acl.patch) + needs to be updated as it only adds it to `pagure/default_config.py`.\\r\\n\\r\\nThanks + for the help!\\r\\n\\r\\n@mmassari Could you look into that?\", \n \"date_created\": + \"1708951367\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 897911, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", + \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n + \ }\n }, \n {\n \"comment\": \"Yes, sure.\\r\\nAnd + thanks to both of you for the hints!\", \n \"date_created\": \"1708951705\", + \n \"edited_on\": null, \n \"editor\": null, \n \"id\": + 897913, \n \"notification\": false, \n \"parent\": null, + \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/mmassari\", \n \"fullname\": \"Maja Massarini\", + \n \"name\": \"mmassari\", \n \"url_path\": \"user/mmassari\"\n + \ }\n }, \n {\n \"comment\": \"I gave a look + at the code you linked to me and I am not sure of understanding what you are + suggesting.\\r\\n\\r\\nIf I got it correctly @zlopez in this PR https://pagure.io/pagure/pull-request/5416 + has created new API methods and then referenced them in `pagure/api/__init__.py`.\\r\\nI + don't have created new API methods, [they already existed](https://github.com/Pagure/pagure/blob/c15e7251f70b2280e272698183c10554da02d3aa/pagure/api/fork.py#L547-L728) + and I think they are already referenced in `pagure/api/__init__.py`: https://github.com/Pagure/pagure/blob/c15e7251f70b2280e272698183c10554da02d3aa/pagure/api/__init__.py#L592-L593\\r\\n\\r\\nBut + maybe I am misunderstanding your suggestion.\", \n \"date_created\": + \"1708956182\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 897936, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/mmassari\", \n \"fullname\": \"Maja Massarini\", + \n \"name\": \"mmassari\", \n \"url_path\": \"user/mmassari\"\n + \ }\n }, \n {\n \"comment\": \"To show up in + the web UI, they need descriptions to be processed for the generated documentation.\", + \n \"date_created\": \"1708956803\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 897947, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/ngompa\", \n \"fullname\": + \"Neal Gompa\", \n \"name\": \"ngompa\", \n \"url_path\": + \"user/ngompa\"\n }\n }, \n {\n \"comment\": + \"If it is the description missing, can it be that I need to create a migration + like this one?\\r\\n\\r\\nhttps://github.com/Pagure/pagure/blob/c15e7251f70b2280e272698183c10554da02d3aa/alembic/versions/21292448a775_update_acls_descriptions.py\", + \n \"date_created\": \"1708957863\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 897948, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/mmassari\", \n \"fullname\": + \"Maja Massarini\", \n \"name\": \"mmassari\", \n \"url_path\": + \"user/mmassari\"\n }\n }, \n {\n \"comment\": + \"That's if it's a permission that you can generate a token for, yes.\", \n + \ \"date_created\": \"1708957935\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 897949, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/ngompa\", \n \"fullname\": + \"Neal Gompa\", \n \"name\": \"ngompa\", \n \"url_path\": + \"user/ngompa\"\n }\n }, \n {\n \"comment\": + \"**Metadata Update from @phsmoura**:\\n- Issue priority set to: Waiting on + Assignee (was: Needs Review)\\n- Issue tagged with: high-gain, high-trouble, + ops\", \n \"date_created\": \"1708974917\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 898056, \n \"notification\": true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": - \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": - \"user/kevin\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @kevin**:\\n- Issue priority set to: Waiting on Assignee - (was: Needs Review)\", \n \"date_created\": \"1707937839\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 895595, \n \"notification\": + {\n \"full_url\": \"https://pagure.io/user/phsmoura\", \n \"fullname\": + \"Pedro Moura\", \n \"name\": \"phsmoura\", \n \"url_path\": + \"user/phsmoura\"\n }\n }, \n {\n \"comment\": + \"Yes, I need it for a token. I will try to create the migration. Thank you + for the help.\", \n \"date_created\": \"1709019402\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 898155, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/mmassari\", \n \"fullname\": + \"Maja Massarini\", \n \"name\": \"mmassari\", \n \"url_path\": + \"user/mmassari\"\n }\n }, \n {\n \"comment\": + \"Hi again :)\\r\\n\\r\\nI was not totally sure that the migration (one similar + to the one I linked above) would have solved my problems because the strings + I see in the Web UI don't match the migration completely (as I would have + expected).\\r\\nFor this reason I decided to start a local Pagure instance + to see if I could discover something more (sorry I did not do that before + but I thought it would have been a simple change).\\r\\nNow I have this local + Pagure instance that I start with podman-compose (I am following what I found + in pagure/dev with a couple of small changes because I had a minor problem + with a jinja template) and I can see that my latest patch (the one that adds + the ACLs in the pagure.cfg file) makes the trick. I don't need anything else, + I see the ACLs popup in web ui when I add them to the config file and they + disappear when I remove them from the config file.\\r\\nFor this reason I + think I am missing something on the ansible side but I don't have any idea + about what it could be.\\r\\nWhen I remove/add the ACLs from the pagure.cfg + file I do `podman-compose down` and `podman-compose up` and this is taking + down/up more than just apache. I don't know if this explains why I see it + working locally and we can't see it working on stg.\\r\\nI also checked the + database and I can confirm that the description for `pull_request_[update|rebase]` + are already present in the `acls` table, at least in my local instance.\\r\\nMaybe + you have new suggestions for me?\\r\\n\\r\\nThanks again!\", \n \"date_created\": + \"1709202060\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 898572, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/mmassari\", \n \"fullname\": \"Maja Massarini\", + \n \"name\": \"mmassari\", \n \"url_path\": \"user/mmassari\"\n + \ }\n }, \n {\n \"comment\": \"The dev version + of Pagure has plenty of changes that the deployed version doesn't have. So + it's possible that the change you need is already in dev version, but it's + not in the deployed version in Fedora infrastructure. \\r\\nYou should try + the local setup with the version that is deployed in Fedora Infrastructure, + so you are on the same page.\\r\\n\", \n \"date_created\": \"1709287511\", + \n \"edited_on\": null, \n \"editor\": null, \n \"id\": + 898706, \n \"notification\": false, \n \"parent\": null, + \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", + \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n + \ }\n }\n ], \n \"content\": \"Packit needs `pull_request_update` + and `pull_request_rebase` ACLs (available for the API/user token) to be able + to update PRs it has already created.\\r\\nWe would like to implement this + feature: https://github.com/packit/packit/issues/2182\\r\\n\\r\\nI already + tried to work on it without success:\\r\\nhttps://pagure.io/pagure/pull-request/5436\\r\\nhttps://pagure.io/fedora-infra/ansible/pull-request/1796\\r\\n\\r\\nwith + the help of @zlopez (thank you!): [element thread](https://matrix.to/#/!JMiyDwIilrGoiSmkqy:matrix.org/$BPBoazAgWTlkSiZlRSZzRjmH77gfz3MKdO89f9_u_ec?via=fedora.im&via=libera.chat&via=matrix.org)\\r\\n\\r\\n## + Describe what you would like us to do:\\r\\nIt would be helpful having a suggestion + on what needs to be changed in order for it to work.\\r\\n\\r\\n## When do + you need this to be done by?\\r\\nWe don't have a deadline.\", \n \"custom_fields\": + [], \n \"date_created\": \"1708946965\", \n \"depends\": [], \n + \ \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11791\", + \n \"id\": 11791, \n \"last_updated\": \"1709287511\", \n \"milestone\": + null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Open\", \n \"tags\": [\n \"Needs investigation\", + \n \"high-gain\", \n \"high-trouble\", \n \"ops\"\n ], + \n \"title\": \"Add pull_request_[update|rebase] ACLs to user token\", + \n \"user\": {\n \"full_url\": \"https://pagure.io/user/mmassari\", + \n \"fullname\": \"Maja Massarini\", \n \"name\": \"mmassari\", + \n \"url_path\": \"user/mmassari\"\n }\n }, \n {\n \"assignee\": + null, \n \"blocks\": [], \n \"close_status\": null, \n \"closed_at\": + null, \n \"closed_by\": null, \n \"comments\": [\n {\n \"comment\": + \"I would like to stay in the group. Thank you!\\n\\nOn Sun, Feb 25, 2024 + at 09:06:52AM +0000, Mattia Verga wrote:\\n> \\n> mattia reported a new issue + against the project: `fedora-infrastructure` that you are following:\\n> ``\\n> + # Describe what you would like us to do:\\n> On 2024/02/20 the script for + the Inactive provenpackagers policy was run with the following output:\\n> + \\n> Checked 130 provenpackagers\\n> The following 12 provenpackagers have + not submitted a Koji build since at least 2023-08-15 00:00:00:\\n> @puiterwijk + \\n> @rdieter \\n> @mbooth \\n> ~~xvitaly~~\\n> @bowlofeggs \\n> @caolanm + \\n> @tibbs \\n> ~~hadess~~\\n> ~~hguemar~~\\n> @law \\n> ~~wtogami~~\\n> + @steve \\n> \\n> I've already striked out those who replied by email. User + `law` agreed to be removed from provenpackagers.\\n> I'm trying to reach out + other users by tagging them here. No action should be performed before 2024/03/06, + I'll post the final list here.\\n> \\n> # When do you need this to be done + by? (YYYY/MM/DD)\\n> 2024/03/07\\n> \\n> ``\\n> \\n> To reply, visit the link + below or just reply to this email\\n> https://pagure.io/fedora-infrastructure/issue/11790\\n\", + \n \"date_created\": \"1708876317\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 897761, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/steve\", \n \"fullname\": + \"Steven Pritchard\", \n \"name\": \"steve\", \n \"url_path\": + \"user/steve\"\n }\n }, \n {\n \"comment\": + \"**Metadata Update from @zlopez**:\\n- Issue tagged with: high-gain, low-trouble\", + \n \"date_created\": \"1708947721\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 897882, \n \"notification\": true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": - \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": - \"user/kevin\"\n }\n }\n ], \n \"content\": \"# - Describe what you would like us to do:\\r\\nI need to configure pagure.io/fedora-server - to send a notification\\r\\n\\r\\n1. to my fedoraproject account (pboy@fedoraproject.org) - when anything changes in the repo\\r\\n2. to server@lists.fedoraproject.org - when either an issue or a pr is created or modified.\\r\\n\\r\\nUnfortunately - I can't manage to get this working.\\r\\n\\r\\n# When do you need this to - be done by? (YYYY/MM/DD)\\r\\n\\r\\nIt is not that urgent, but would greatly - improve and support the Fedora Server Edition working group.\\r\\n\\r\\n\", - \n \"custom_fields\": [], \n \"date_created\": \"1707834078\", \n - \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11770\", - \n \"id\": 11770, \n \"last_updated\": \"1707937839\", \n \"milestone\": + {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": + \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": + \"user/zlopez\"\n }\n }, \n {\n \"comment\": + \"**Metadata Update from @phsmoura**:\\n- Issue priority set to: Waiting on + Assignee (was: Needs Review)\", \n \"date_created\": \"1708974497\", + \n \"edited_on\": null, \n \"editor\": null, \n \"id\": + 898055, \n \"notification\": true, \n \"parent\": null, + \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/phsmoura\", \n \"fullname\": \"Pedro Moura\", + \n \"name\": \"phsmoura\", \n \"url_path\": \"user/phsmoura\"\n + \ }\n }\n ], \n \"content\": \"# Describe what you + would like us to do:\\r\\nOn 2024/02/20 the script for the Inactive provenpackagers + policy was run with the following output:\\r\\n\\r\\nChecked 130 provenpackagers\\r\\nThe + following 12 provenpackagers have not submitted a Koji build since at least + 2023-08-15 00:00:00:\\r\\n@puiterwijk \\r\\n@rdieter \\r\\n@mbooth \\r\\n~~xvitaly~~\\r\\n@bowlofeggs + \\r\\n@caolanm \\r\\n~~tibbs~~\\r\\n~~hadess~~\\r\\n~~hguemar~~\\r\\n@law + \\r\\n~~wtogami~~\\r\\n~~steve~~\\r\\n\\r\\nI've already striked out those + who replied by email. User `law` agreed to be removed from provenpackagers.\\r\\nI'm + trying to reach out other users by tagging them here. No action should be + performed before 2024/03/06, I'll post the final list here.\\r\\n\\r\\n# When + do you need this to be done by? (YYYY/MM/DD)\\r\\n2024/03/07\\r\\n\", \n \"custom_fields\": + [], \n \"date_created\": \"1708852012\", \n \"depends\": [], \n + \ \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11790\", + \n \"id\": 11790, \n \"last_updated\": \"1709018641\", \n \"milestone\": null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Open\", \n \"tags\": [\n \"low-gain\", - \n \"low-trouble\", \n \"ops\"\n ], \n \"title\": - \"Need help to setup notification in Fedora Server pagure repo\", \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/pboy\", \n \"fullname\": - \"Peter Boy\", \n \"name\": \"pboy\", \n \"url_path\": \"user/pboy\"\n + [], \n \"status\": \"Open\", \n \"tags\": [\n \"high-gain\", + \n \"low-trouble\"\n ], \n \"title\": \"Inactive provenpackagers + for the F40 development cycle\", \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/mattia\", \n \"fullname\": \"Mattia Verga\", + \n \"name\": \"mattia\", \n \"url_path\": \"user/mattia\"\n \ }\n }, \n {\n \"assignee\": null, \n \"blocks\": [], - \n \"close_status\": \"Invalid\", \n \"closed_at\": \"1707834402\", + \n \"close_status\": \"Upstream\", \n \"closed_at\": \"1708947938\", \n \"closed_by\": {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n }, \n \"comments\": - [\n {\n \"comment\": \"**Metadata Update from @zlopez**:\\n- - Issue priority set to: None (was: Needs Review)\\n- Issue tagged with: high-gain, - medium-trouble, ops\", \n \"date_created\": \"1707834265\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 895357, \n \"notification\": - true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": - \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": - \"user/zlopez\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @zlopez**:\\n- Issue **un**tagged with: high-gain, - medium-trouble, ops\", \n \"date_created\": \"1707834327\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 895359, \n \"notification\": - true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + [\n {\n \"comment\": \"This would be better to open on https://pagure.io/releng/issues/\", + \n \"date_created\": \"1708947939\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 897885, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n }\n }, \n {\n \"comment\": - \"This was announced on mailing list https://lists.fedoraproject.org/archives/list/devel-announce@lists.fedoraproject.org/thread/HS7STPGZ6CHAGI4TDHPI5MGKAGMI77JQ/ - it is part of Fedora 40 mass branching.\", \n \"date_created\": \"1707834411\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 895360, \n \"notification\": false, \n \"parent\": null, - \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", - \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n - \ }\n }, \n {\n \"comment\": \"**Metadata Update - from @zlopez**:\\n- Issue close_status updated to: Invalid\\n- Issue status - updated to: Closed (was: Open)\", \n \"date_created\": \"1707834412\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 895361, \n \"notification\": true, \n \"parent\": null, - \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"**Metadata Update from @zlopez**:\\n- Issue close_status updated to: Upstream\\n- + Issue status updated to: Closed (was: Open)\", \n \"date_created\": + \"1708947940\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 897886, \n \"notification\": true, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n - \ }\n }\n ], \n \"content\": \"https://koji.fedoraproject.org/ - reports \\\"The server is offline. Please try again later.\\\"\\r\\n[![Screenshot_from_2024-02-13_08-44-53.png](/fedora-infrastructure/issue/raw/files/26db0de67fd51573cefc9918a5f817a0398b65762da92cefa47638c504bc15cb-Screenshot_from_2024-02-13_08-44-53.png)](/fedora-infrastructure/issue/raw/files/26db0de67fd51573cefc9918a5f817a0398b65762da92cefa47638c504bc15cb-Screenshot_from_2024-02-13_08-44-53.png)\\r\\n\", - \n \"custom_fields\": [], \n \"date_created\": \"1707831912\", \n - \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11769\", - \n \"id\": 11769, \n \"last_updated\": \"1707834412\", \n \"milestone\": - null, \n \"priority\": 0, \n \"private\": false, \n \"related_prs\": + \ }\n }\n ], \n \"content\": \"The [fedora](https://registry.fedoraproject.org/repo/fedora/tags/) + and [fedora-minimal](https://registry.fedoraproject.org/repo/fedora-minimal/tags/) + container repositories have images that are tagged \\\"latest\\\" and \\\"rawhide\\\".\\r\\n\\r\\nIt + would be useful to add a \\\"branched\\\" tag (or similar), which refers to + the image for the Branched release. Currently, the tag for its release number + (\\\"40\\\") must be used instead. This would allow CI pipelines to automatically + run jobs for Branched, without needing to update the tag used each release + cycle.\", \n \"custom_fields\": [], \n \"date_created\": \"1708826594\", + \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11789\", + \n \"id\": 11789, \n \"last_updated\": \"1708947940\", \n \"milestone\": + null, \n \"priority\": 1, \n \"private\": false, \n \"related_prs\": [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": - \"Koji for Fedora is down\", \n \"user\": {\n \"full_url\": \"https://pagure.io/user/trn\", - \n \"fullname\": \"Jeffrey H. Johnson\", \n \"name\": \"trn\", - \n \"url_path\": \"user/trn\"\n }\n }, \n {\n \"assignee\": - null, \n \"blocks\": [], \n \"boards\": [\n {\n \"board\": - {\n \"active\": true, \n \"full_url\": \"https://pagure.io/fedora-infrastructure/boards/ops\", + \"Enhancement: add tag to container repositories for Branched\", \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/dpward\", \n \"fullname\": + \"David Ward\", \n \"name\": \"dpward\", \n \"url_path\": \"user/dpward\"\n + \ }\n }, \n {\n \"assignee\": null, \n \"blocks\": [], + \n \"boards\": [\n {\n \"board\": {\n \"active\": + true, \n \"full_url\": \"https://pagure.io/fedora-infrastructure/boards/ops\", \n \"name\": \"ops\", \n \"status\": [\n {\n \ \"bg_color\": \"#ffb300\", \n \"close\": false, \n \"close_status\": null, \n \"default\": true, @@ -1085,495 +1281,291 @@ interactions: \n \"name\": \"Blocked\"\n }\n ], \n \ \"tag\": {\n \"tag\": \"ops\", \n \"tag_color\": \"#3efa0e\", \n \"tag_description\": \"ops problem now...\"\n - \ }\n }, \n \"rank\": 838, \n \"status\": + \ }\n }, \n \"rank\": 846, \n \"status\": {\n \"bg_color\": \"#ffb300\", \n \"close\": false, \n \"close_status\": null, \n \"default\": true, \n \ \"name\": \"Backlog\"\n }\n }\n ], \n \"close_status\": - \"Fixed\", \n \"closed_at\": \"1708530448\", \n \"closed_by\": {\n + \"Fixed\", \n \"closed_at\": \"1709067250\", \n \"closed_by\": {\n \ \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }, \n \"comments\": [\n {\n \"comment\": \"Can - you please attach the bounce message you got back with all headers? \\r\\n\", - \n \"date_created\": \"1707668900\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 895125, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": - \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": - \"user/kevin\"\n }\n }, \n {\n \"comment\": - \"Unfortunately, I don't get meaningful bounce messages with my mail providers - - the bounce mail only contains the message \\\"Your message couldn't be delivered - to chkr@fedoraproject.org because the remote server is misconfigured. See - technical details below for more information. The response from the remote - server was:\\r\\n554 5.7.1 : Relay access denied\\\". - No headers related to delivery attempts.\\r\\n\\r\\nI see the problem with - two different mail providers (both provide only high-level information in - the bounce mails.\\r\\n\\r\\nCould you try to send me an email to see if you - get a proper bounce message with your mail provider?\", \n \"date_created\": - \"1707675077\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 895137, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/chkr\", \n \"fullname\": \"Christian Krause\", - \n \"name\": \"chkr\", \n \"url_path\": \"user/chkr\"\n - \ }\n }, \n {\n \"comment\": \"Yeah, I see - the problem now. I have filed a internal ticket to ask them to restore the - relay permission. \\r\\n\\r\\nThis is affecting all @fedoraproject.org addresses. - ;( \\r\\n\\r\\nWould you mind if I make this ticket public? Or I guess I can - file another one, but I am sure others will start seeing this soon too. ;( - \\r\\n\", \n \"date_created\": \"1707675519\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 895138, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": - \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": - \"user/kevin\"\n }\n }, \n {\n \"comment\": - \"Thanks for checking!\\r\\n\\r\\nYes, you can make it public - there are - no other private information besides the fpo address (which is already public).\", - \n \"date_created\": \"1707675724\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 895140, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/chkr\", \n \"fullname\": - \"Christian Krause\", \n \"name\": \"chkr\", \n \"url_path\": - \"user/chkr\"\n }\n }, \n {\n \"comment\": - \"Thanks\", \n \"date_created\": \"1707676314\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 895143, \n \"notification\": + \ }, \n \"comments\": [\n {\n \"comment\": \"> I'm + not sure if these users were purged from packager as part of a previous non-responsive + maintainer process (directly or the scheduled one that Mattia runs), but they + should be removed from the go-sig in any case.\\r\\n\\r\\nOkay, it seems neither + user is a member of the packager group. We should probably consider removing + users from any distgit groups that require packager access as part of the + non-responsive maintainer process to prevent issues like these. \", \n \"date_created\": + \"1708757133\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 897700, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/gotmax23\", \n \"fullname\": \"Maxwell + G\", \n \"name\": \"gotmax23\", \n \"url_path\": \"user/gotmax23\"\n + \ }\n }, \n {\n \"comment\": \"Yeah, currently + group membership is updated on login... when people don't login, no update. + ;( \\r\\n\\r\\nThere is a way to adjust this via api now: https://pagure.io/pagure/c/1b7d305 + but I am not sure if there's been a release with it. we may need to backport + it. \\r\\n\\r\\nBut yeah, we should remove people when they are removed from + packager. ;( \\r\\n\", \n \"date_created\": \"1708813466\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 897741, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @kevin**:\\n- Issue private status set to: False - (was: True)\", \n \"date_created\": \"1707676315\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 895144, \n \"notification\": - true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": - \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": - \"user/kevin\"\n }\n }, \n {\n \"comment\": - \"Also affecting group aliases: I got this bounce when mailing to `neuro-sig-members@fedoraproject.org`: - \\r\\n\\r\\n\\r\\n```\\r\\nFrom Mon Feb 12 10:26:48 2024\\r\\nDelivered-To: - _removed_my_email_\\r\\nReceived: by 2002:a05:6f02:6483:b0:62:2411:169b with - SMTP id q3csp2467224rce;\\r\\n Mon, 12 Feb 2024 02:26:48 -0800 (PST)\\r\\nX-Received: - by 2002:a05:6512:556:b0:511:5548:ad01 with SMTP id h22-20020a056512055600b005115548ad01mr3892885lfl.44.1707733607786;\\r\\n - \ Mon, 12 Feb 2024 02:26:47 -0800 (PST)\\r\\nARC-Seal: i=1; a=rsa-sha256; - t=1707733607; cv=none;\\r\\n d=google.com; s=arc-20160816;\\r\\n b=NCiGIIYu12ar8DjoCPBa7zAUDYFy6pPi/+1brmgrEBQBCOxlfT2RlxVmPD90HwT5ru\\r\\n - \ NGTTzGMFd88UbgaE+cJx2FrbOjR0D8AAB1UxaQ++B7dprFeWn87bN2Ur9qD4k6w3afx3\\r\\n - \ +/MV5k9ONZRv7PSNCN/iUQAZ2s/j9VX0Mx+Nmz4jz0NCwg5+PZwaSnuQtPUqHSFitBEE\\r\\n - \ H4sFJ85dud8RVOypyqcDTwRKt0H9sjwaqaic7a515NodYbQ26gMYX4Dnr9YqWe2cSTCl\\r\\n - \ UNDtkORMT1cR2YKgHAPxsUDq9Dh7o+OokIrLlSODhgJyaJscEdRH9mrpaKZ6TJdBE1Sx\\r\\n - \ datg==\\r\\nARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; - d=google.com; s=arc-20160816;\\r\\n h=in-reply-to:references:subject:from:date:message-id:auto-submitted\\r\\n - \ :to:dkim-signature;\\r\\n bh=30gFJzUqLZehsSFyBpCXyV/7SdxN/uf3LjjhDcVQNdE=;\\r\\n - \ fh=LTGiPm3M9iwHXVYiG2vaGT9gkG57njXuNqH1JFtR/v8=;\\r\\n b=tzrFJqByLaySXxdZLyaiiPOEDQnseT0QI9d6hpeWieblCdQ9jAOWkSm0TkALglnne1\\r\\n - \ TNK+nKp3UTAz6Dsn/v9ClPHUqp/OxhEGyVJP6b+QlaMUV6sXmL5WGBJMe3AVAlilLTW6\\r\\n - \ ZTv8TROVxRM98iZhjfyieFHucLC+OZTS0nHqd1Y3QvIwyLdYNspQW7gfsnvVpaf8wDrU\\r\\n - \ 8AAZ3/f/k884t9z2QnBIZ9VnKlniojwxFpAu6V7buf7T4YsWgwx0SdsXeOFxmBeKEa89\\r\\n - \ jelB5Yghxo/Qwpja9KJ9yKYwifOhOr7mkB4lRv1zM11nuetGS6JXcKvEshalPkyQD/eZ\\r\\n - \ gmpg==;\\r\\n dara=google.com\\r\\nARC-Authentication-Results: - i=1; mx.google.com;\\r\\n dkim=pass header.i=@googlemail.com header.s=20230601 - header.b=LUPoZ+4Q;\\r\\n spf=none (google.com: mail-sor-f69.google.com - does not designate permitted sender hosts) smtp.helo=mail-sor-f69.google.com;\\r\\n - \ dmarc=pass (p=QUARANTINE sp=QUARANTINE dis=NONE) header.from=googlemail.com\\r\\nReturn-Path: - <>\\r\\nReceived: from mail-sor-f69.google.com (mail-sor-f69.google.com. [209.85.220.69])\\r\\n - \ by mx.google.com with SMTPS id l10-20020a05600c1d0a00b0040fc8ecdf5asor1669125wms.11.2024.02.12.02.26.47\\r\\n - \ for <_removed_my_email_>\\r\\n (Google Transport Security);\\r\\n - \ Mon, 12 Feb 2024 02:26:47 -0800 (PST)\\r\\nReceived-SPF: none (google.com: - mail-sor-f69.google.com does not designate permitted sender hosts) client-ip=209.85.220.69;\\r\\nAuthentication-Results: - mx.google.com;\\r\\n dkim=pass header.i=@googlemail.com header.s=20230601 - header.b=LUPoZ+4Q;\\r\\n spf=none (google.com: mail-sor-f69.google.com - does not designate permitted sender hosts) smtp.helo=mail-sor-f69.google.com;\\r\\n - \ dmarc=pass (p=QUARANTINE sp=QUARANTINE dis=NONE) header.from=googlemail.com\\r\\nDKIM-Signature: - v=1; a=rsa-sha256; c=relaxed/relaxed;\\r\\n d=googlemail.com; s=20230601; - t=1707733607; x=1708338407; dara=google.com;\\r\\n h=in-reply-to:references:subject:from:date:message-id:auto-submitted\\r\\n - \ :to:from:to:cc:subject:date:message-id:reply-to;\\r\\n bh=30gFJzUqLZehsSFyBpCXyV/7SdxN/uf3LjjhDcVQNdE=;\\r\\n - \ b=LUPoZ+4QWfjv7nAaby81/6msxfxWWI8uqkoUldbS3xJa8S51XoRuOljj5epSAfokw3\\r\\n - \ EoFMGyUluwk+t+llMTWv8ZuQDsr/OB2K6XCTbwiRIDEt/Ncxsabx/tiOQ7ugMCONF0th\\r\\n - \ F4+Gokj6mGA2zFypvteekC7Fv6nBWRDOhTRKiftqbDEowbF28rNeP9ZNUv/7B5MXAAaj\\r\\n - \ jS+Mtv6co3a+ATAF+YE6oiSA//q+H7IInUw6Enz05e6h8IfwJiEOWBTNFkIIyA92bqGq\\r\\n - \ RfbOeE6cHmlz17OmZ2OH9Y2E2jxWX7BZqD/yqz9czIFoPpNCHrjmjasfIZwGnbFM6lN2\\r\\n - \ CJyQ==\\r\\nX-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;\\r\\n - \ d=1e100.net; s=20230601; t=1707733607; x=1708338407;\\r\\n h=in-reply-to:references:subject:from:date:message-id:auto-submitted\\r\\n - \ :to:x-gm-message-state:from:to:cc:subject:date:message-id:reply-to;\\r\\n - \ bh=30gFJzUqLZehsSFyBpCXyV/7SdxN/uf3LjjhDcVQNdE=;\\r\\n b=bU6BF12atNAQVLsjgDDGL9DlCy9D1XxdQlE7jymvLIOVb7agof8N0bRNeSVf2YUw48\\r\\n - \ Epg1LVBCHfX/m3Vm5YfezwVD3n0peAjoVsnb1A2siFO+Hbns3d/JhwzF6JA/ZA03aMMz\\r\\n - \ INs9938IuxvKJ29ciDwgE9ZaKLU1ztgR4W0N0dAWoouzFwI2fZBigd3fIeuDmlOXc187\\r\\n - \ k9akXNB4JWwepeWZfdI6YkinTmzIAv0++c6cOIPk8k+c7IfGI0ax6clP/H8ur3SiXUwO\\r\\n - \ O/L1LG2qbnFW+Qkwpb3dSuX+IV00TsYRJPDFA0Mf2rYo+iliiZFoi4cOA3OHsIjJbBta\\r\\n - \ cPKQ==\\r\\nX-Gm-Message-State: AOJu0YzSQftmRIEsJztlNUoX7vjrYc/S9CpimbK3uEEEWCYLu9Va9uRX\\r\\n\\tJSScFaCa9J8EZg4XF1mkq+o2d5gTgIM9F8vcssPzvO3y11fEjKhVqof9PVAquAoeiA+kEsKa8Du\\r\\n\\tFCKZ5fIlUFc7dJm65QbplEZYTpiaHIqu2ziGXteGcwniIVA2P89CC6Q==\\r\\nX-Google-Smtp-Source: - AGHT+IFmBeNnblKQdxgptJzAnbYo+I72qrPXYCo8KdO6JXfA0kwjgIZ6c8Nu7yEGgHD/ISDRUZEXxHDniAdlIqqp2Af42EbUaGHGYxE=\\r\\nX-Received: - by 2002:a05:600c:4e8f:b0:40f:e60f:438e with SMTP id f15-20020a05600c4e8f00b0040fe60f438emr5221101wmq.8.1707733607670;\\r\\n - \ Mon, 12 Feb 2024 02:26:47 -0800 (PST)\\r\\nContent-Type: multipart/report; - boundary=\\\"0000000000000e4fe006112cb7d3\\\"; report-type=delivery-status\\r\\nTo: - _removed_my_email_\\r\\nReceived: by 2002:a05:600c:4e8f:b0:40f:e60f:438e with - SMTP id\\r\\n f15-20020a05600c4e8f00b0040fe60f438emr4230765wmq.8; Mon, 12 - Feb 2024 02:26:47\\r\\n -0800 (PST)\\r\\nReturn-Path: <>\\r\\nAuto-Submitted: - auto-replied\\r\\nMessage-ID: <65c9f267.050a0220.5c37e.9def.GMR@mx.google.com>\\r\\nDate: - Mon, 12 Feb 2024 02:26:47 -0800 (PST)\\r\\nFrom: Mail Delivery Subsystem \\r\\nSubject: - Delivery Status Notification (Failure)\\r\\nReferences: <7sy2756cjo7e2bftnmbisoe7mo5ha3acajnjb2tld37wph4bno@7sa4xuy2vw2g>\\r\\nIn-Reply-To: - <7sy2756cjo7e2bftnmbisoe7mo5ha3acajnjb2tld37wph4bno@7sa4xuy2vw2g>\\r\\nX-Failed-Recipients: - neuro-sig-members@fedoraproject.org\\r\\n\\r\\n--0000000000000e4fe006112cb7d3\\r\\nContent-Type: - multipart/related; boundary=\\\"0000000000000e5e5f06112cb7e0\\\"\\r\\n\\r\\n--0000000000000e5e5f06112cb7e0\\r\\nContent-Type: - multipart/alternative; boundary=\\\"0000000000000e5e6506112cb7e1\\\"\\r\\n\\r\\n--0000000000000e5e6506112cb7e1\\r\\nContent-Type: - text/plain; charset=\\\"UTF-8\\\"\\r\\n\\r\\n\\r\\n** Message not delivered - **\\r\\n\\r\\nYour message couldn't be delivered to neuro-sig-members@fedoraproject.org - because the remote server is misconfigured. See the technical details below - for more information.\\r\\n\\r\\n\\r\\n\\r\\nThe response from the remote - server was:\\r\\n554 5.7.1 : Relay access - denied\\r\\n\\r\\n--0000000000000e5e6506112cb7e1\\r\\nContent-Type: text/html; - charset=\\\"UTF-8\\\"\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n
\\r\\n\\r\\n\\r\\n
\\r\\n\\\"Error\\r\\n\\r\\n\\r\\n\\r\\n

\\r\\nMessage - not delivered\\r\\n

\\r\\nYour - message couldn't be delivered to neuro-sig-members@fedoraproject.org - because the remote server is misconfigured. See the technical details below - for more information.\\r\\n
\\r\\n
\\r\\n
\\r\\nThe response from - the remote server was:
\\r\\n

\\r\\n554 - 5.7.1 : Relay access denied\\r\\n

\\r\\n
\\r\\n\\r\\n\\r\\n\\r\\n--0000000000000e5e6506112cb7e1--\\r\\n\\r\\n--0000000000000e5e5f06112cb7e0\\r\\nContent-Type: - image/png; name=\\\"icon.png\\\"\\r\\nContent-Disposition: attachment; filename=\\\"icon.png\\\"\\r\\nContent-Transfer-Encoding: - base64\\r\\nContent-ID: \\r\\n\\r\\niVBORw0KGgoAAAANSUhEUgAAAJAAAACQCAYAAADnRuK4AAAAAXNSR0IArs4c6QAAFi1JREFUeAHt\\r\\nXUmMHVcVrfo9eYgUWDBsEsAxCQQFFCkSzsQgBQeMQGIBScSwYFoghg0CNoAlhgWjWLBhB0gMYsEO\\r\\nZ7AgQOwECRRCxBBwOwwLIGwwsdPt7v9/cc6571ZVO2771++q/6uq37N/1Xt3elX3nn9fVfXt6iSJ\\r\\nLXogeiB6IHogeiB6IHogeiB6IHogeiB6IHogeiB6IHogeiB6IHogeiB6IHogeiB6IHogeiB6IHog\\r\\neiB6IHogeiB6IHogeiB6IHogeiB6IHogeiB6IHqgux5Iu3vozRx5dvTo4PRD9909TrIjmOF6zZIm\\r\\nvx9k6bEDt935g/To0XEzM3fTagRQKW6n7rz19dl49M0ky15eIhfdNP1jspB86KX3PvJgQdzdvQig\\r\\nEP9Thw/dlWXZd5IsWb4kJNJkI03T9xy8/5EfXlJulzAjgBBogicZZ9/PkmQif0AoSwbpPRFEEzqs\\r\\nz1+m00duedF4Y/QYwHNllfMEiM4MlhdedeAnJ/9WRa9vsoO+nVCV8+EFM8Dz3arg4RzUkS5sVJmz\\r\\nb7K7+uRXT9z3AQDh9mmDSt3Vk8feP61+H/QmWvP7cKIXnsPqHXdcOU7P/gV3XM+7kFdpnKb/GWRX\\r\\nvPSa48fPVNLrifCuzUDjwdNHdwweggAAlK2eAKLqaezKDHT6jbdeNxoOH4ezlqo6bBv5zYXFxRsO\\r\\n3HviiW34vSXvygw0Ho2+jojWBR6CYynY7C1QtjuxXQeg1TtueTMeGL5pO4dMS6dN2p5Wv6t6uwpA\\r\\n2Qc/uJQlo682FSza5hxN2W+j3V0FoNXTj38Mt97XNRUI2uYcTdlvo91dcxF96vAtz0/Goz8jyJWe\\r\\nOFcNGhx6JhksXHvw/pNPVdXtovyuyUBZNv5i0+AhADgH5+oiGKY55l2Rgf76pptvHA7Hv87wI9Bp\\r\\nnFRVJ02T8eLi4KYXH3v40aq6XZOfiUPn7ZTh5vgbswIPz5Vzcc55n/cs5u89gFbfcPM9WFam/nnX\\r\\ntEHgnJx7Wv2u6PV6CfvH22/ee/6/4yeQEa6aR0CwlP1j5TmD66760cNr85h/FnP2OgOt/3f8qXmB\\r\\nh8Hj3DyGWQRyXnP0NgOt3nHb1Vky/FOWZHvn5VzOmybpWposvuya4w/9fZ7H0dTcvc1A43T4lXmD\\r\\nh0HjMWTp8MtNBXDednuZgU7feevto9HwF/N2bnn+hYXF1xy478Qvy7Q+9HuXgVimOhqNWncLzWPi\\r\\nsfUBNOVz6N0JWYlpdmP5JNvRz27sY/lrr5aw2spUm0JcD8tfe5WBxsnZz9ZSptoUgFj+ymPsUetN\\r\\nBmqgTLWpMPeq/LU3GaiBMtWmAMTy1681ZXzWdnsBoKbKVJsKBspfj/Sl/LXzAGq6TLUxEPWk/LXz\\r\\nAFp98rGP4iffjZWpNgcglL/i2JuyPyu7nb6InlWZalPBgPM7X/7a6Qw0qzLVpgCEzNn58tfOZqBZ\\r\\nl6k2BaKul792NgPNuky1KQB1vfy1kwA6dfjVd7NktKmgztouz4XnNOt565ivc0vYvMtU63D6xWx0\\r\\ntfy1cxlo3mWqFwt+HbSulr92KgM1WaZ68IFHKuHg96+/KVlZXKykcznhLpa/dioDsTS0DWWqBMLZ\\r\\nzfVkczS8HCYq8btY/toZALFMFT9DekeliDQpjDXnf5vnk426QYRz5Lk2eeh12u4EgNpZporVf4zq\\r\\nHoBoczSqMyZJl8pfOwGgNpapYrnhr+ygfi1LnsZyVm8m6k75a+sBxDLVJEs/V+tXvA5jeHiTN4Do\\r\\n7OZGvSDCOevc80na2Wk9gFgCim/581vnPqxghqGAJIJoiOVsXM9yxnPuQvlrqwHEMlWE6cOtA8+W\\r\\nA/InIQAS/hDU2Y36QMRzNx9smbBVg1YDKJR+tvidgwBNSED6syPCUpac26jtFr/15a+tBVAoU+Uf\\r\\nfWtl87yz5eAIJmEqTc4NN2p5ToSlrNXlr60EUBfKVC3xAEZpnoIMS0QWrof4eWa4mWyMd/6wsc1v\\r\\nf20lgLpTpkqgADH86LY+ZCCSwBrjOdEzm5s7vrCGqdaWv7YOQCpTzZJP29e5vVtCRk0dAkn/sePz\\r\\nISSmsEmZiXCLv+OHjfCJfBOmbcuudQBKsvEXEItGX8Vbh/NxjGhACTs5WAicQAMdjxn1oFHL2Qgg\\r\\n2sEtvnwC32jaFm1aBSCWqSIi722RfyY7FESXONKHaxcxJBxhA0CRjj+pmawzE2FZm75l7zUfTW+h\\r\\nbs1WAahLZar8MYZBxkLCa2ktWx4hoYbLmS1pRNUY4Frbwc/OoN66t7+2BkBdK1PltY5SDXHELBPw\\r\\n5CCyvZiWgXJgIRONpr+wxqytKn9tBYBYpgovf8l93IW9ZSDkIGUaYMiXLlu7AmhymOGUIEg8sYdl\\r\\nbB23+FNfE8FX8pmZm+u2FQBaP5N9Ev6/aq6eqDq5JRdp4WGfspBhhKDBuMBLYRk0vyaizjoeNg5H\\r\\n1a+J6Cv6rDA8v97cAcQy1XScfGJ+LphyZoKGIMFaFRKLMowwAgqXMPbZtA9rG4FDHaqTsYa7s9EU\\r\\nF9b0GX2nCea4mTuA2lSmWj0OQACRIEBY5vGLawGEQHKjBAwGPg54gjp+doZMNKp4i4/ZWvH217kC\\r\\nqHVlqh7sSfdEAREhEHFvijlsiC8ShRYOgkBQobL+gbw2HCbDqiBqQfnr3ADUzjJVA8Ak2xwKxIVw\\r\\nxA1v2gWZkgnQHTiedsC1rkkbBnlNRBBVuyaad/nr3AC0+tC974NnW/g21VLsL9Fl0NWIm4AmwkcJ\\r\\nxxkceBNKMDC0iMonRPxXSGXJBu7OqoEI5a/ypU80233uh1lOy1LNLD37Z6z/rak0PIcHfOdQDJY3\\r\\nLUvmHndS/mMKEPxCeKCsw6xhYKA+v5UGCtCELvLQ3JBkA5bQt28xjUJLuzTZg985WxgsUOuyDcfy\\r\\nVJpdce01x4+fuaxwzQJzyUBtLFPdv7SS8JO30nLjNF7wEhp6toy+L0NFCiEnLGFiUj6ghjtTNwr6\\r\\nHLLZPjBJhyyL9EfZZMsZv4jzKn8NZ2cnMott29+myizEbMRwDgSHMbaFm5R5xLPAi4fMUciUeiUQ\\r\\nFngq8WXX4EM0+reZFM7DWVcWl5KF1DkgbN/m8vbXiY5s+2Ouzml7mer+5ZCJmAkEI4Qx4Ich1cqG\\r\\n0xZkGGTx7DrGQh4AQRkIW9bSwJYnWmX2kg3OYMa5elGTH9mRbpKcn/yaaC7lrzMF0OobXn0Ezmtt\\r\\nmSpip0YQXbGy7EOLKkeINQHjIGK02Q8sDC38AVWWRQwfUqasA8+0aM8MSJddG0qedjjkr1BPcmFN\\r\\n39LHbnsW+5kBSGWqWdKZ9yPvX9oTrolCRIWcAB6ByKONfUBRjhVHVc4KNggL8FyTiMz0U1gygrZA\\r\\n4xKAG22AvYHffh253UsgAyJfo68vIVIra2YA6k6ZauFfLWfLeywpMPCIsYWZnRBwiocuA11uGaMv\\r\\nXmnpo2pJqNwXVDCPLYXkmDAhh2IQ3OLjwvoyz4kw43WnnvzdR0pTNNrdevwNTdX1t6nyd73W8OMG\\r\\n+4k7XEakBM9pBRpYyI2IYPOiNweCwcpv+1PIsvECnYbI5bdYJkOWIziVecCwb7jp+JXWMm/xL3Fh\\r\\nDemZvf3Vjg8n0GjrSJnqdj64AtdE+xbtFl9wCIFWWD3oUPYAa0kD3TIQpCz+Ms+uDS2vSJ0bdWCd\\r\\nXUr6Hl2DGYnWbDnb/hYfVvDr4LMpf9Wx+oE1se/L21TpG97es0BeWacUYGYXa0ZkPuKdljILScSF\\r\\nZMDBgAuSeNgb6IK2ywRrBCsTFvecQTZoC/0MsssLC9tmIrDHi4uDm1587OFHId5YazwDdalM9XJe\\r\\ntoeNuDsjKCDMwLJp7xvsdZsuMFCOoKE0G8ATLpopnpPJ4oBEAI8f53OYa7MfxAi8S2Ui4pe+p+km\\r\\nW6MAOnX40F0459ubPIFZ296Hp9V78GGArYWIamChFjACCAw0xSKk23ZX5t7RQX329SHsiiZxB550\\r\\nmOFM4pIgUvnrobsKS/X3ysdZq/WuvU216jsSH7n1FcoYlkWYZcx9eegNRSUgcNkqFiz1ICM1bgCM\\r\\nfJkj+MCzZY508rEBwZdDA5XQJNBtt5xhhr+vPDd92VU/enit1gAHY41loE6WqVb0sAfc1ASFosu1\\r\\nB812xrM8ZPQS4grwBFZILtL3ayYJuc1gWMASuPw50bMvrDHn1U2WvzYCoM6WqSpkVTaMuEedey4t\\r\\nBA0ziBIDNhZhbi3fYCsSBYM6COxaOrLnQKZFGfQEHOwhR7qadMgjWdrbXhOx/PXU4dc0UnPeCICy\\r\\nZPgluHCvn2sf9wqkkJCH1ACBkyVZVMWVgDAWM5D6Fm8TcgJoQVzuchH3naaijMtzHqEHNAoHBT1s\\r\\nvOCn+IrFeOPLbqvOfe0AUplqkjV64VanA6a1pZgxcgwoGq9ZlHV8HHjKGSG4RJZ3hTJFHsrQMdDR\\r\\nhhnwrQBD+5yKRBpAh5Z4IS2Lpqw+l9WLXVhD+q4m3v5aK4C6XqaK0FRqCrIjAhHWk2qMLbAGFrId\\r\\nBOIj8HYnJiTYfMGGZShuQYBxWQg8YsTxRiX1SaNgYHBePUIA9WIgaqL8tVYAdb1M1aJZYcuoWrgB\\r\\nCoYbH1yPKPBgkWsh9h6G1hVH/YAjYsBYQRaEPBsJPaaSS0FM8wQk+ZzMTtvf4tdf/lobgPRG0TT5\\r\\nvJ/mrth78BBMe3iIoDILEAriWbhDEoFLSCeL0WegNdQYFO0tCwXvBRscKSuxwwvmQNc8sKM7NdgU\\r\\niMgzYzLOTDQuXxMhRnW+/bU2ACXp2c/Aia2pcaavZ9IYLLQ8ZspARrElJQi4EIYKNMdoDHvoCAiC\\r\\ngWTAY+YhG6AIUugbTRgSVgLkQHZgyn4AFm2fH7IUxG7xFSPESnPWsKkFQCxTxZsnZlZCUMN512OC\\r\\nAfaEoICFeJPon3CLzYxjpCJDGMmWPAJCoJDBQlQ6VKWwGgUJLn4AHgJKADO7BI/T8kwIkfI1EWNV\\r\\n19tfawFQ28tUg+fr31ksLUkocLbQWFYJAWeA2YgOgYljfAIgOAJHNnKMhLERMWCjUKkJcLJDYjGH\\r\\nZSGSbEnLbUK/BKLayl93DKCulKmWfF9PF5GxxYPAwH9HAfbsFi2MGEnnWaqxMWgWagwdbAEPskl1\\r\\n6pHGvnZhSRMPG5qmgNBiGU06oGkqitAYBg4iLGW1lL+GQ7UDq7pl6eTq6ccex6F17u+2X3iu/tsY\\r\\nZTrOS8HVNUXOsPzCeKkojHHDP4HJFBhPaWrrKYByOR8DRlY8k+Y3WWwbimddhxd1SCaVkmjoF8dG\\r\\nsLhNsOyI8r3kNYF6KgVZTAdPXHPgVTek3/rWplGrb3eUgVg6iWPqPHjotvy3MUo+9Oc2+hYTFqXg\\r\\nqcsgKZbYoKMsoZBZ6Gmq4GPgsSfRDEhacoHNvk2DTCJl2ibVVTgIGYg9ZhlaIRmKYSQ6iZIUk+xg\\r\\nCGNmomE23nH5a3GmmL9K63qZ6nbnWs5EikmIOkOjwDG6IVhug5ycTCL4zBRyLhmmIBmyt/BFsI00\\r\\n8jSFUZhHdtQnHDTKwRKwYfMbgn0CGSWg2PzaiGP2dQEOWyuLC2cWBkvXHrz/5FMSrLjZQQYafx6H\\r\\n1vq3qVb0x0UyEQNgH209YqAJG/keMfXJjCEt24QwUhf/7aEjrbFZzmCP8c8BUprHliZKWKMms5Pg\\r\\nxEkxn/Vp3MaaF0PSacqugTCWMvd2tLjFvxKvlpn6+Z1ZseOaeKvb9tHwDziYHQBw4unmIljORBYG\\r\\nuAqB8gTBQFh9PL/NDIiipOuiENot8jwJOTtstAvBJMeugQhKcbboGsWglavkXgGXAmF+QoldHSv7\\r\\nZAYl8TD2fRBMUJ8/3r+y9/oD9554Ijc7YWcqAOC2/eM4yKl0JzyuuYttvSayEAokiobig2O0UOhg\\r\\nPfDk533GjtFjUG2vISkKOC2Ybd8Zn0GnPAVtZ91gAwNqaRp2QFYfOpaJjIat7Pi1T3EIZt/18Yxx\\r\\ncG59/eOSr7jh9JXak0de98Lh5vpfcYKlNxFUMtEpYXtrx7oCzYd5AwRLS42CVnIfusUohwUCC5Ah\\r\\ncn5NBDVkLpPklmPXU/YhgTTqaY++dzh2tDgNe7+eEZzD0uRGNQeRA3vOd3nOY+bEP7+wnL7k+vt+\\r\\n80/RJ9xUziKj4dpbdwt46EMrpN/DyNl1h0cdPH7f7Tt/EW87KhibwFYc2VcqoD45BpSCXFYgFU0G\\r\\nKA0et0FfY/A0BMvsmb54opkBjv1C2uXL+shCK8ON7C2UrtIqAwgHcajKBH2Q5XLGYnp9ixkfxZ2R\\r\\ns9gSRNbEsC5JFFT6ICkIs+fZJejl+Yri1KEuoqx5iB6MSbLZuJWgAGEg4Jj/qYMOmkASaNQmuHwp\\r\\no2FlIWSrsj6y681SrrCpDCAcTGffKlbBL88SZSYSiBQMsBVgC1YhrMhbnAWEAloKO4GAj2sZKApt\\r\\nMi3wjDw+EgANIDQdEoKBYEgcKdE24IC+AclEXZOzKAMFvlQ0BTd2JNhWjm1lAKFc4dmV2zy6XdD2\\r\\nLy0n+/C78t4Ij+B7xdXoIfBkOAgs+kKOZwi3YYpBljChrAc06CnjkEylYJMsZQ/JeiYxvoAErjKO\\r\\nm6Yumqmb9oX6AFvl2FYGEED+tB3K7tzuA4gIJEVCEQkbBV4bRtYagmtdbNEXAAg6/HMRCXNAIGiP\\r\\nvqJcyJBFXRejcY4lAdkty1Fuh+CGBpXYAl065X5Jf5BkZ0148m1lAOFIfj65+X5KcikTiHB6nh0s\\r\\nwgwraCHajB8DWNyyi7sFCIRB3jz4EguRB5sA4WgLICyVgB7gqHmwISBoMwCDpqQHKuniqU8GD6+k\\r\\nnyS/oHyVVhlAePT9HR5rlUn6KLtXyxl/Q9WDgrOUVyxE7BNIwgTjGkJHIQaU8bdm3lS9TyAKcFAM\\r\\n5iTPWWxJQo+64HvmUV8TBkAQudK3PVRNlsdAoyI/W39haenb4aAm3lUG0NXHTq7i0eXUj74nPrIO\\r\\nCO5bxDWR/5ozgpIHBl2G3zMQT4VjirARAAokg6mOVIs+BfCRSaHI5GiB/9yS9jKqjfTzLCV9SOSs\\r\\n0AkWyCjr49nUF69/4Fd/4fFVaW61ig7OOUtXDx/6Ns793ZUUeyrMdwc9s4G3duD8GG9/UEhYKB/J\\r\\ny9iA6QG123UjeBD8Fl4PLGXJLcIOujaiTTQSBK5glH0JGGhs2aKgMSxbFXp59iJ/MPjeDT/99bsw\\r\\nP4UrtcoZiNY50cEHfvUevMf47TiPSk8uKx1dR4T3IhPt5XMiNIXXg8l4eJyNacFHPyQeUulQfbh0\\r\\nMWsRdHkkyWMDQToc8oMB4y1VMCVGAXQwEo9yomNPmimSBvsSTf+FWN79yp/95p3TgAcGZZX7qVt2\\r\\n9HWLp0+cfy3+puPbcJA34sBegMX/hTji/VMb7agiM9Ea/kqzoh3OAYEJF9UWQNzp4F/Z8eDza2wB\\r\\nzTmUZuPeNWjLaUSGgGaIsynBVsajjtZPGeWAafEc2P8G6194W95vs6WFH99w2/4H06MP7vzvkuuo\\r\\n4iZ6IHogeiB6IHogeiB6IHogeiB6IHogeiB6IHogeiB6IHogeiB6IHogeiB6IHogeiB6IHogeiB6\\r\\nIHogeiB6IHogeiB6IHogeiB6IHogemBaD/wfWl0tzAXA/nAAAAAASUVORK5CYII=\\r\\n--0000000000000e5e5f06112cb7e0--\\r\\n\\r\\n--0000000000000e4fe006112cb7d3\\r\\nContent-Type: - message/delivery-status\\r\\n\\r\\nReporting-MTA: dns; googlemail.com\\r\\nReceived-From-MTA: - dns; _removed_my_email_\\r\\nArrival-Date: Mon, 12 Feb 2024 02:26:43 -0800 - (PST)\\r\\nX-Original-Message-ID: <7sy2756cjo7e2bftnmbisoe7mo5ha3acajnjb2tld37wph4bno@7sa4xuy2vw2g>\\r\\n\\r\\nFinal-Recipient: - rfc822; neuro-sig-members@fedoraproject.org\\r\\nAction: failed\\r\\nStatus: - 5.7.1\\r\\nRemote-MTA: dns; mx1.redhat.com. (66.187.233.71, the server for - the domain fedoraproject.org.)\\r\\nDiagnostic-Code: smtp; 554 5.7.1 : - Relay access denied\\r\\nLast-Attempt-Date: Mon, 12 Feb 2024 02:26:47 -0800 - (PST)\\r\\n\\r\\n--0000000000000e4fe006112cb7d3\\r\\nContent-Type: message/rfc822\\r\\n\\r\\nDKIM-Signature: - v=1; a=rsa-sha256; c=relaxed/relaxed;\\r\\n d=gmail.com; s=20230601; - t=1707733604; x=1708338404; darn=fedoraproject.org;\\r\\n h=content-disposition:mime-version:mail-followup-to:message-id\\r\\n - \ :subject:to:from:date:from:to:cc:subject:date:message-id:reply-to;\\r\\n - \ bh=zTWr8xhSuS27eMtCYokKsy71a+xAbOP4MlqW+kDcfa8=;\\r\\n b=X9H3HAWPnayZUyyOv1wqVYj6YAEHBaY30W2bgpNhevcG5I8+Y82PDAaokJ3mUBX65s\\r\\n - \ OGqQpiMBxKLZ3Ri62ER01eufL15B9OsBAcH0As/84ZYSvP1EIo2SQ4mFaYubzuXN+7IV\\r\\n - \ +OTJ1PctwpMNLFKSSuNPIQFniCm9LLP3RJMwfNUYFXxI/GFlC9XLIIXxFk147+fugmYb\\r\\n - \ K7wiQf5p6W1UKLgbJ0EiE2R8yp9cZn9IqVgYZXIWMynyFGbBidEUTHxpyVWvUZ9FzbEh\\r\\n - \ eV71TrnJadwSts9s4Tl0S/CkY3xfOYADQ+LfVCmd0TTlc2JzfyvjvQ1c59Y6LPRxsxx4\\r\\n - \ fbBw==\\r\\nX-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;\\r\\n - \ d=1e100.net; s=20230601; t=1707733604; x=1708338404;\\r\\n h=content-disposition:mime-version:mail-followup-to:message-id\\r\\n - \ :subject:to:from:date:x-gm-message-state:from:to:cc:subject:date\\r\\n - \ :message-id:reply-to;\\r\\n bh=zTWr8xhSuS27eMtCYokKsy71a+xAbOP4MlqW+kDcfa8=;\\r\\n - \ b=GPDFCtg8EWupXvylT+doBiOWjrRxgRydx+fdKCsPXPGj/hgKIbVHcQzZb/14wImjvJ\\r\\n - \ d4xLLFWJv1okgGD4xcwA5nrjQjlrRsrrcn9A9xKg3GP0BBIDJCyYzYS6Re1RHhm7MlxH\\r\\n - \ LWvqp3zITr8aAsKNXal5sd6OlLa5lqdAKwULCoCnWtNTWGAoILZfRIv1ZFBZS9bIjApW\\r\\n - \ fAXP38r6ZctmBbi/axSNBJvtho+MHsCGE/9GJDSAw4EDvk9geZSpnTMB3kR1kbHoje8e\\r\\n - \ hAmV5KhpBwST0WUP1Lh7dcuftQ0q9QHYRHJxXa0CjNqC9MbkjQKY/971UtZGntRpGvcl\\r\\n - \ I69g==\\r\\nX-Gm-Message-State: AOJu0YwlRlcdiCTIhMvm02+Gf/+NmIfOilEGbnVwb4GuFYuuNqkR1kNw\\r\\n\\twdcN4VEcdBnxxGdyYvvAYOtr/JHrFuhPNG4PzkHxoopjtCe9GjIX\\r\\nX-Google-Smtp-Source: - AGHT+IHlsrJmP/YTxTsvoc3DbGs2Vvo+xcQ0Fn7pTxWVwXsAUt/0JmxJYkb3LK7ftsoranm+b1dCyA==\\r\\nX-Received: - by 2002:a05:600c:4e8f:b0:40f:e60f:438e with SMTP id f15-20020a05600c4e8f00b0040fe60f438emr5221001wmq.8.1707733603967;\\r\\n - \ Mon, 12 Feb 2024 02:26:43 -0800 (PST)\\r\\nX-Forwarded-Encrypted: - i=1; AJvYcCUR97JoZYzgUcDjmiHoIeod1qORMMeNkc9EYQKRXMwxE+Gtmt1UfqE6L15RDjIcgbRbT4ypyptDB5wrv1QBuLMQnCgWdQv5Ldkr8UOySW9JyA42A2Xzo9auzRnhsrtnl8czF+22t6fdkJR0bUA7ONJGtQQ=\\r\\nReturn-Path: - <_removed_my_email_>\\r\\nReceived: from gmail.com ([2a00:23c4:2d8b:bd01:f819:c28e:7284:52f])\\r\\n - \ by smtp.gmail.com with ESMTPSA id q14-20020a05600c46ce00b0040fdf2832desm8283821wmo.12.2024.02.12.02.26.43\\r\\n - \ (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256);\\r\\n - \ Mon, 12 Feb 2024 02:26:43 -0800 (PST)\\r\\nDate: Mon, 12 Feb 2024 - 10:26:42 +0000\\r\\nFrom: Ankur Sinha <_removed_my_email_>\\r\\nTo: neurofedora@lists.fedoraproject.org, - \\r\\n\\tDevelopment discussions related to Fedora \\r\\nSubject: - Next Open NeuroFedora Meeting: 1300 UTC on Monday, 12 February, 2024\\r\\n - (today)\\r\\nMessage-ID: <7sy2756cjo7e2bftnmbisoe7mo5ha3acajnjb2tld37wph4bno@7sa4xuy2vw2g>\\r\\nMail-Followup-To: - neurofedora@lists.fedoraproject.org, \\r\\n\\tDevelopment discussions related - to Fedora \\r\\nMIME-Version: 1.0\\r\\nContent-Type: - multipart/signed; micalg=pgp-sha256;\\r\\n\\tprotocol=\\\"application/pgp-signature\\\"; - boundary=\\\"qo23m5cmdr326fpo\\\"\\r\\nContent-Disposition: inline\\r\\n\\r\\n----- - Message truncated -----\\r\\n\\r\\n--0000000000000e4fe006112cb7d3--\\r\\n\\r\\n```\", - \n \"date_created\": \"1707735657\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 895179, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/ankursinha\", \n \"fullname\": - \"Ankur Sinha\", \n \"name\": \"ankursinha\", \n \"url_path\": - \"user/ankursinha\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @phsmoura**:\\n- Issue priority set to: Waiting on - Assignee (was: Needs Review)\\n- Issue tagged with: high-gain, high-trouble, - ops\", \n \"date_created\": \"1707765968\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 895235, \n \"notification\": + \"**Metadata Update from @zlopez**:\\n- Issue priority set to: Waiting on + Assignee (was: Needs Review)\\n- Issue tagged with: high-gain, medium-trouble, + ops\", \n \"date_created\": \"1708948011\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 897887, \n \"notification\": true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/phsmoura\", \n \"fullname\": - \"Pedro Moura\", \n \"name\": \"phsmoura\", \n \"url_path\": - \"user/phsmoura\"\n }\n }, \n {\n \"comment\": - \"Hello everyone \\r\\nI am also facing the similar issue but it all started - with this attached screenshot \\r\\n[![spam-email.png](/fedora-infrastructure/issue/raw/files/bd3067423878d7288655d7e197f39916168604c044023fd209858487179ec194-spam-email.png)](/fedora-infrastructure/issue/raw/files/bd3067423878d7288655d7e197f39916168604c044023fd209858487179ec194-spam-email.png)\\r\\n\\r\\nAll - the details seemed to be valid \\r\\n\\r\\n[![spam-email-2.png](/fedora-infrastructure/issue/raw/files/d87f189765df4ceba6a6fa3c3e672c77b7efeb7e069a5942b4c5b9948a0632f8-spam-email-2.png)](/fedora-infrastructure/issue/raw/files/d87f189765df4ceba6a6fa3c3e672c77b7efeb7e069a5942b4c5b9948a0632f8-spam-email-2.png)\\r\\n\\r\\nso - I clicked the below link from email \\r\\n\\\"https://ipfs.io/ipfs/QmRVegJQXdaTe5gh7BBTXobWXtJsj6X1Q7J1cUxKWL2uKZ#vishalvvr@fedoraproject.org\\\"\\r\\n\\r\\nWhich - redirected to this page\\r\\n[![spam-link.png](/fedora-infrastructure/issue/raw/files/348d5cf825b9fc9aef588acbc48b3921eac3bbb99c566d10f9ec69b54a50bd33-spam-link.png)](/fedora-infrastructure/issue/raw/files/348d5cf825b9fc9aef588acbc48b3921eac3bbb99c566d10f9ec69b54a50bd33-spam-link.png)\\r\\n\\r\\nAdded - credentials and I found a network messages suspicious \\r\\n\\r\\n[![spam-link2.png](/fedora-infrastructure/issue/raw/files/4ec8eb5fe919eb4f09b4fedc6c55a8353ac99d8e5a073f628e8103d8662cf1d0-spam-link2.png)](/fedora-infrastructure/issue/raw/files/4ec8eb5fe919eb4f09b4fedc6c55a8353ac99d8e5a073f628e8103d8662cf1d0-spam-link2.png)\\r\\n\\r\\nPost - request was made \\r\\nRequest URL: https://formsubmit.co/ajax/realitybaba.rb@gmail.com\\r\\nRequest - Method: POST\\r\\nStatus Code: 200 OK\\r\\nRemote Address: 104.21.1.51:443\\r\\nReferrer - Policy: strict-origin-when-cross-origin\\r\\n\\r\\n--------------------------------------------------------------------------\\r\\n\\r\\nAfter - all this mess now I noticed that I am unable to send email to vishalvvr@fedoraproject.org - \\r\\nas reported above by @chkr \\r\\n\\r\\noriginal spam email: https://paste.opensuse.org/pastes/cf5a94a316ba - \\r\\n\\r\\nIf this is not a valid issue please ignore this comment else I - am happy to share more details if needed \\r\\n\\r\\nThank you :)\", \n \"date_created\": - \"1707975154\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 895655, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/vishalvvr\", \n \"fullname\": \"Vishal - Vijayraghavan\", \n \"name\": \"vishalvvr\", \n \"url_path\": - \"user/vishalvvr\"\n }\n }, \n {\n \"comment\": - \"It looks like that was a forged phishing email that came in before this - relay problem started. ;( \\r\\n\\r\\nI am not sure there is much we can do - about it... email is forgeable. ;( \\r\\n\", \n \"date_created\": - \"1708018601\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 895735, \n \"notification\": false, \n \"parent\": + {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": + \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": + \"user/zlopez\"\n }\n }, \n {\n \"comment\": + \"@kevin Do you think that toddler will be a good solution in this case?\", + \n \"date_created\": \"1708948049\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 897888, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": + \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": + \"user/zlopez\"\n }\n }, \n {\n \"comment\": + \"These users are still part of the go-sig group on FAS. For now, can someone + please remove them manually?\", \n \"date_created\": \"1708958997\", + \n \"edited_on\": null, \n \"editor\": null, \n \"id\": + 897961, \n \"notification\": false, \n \"parent\": null, + \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/gotmax23\", \n \"fullname\": \"Maxwell + G\", \n \"name\": \"gotmax23\", \n \"url_path\": \"user/gotmax23\"\n + \ }\n }, \n {\n \"comment\": \"@pgier and @mgoodwin + were removed from `go-sig` group in FAS.\", \n \"date_created\": + \"1708961369\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 897974, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", + \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n + \ }\n }, \n {\n \"comment\": \"Thanks!\\n\", + \n \"date_created\": \"1708974479\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 898054, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/gotmax23\", \n \"fullname\": + \"Maxwell G\", \n \"name\": \"gotmax23\", \n \"url_path\": + \"user/gotmax23\"\n }\n }, \n {\n \"comment\": + \"> @kevin Do you think that toddler will be a good solution in this case?\\r\\n\\r\\nYeah, + a cleanup toddler could be good.\", \n \"date_created\": \"1709047915\", + \n \"edited_on\": null, \n \"editor\": null, \n \"id\": + 898243, \n \"notification\": false, \n \"parent\": null, + \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }\n }, \n {\n \"comment\": \"Now I see the - same issue.\\r\\n\\r\\nSo: we can just wait for fpo mail server to accept - new email again? Or mail server admin can \\\"reset\\\" fpo main server's - rejecting email? (I don't know the details, sorry if I am saying something - beside the point.)\", \n \"date_created\": \"1708351531\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 896281, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/mtasaka\", \n \"fullname\": - \"Mamoru TASAKA\", \n \"name\": \"mtasaka\", \n \"url_path\": - \"user/mtasaka\"\n }\n }, \n {\n \"comment\": - \"I've pinged them again on the internal ticket. I'll try and escalate it. - \\r\\n\\r\\nWe can't directly do anything here because mail for fedoraproject.org - goes through redhat.com. The problem is in the redhat.com mail server setup... - so, they need to fix it. \\r\\n\\r\\nI could look at changing that, but... - if we do that we would likely get a ton more spam and such... all that gets - at least marked by the redhat.com mail servers on the way through. \\r\\n\\r\\nBut - if they don't fix it before too long I will look at other alternatives. ;( - \\r\\n\", \n \"date_created\": \"1708476028\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 896681, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": - \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": - \"user/kevin\"\n }\n }, \n {\n \"comment\": - \"This should now be fixed. \\r\\n\\r\\nSorry for the delays... please re-open - or file a new ticket if you still are seeing any issues. \\r\\n\", \n \"date_created\": - \"1708530450\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 896765, \n \"notification\": false, \n \"parent\": + \ }\n }, \n {\n \"comment\": \"So, I guess + this can be closed now? But we need to file a new upstream ticket on toddlers + to make one that uses the new api (when it's available) to make sure no removed + users are still in groups on src.fedoraproject.org?\\r\\n\\r\\nFeel free to + re-open if you still see something to do/track here. \\r\\n\", \n \"date_created\": + \"1709067252\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 898324, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n \ }\n }, \n {\n \"comment\": \"**Metadata Update from @kevin**:\\n- Issue close_status updated to: Fixed\\n- Issue status updated - to: Closed (was: Open)\", \n \"date_created\": \"1708530450\", \n + to: Closed (was: Open)\", \n \"date_created\": \"1709067253\", \n \ \"edited_on\": null, \n \"editor\": null, \n \"id\": - 896766, \n \"notification\": true, \n \"parent\": null, + 898325, \n \"notification\": true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }\n }\n ], \n \"content\": \"# Describe what you - would like us to do:\\r\\n- sending emails to my personal \\\"@fedoraproject.org\\\" - email address fails\\r\\n- Redhat's mail servers respond with \\\"554 5.7.1 - : Relay access denied\\\"\\r\\n- I received mails sent to my fpo address before - without any problems\\r\\n\\r\\nPlease can you have a look?\\r\\n\", \n \"custom_fields\": - [], \n \"date_created\": \"1707657760\", \n \"depends\": [], \n - \ \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11768\", - \n \"id\": 11768, \n \"last_updated\": \"1708530450\", \n \"milestone\": + \ }\n }, \n {\n \"comment\": \"Created a toddler + ticket for this https://pagure.io/fedora-infra/toddlers/issue/190\", \n \"date_created\": + \"1709121568\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 898400, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", + \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n + \ }\n }\n ], \n \"content\": \"**NOTE**\\r\\n\\r\\nIf + your issue is for security or deals with sensitive info please\\r\\nmark it + as private using the checkbox below.\\r\\n\\r\\n# Describe what you would + like us to do:\\r\\n----\\r\\n\\r\\nI get the following bounces from bastion01.iad2.fedoraproject.org + when attempting to send email to go-sig-members@fedoraproject.org:\\r\\n\\r\\n```\\r\\n\\r\\n\\r\\n + (expanded from ):\\r\\n host mx2.redhat.com[10.11.203.6] + said: 550 5.1.1 :\\r\\n Recipient address rejected: + User unknown in local recipient table (in reply\\r\\n to RCPT TO command)\\r\\n\\r\\n + (expanded from ): host\\r\\n mx2.redhat.com[10.11.203.6] + said: 550 5.1.1 : Recipient\\r\\n address rejected: User + unknown in local recipient table (in reply to RCPT\\r\\n TO command)\\r\\n```\\r\\n\\r\\nI'm + not sure if these @mgoodwin and @pgier were purged from `packager` as part + of a previous non-responsive maintainer process (directly or the scheduled + one that Mattia runs), but they should be removed from the `go-sig` in any + case.\\r\\n\\r\\nThanks!\", \n \"custom_fields\": [], \n \"date_created\": + \"1708757059\", \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11788\", + \n \"id\": 11788, \n \"last_updated\": \"1709121568\", \n \"milestone\": null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": [], \n \"status\": \"Closed\", \n \"tags\": [\n \"high-gain\", - \n \"high-trouble\", \n \"ops\"\n ], \n \"title\": - \"Sending mails to personal @fedoraproject.org email address fails\", \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/chkr\", \n \"fullname\": - \"Christian Krause\", \n \"name\": \"chkr\", \n \"url_path\": - \"user/chkr\"\n }\n }, \n {\n \"assignee\": null, \n \"blocks\": - [], \n \"close_status\": \"Fixed\", \n \"closed_at\": \"1707814565\", - \n \"closed_by\": {\n \"full_url\": \"https://pagure.io/user/nphilipp\", - \n \"fullname\": \"Nils Philippsen\", \n \"name\": \"nphilipp\", - \n \"url_path\": \"user/nphilipp\"\n }, \n \"comments\": - [\n {\n \"comment\": \"It looks like rpmautospec was updated - to 0.6.1 yesterday, https://bodhi.fedoraproject.org/updates/?packages=python-rpmautospec, - https://github.com/fedora-infra/rpmautospec, but when I manually installed - the packages from https://koji.fedoraproject.org/koji/buildinfo?buildID=2400455 - on F39 I still couldn\\u2019t reproduce the problem. Still, it might be related.\", - \n \"date_created\": \"1707576950\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 895099, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/music\", \n \"fullname\": - \"Benjamin Beasley\", \n \"name\": \"music\", \n \"url_path\": - \"user/music\"\n }\n }, \n {\n \"comment\": - \"I upgraded builders to f39 on wed, and with that came a update to python-rpmautospec - to 0.6.1... \\r\\n\\r\\nI've now downgraded to 0.5.1 and confirmed that this - works around the issue you were hitting. \\r\\n\\r\\nCan you file a upstream - rpmautospec bug on this? https://github.com/fedora-infra/rpmautospec/issues\\r\\n\\r\\nThen - hopefully @nphilipp can look monday... \\r\\n\", \n \"date_created\": - \"1707588456\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 895103, \n \"notification\": false, \n \"parent\": + \n \"medium-trouble\", \n \"ops\"\n ], \n \"title\": + \"Purge Inactive go-sig members/packagers\", \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/gotmax23\", \n \"fullname\": \"Maxwell G\", + \n \"name\": \"gotmax23\", \n \"url_path\": \"user/gotmax23\"\n + \ }\n }, \n {\n \"assignee\": {\n \"full_url\": \"https://pagure.io/user/lenkaseg\", + \n \"fullname\": \"Lenka Segura\", \n \"name\": \"lenkaseg\", + \n \"url_path\": \"user/lenkaseg\"\n }, \n \"blocks\": [], + \n \"close_status\": \"Fixed\", \n \"closed_at\": \"1708813302\", + \n \"closed_by\": {\n \"full_url\": \"https://pagure.io/user/kevin\", + \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n + \ \"url_path\": \"user/kevin\"\n }, \n \"comments\": [\n {\n + \ \"comment\": \"Yup, there's a PR for that: https://pagure.io/fedora-infra/ansible/pull-request/1794\", + \n \"date_created\": \"1708809299\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 897737, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/lenkaseg\", \n \"fullname\": + \"Lenka Segura\", \n \"name\": \"lenkaseg\", \n \"url_path\": + \"user/lenkaseg\"\n }\n }, \n {\n \"comment\": + \"Does not include the removing part though...\", \n \"date_created\": + \"1708809393\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 897738, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/lenkaseg\", \n \"fullname\": \"Lenka Segura\", + \n \"name\": \"lenkaseg\", \n \"url_path\": \"user/lenkaseg\"\n + \ }\n }, \n {\n \"comment\": \"Ah, missed that. + I merged it... since it's in /tmp it's probibly ok to not delete it since + /tmp will get wiped on reboot. \\r\\n\", \n \"date_created\": \"1708813305\", + \n \"edited_on\": null, \n \"editor\": null, \n \"id\": + 897739, \n \"notification\": false, \n \"parent\": null, + \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n \ }\n }, \n {\n \"comment\": \"**Metadata Update - from @kevin**:\\n- Issue close_status updated to: Upstream\\n- Issue status - updated to: Closed (was: Open)\", \n \"date_created\": \"1707588457\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 895104, \n \"notification\": true, \n \"parent\": null, - \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + from @kevin**:\\n- Issue assigned to lenkaseg\\n- Issue close_status updated + to: Fixed\\n- Issue status updated to: Closed (was: Open)\", \n \"date_created\": + \"1708813306\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 897740, \n \"notification\": true, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }\n }, \n {\n \"comment\": \"Filed upstream: - https://github.com/fedora-infra/rpmautospec/issues/68\", \n \"date_created\": - \"1707591377\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 895106, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/music\", \n \"fullname\": \"Benjamin Beasley\", - \n \"name\": \"music\", \n \"url_path\": \"user/music\"\n - \ }\n }, \n {\n \"comment\": \"> I upgraded - builders to f39 on wed, and with that came a update to python-rpmautospec - to 0.6.1...\\r\\n> \\r\\n> I've now downgraded to 0.5.1 and confirmed that - this works around the issue you were hitting.\\r\\n\\r\\nIs there a chance - that one or more builders didn\\u2019t get downgraded, or didn\\u2019t have - `kojid` restarted?\\r\\n\\r\\nI just saw this again in a Fedora CI scratch - build on `buildvm-s390x-18.s390.fedoraproject.org` today, https://koji.fedoraproject.org/koji/taskinfo?taskID=113351214.\", - \n \"date_created\": \"1707669417\", \n \"edited_on\": \"1707669457\", - \n \"editor\": {\n \"full_url\": \"https://pagure.io/user/music\", - \n \"fullname\": \"Benjamin Beasley\", \n \"name\": - \"music\", \n \"url_path\": \"user/music\"\n }, \n \"id\": - 895126, \n \"notification\": false, \n \"parent\": null, + \ }\n }\n ], \n \"content\": \"the roles/distgit/files/retired-packages.cron + cron runs a retired_packages script from releng... \\r\\n\\r\\nStarting on + 2024-02-20 it's been outputing: \\r\\n\\r\\nfatal: destination path 'releng' + already exists and is not an empty directory.\\r\\n\\r\\nI am not sure why + it started failing then, but we should probibly wrap this in a 'mktemp' to + make a random temp dir, run the things in there and rm it after. \\r\\n\\r\\nI + think @lenkaseg and @humaton worked on setting this up?\", \n \"custom_fields\": + [], \n \"date_created\": \"1708709035\", \n \"depends\": [], \n + \ \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11787\", + \n \"id\": 11787, \n \"last_updated\": \"1708813306\", \n \"milestone\": + null, \n \"priority\": 1, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": + \"pkgs01 retired packages cron output\", \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", + \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n }\n + \ }, \n {\n \"assignee\": null, \n \"blocks\": [], \n \"close_status\": + null, \n \"closed_at\": null, \n \"closed_by\": null, \n \"comments\": + [\n {\n \"comment\": \"We have a way to republish Fedora messages + on matrix in FMN, but it doesn't cover this case.\\r\\n@abompard Do you have + idea how to solve this?\", \n \"date_created\": \"1708948207\", \n + \ \"edited_on\": null, \n \"editor\": null, \n \"id\": + 897890, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/music\", \n \"fullname\": \"Benjamin Beasley\", - \n \"name\": \"music\", \n \"url_path\": \"user/music\"\n + \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", + \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n \ }\n }, \n {\n \"comment\": \"**Metadata Update - from @music**:\\n- Issue status updated to: Open (was: Closed)\", \n \"date_created\": - \"1707669418\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 895127, \n \"notification\": true, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/music\", \n \"fullname\": \"Benjamin Beasley\", - \n \"name\": \"music\", \n \"url_path\": \"user/music\"\n - \ }\n }, \n {\n \"comment\": \"well, buildvm-s390x-19 - was the parent there, the actual task ran on buildvm-a64-09.iad2.fedoraproject.org... - but both of them are on 0.5.1. \\r\\n\\r\\nI did another check, theres 0 builders - using 0.6.1. ;( \\r\\n\\r\\nI also made sure kojid was restarted 23h ago and - it was. \\r\\n\\r\\nI'm not sure if this is the same issue... \\r\\n\", \n - \ \"date_created\": \"1707670730\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 895129, \n \"notification\": + from @zlopez**:\\n- Issue priority set to: Waiting on Assignee (was: Needs + Review)\\n- Issue tagged with: Needs investigation\", \n \"date_created\": + \"1708948208\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 897891, \n \"notification\": true, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", + \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n + \ }\n }, \n {\n \"comment\": \"can't we configure + nonbot-pagure for that purpose, as we do for releng and infra issues/PRs?\", + \n \"date_created\": \"1708949633\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 897896, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": - \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": - \"user/kevin\"\n }\n }, \n {\n \"comment\": - \"Maybe the downgrade wasn\\u2019t the real fix, and something else caused - it to succeed before? This is pretty confusing\\u2026\", \n \"date_created\": - \"1707741242\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 895187, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/music\", \n \"fullname\": \"Benjamin Beasley\", - \n \"name\": \"music\", \n \"url_path\": \"user/music\"\n - \ }\n }, \n {\n \"comment\": \"I think I'm - seeing this too:\\r\\n\\r\\nhttps://koji.fedoraproject.org/koji/taskinfo?taskID=113400475\\r\\n\\r\\n\\r\\n```\\r\\nTask - info: https://koji.fedoraproject.org/koji/taskinfo?taskID=113400475\\r\\nWatching - tasks (this may be safely interrupted)...\\r\\n113400475 build (f38-candidate, - /rpms/python-fslpy.git:5e227085d03b0d2e7b31e2579991c6bf975abe98): free\\r\\n113400475 - build (f38-candidate, /rpms/python-fslpy.git:5e227085d03b0d2e7b31e2579991c6bf975abe98): - free -> open (buildvm-s390x-20.s390.fedoraproject.org)\\r\\n 113400484 buildSRPMFromSCM - (/rpms/python-fslpy.git:5e227085d03b0d2e7b31e2579991c6bf975abe98): free\\r\\n - \ 113400484 buildSRPMFromSCM (/rpms/python-fslpy.git:5e227085d03b0d2e7b31e2579991c6bf975abe98): - free -> open (buildvm-a64-14.iad2.fedoraproject.org)\\r\\n113400475 build - (f38-candidate, /rpms/python-fslpy.git:5e227085d03b0d2e7b31e2579991c6bf975abe98): - open (buildvm-s390x-20.s390.fedoraproject.org) -> FAILED: CallbackError: Error - running postSCMCheckout callback from rpmautospec_koji.rpmautospec_builder:\\r\\nTraceback - (most recent call last):\\r\\n File \\\"/usr/lib/python3.12/site-packages/koji/plugin.py\\\", - line 221, in run_callbacks\\r\\n func(cbtype, *cb_args, **cb_kwargs)\\r\\n - \ File \\\"/usr/lib/python3.12/site-packages/rpmautospec_koji/rpmautospec_builder.py\\\", - line 19, in process_distgit_cb\\r\\n if not process_distgit(srcdir, enable_caching=False):\\r\\n - \ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\\r\\n File \\\"/usr/lib/python3.12/site-packages/rpmautospec/subcommands/process_distgit.py\\\", - line 103, in process_distgit\\r\\n raise SpecParseFailure(f\\\"Couldn\\u2019t - parse spec file {processor.specfile.name}\\\")\\r\\nrpmautospec.exc.SpecParseFailure: - Couldn\\u2019t parse spec file python-fslpy.spec\\r\\n 0 free 1 open 0 - done 1 failed\\r\\n 113400484 buildSRPMFromSCM (/rpms/python-fslpy.git:5e227085d03b0d2e7b31e2579991c6bf975abe98): - open (buildvm-a64-14.iad2.fedoraproject.org) -> FAILED: CallbackError: Error - running postSCMCheckout callback from rpmautospec_koji.rpmautospec_builder:\\r\\nTraceback - (most recent call last):\\r\\n File \\\"/usr/lib/python3.12/site-packages/koji/plugin.py\\\", - line 221, in run_callbacks\\r\\n func(cbtype, *cb_args, **cb_kwargs)\\r\\n - \ File \\\"/usr/lib/python3.12/site-packages/rpmautospec_koji/rpmautospec_builder.py\\\", - line 19, in process_distgit_cb\\r\\n if not process_distgit(srcdir, enable_caching=False):\\r\\n - \ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\\r\\n File \\\"/usr/lib/python3.12/site-packages/rpmautospec/subcommands/process_distgit.py\\\", - line 103, in process_distgit\\r\\n raise SpecParseFailure(f\\\"Couldn\\u2019t - parse spec file {processor.specfile.name}\\\")\\r\\nrpmautospec.exc.SpecParseFailure: - Couldn\\u2019t parse spec file python-fslpy.spec\\r\\n 0 free 0 open 0 - done 2 failed\\r\\n\\r\\n113400475 build (f38-candidate, /rpms/python-fslpy.git:5e227085d03b0d2e7b31e2579991c6bf975abe98) - failed\\r\\n\\r\\n```\", \n \"date_created\": \"1707741968\", \n - \ \"edited_on\": null, \n \"editor\": null, \n \"id\": - 895188, \n \"notification\": false, \n \"parent\": null, - \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/ankursinha\", \n \"fullname\": \"Ankur - Sinha\", \n \"name\": \"ankursinha\", \n \"url_path\": - \"user/ankursinha\"\n }\n }, \n {\n \"comment\": - \"I\\u2019ve looked into this issue on my own (only found this ticket now). - I think the reason is that builders where this works (e.g. `buildvm-x86-*`) - have the RPM macro packages installed which are necessary to parse the spec - files. Older versions (< 0.5) used `rpm --specfile ...` to parse spec files, - i.e. depended on `rpm-build` which in turn depended on `redhat-rpm-config` - (and so forth). The `rpmautospec` updates currently in testing let the Koji - plugin explicitly depend on `redhat-rpm-config` which should fix the issue - after the updates are deployed onto the builders.\", \n \"date_created\": - \"1707743092\", \n \"edited_on\": \"1707743109\", \n \"editor\": - {\n \"full_url\": \"https://pagure.io/user/nphilipp\", \n \"fullname\": - \"Nils Philippsen\", \n \"name\": \"nphilipp\", \n \"url_path\": - \"user/nphilipp\"\n }, \n \"id\": 895189, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/nphilipp\", \n \"fullname\": - \"Nils Philippsen\", \n \"name\": \"nphilipp\", \n \"url_path\": - \"user/nphilipp\"\n }\n }, \n {\n \"comment\": - \"> I\\u2019ve looked into this issue on my own \\u2026\\r\\n\\r\\nThanks - for investigating!\", \n \"date_created\": \"1707746065\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 895193, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/music\", \n \"fullname\": - \"Benjamin Beasley\", \n \"name\": \"music\", \n \"url_path\": - \"user/music\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @phsmoura**:\\n- Issue priority set to: Waiting on - Assignee (was: Needs Review)\\n- Issue tagged with: medium-gain, medium-trouble, - ops\", \n \"date_created\": \"1707765753\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 895230, \n \"notification\": - true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/phsmoura\", \n \"fullname\": - \"Pedro Moura\", \n \"name\": \"phsmoura\", \n \"url_path\": - \"user/phsmoura\"\n }\n }, \n {\n \"comment\": - \"This should all be deployed now... \", \n \"date_created\": \"1707778171\", + {\n \"full_url\": \"https://pagure.io/user/darknao\", \n \"fullname\": + \"Francois Andrieu\", \n \"name\": \"darknao\", \n \"url_path\": + \"user/darknao\"\n }\n }, \n {\n \"comment\": + \"Maybe I just misunderstood what is possible from [Infra & RelEng Update + \\u2013 Week 4 2024](https://discussion.fedoraproject.org/t/infra-releng-update-week-4-2024/102982/1):\\r\\n\\r\\n> + Updates\\r\\n>\\r\\n> Nonbot now is notifying on pagure repos (new issues + and git pushes). This was done previously with a generic maubot webhook plugin, + but now uses a pagure-specific plugin. This has the benefit of being able + to notify any room about any pagure repo. Additionally, the old generic way + was not checking if messages were coming from pagure, now it verifies against + the pagure webhook key.\\r\\n\\r\\nI have tried to find a way to set this + in FNM, but failed. I was surprised, for example, that a pagure repo, of which + I'm an admin, wasn't available for my username. But maybe there needs to be + some matching between fas user/gropu and pagure user/group...\\r\\n\\r\\nI + do not know, but I will definitely appreciate any help with this.\\r\\n\", + \n \"date_created\": \"1708964152\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 897982, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/peartown\", \n \"fullname\": + \"Josef Hruska\", \n \"name\": \"peartown\", \n \"url_path\": + \"user/peartown\"\n }\n }, \n {\n \"comment\": + \"I think I can set that up, but it would require the configuration of a webhook + URL on the pagure repositories, and then providing me the private web-hook + key for each repo (I don't have admin access to any of those repositories).\", + \n \"date_created\": \"1708965968\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 897990, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/darknao\", \n \"fullname\": + \"Francois Andrieu\", \n \"name\": \"darknao\", \n \"url_path\": + \"user/darknao\"\n }\n }, \n {\n \"comment\": + \"I have only for pagure.io/fedora-l10n/tickets.\\r\\n\\r\\nAnd I was thinking + initially about a notification on `issue created` and maybe `issue closed`.\", + \n \"date_created\": \"1708966457\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 897992, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/peartown\", \n \"fullname\": + \"Josef Hruska\", \n \"name\": \"peartown\", \n \"url_path\": + \"user/peartown\"\n }\n }, \n {\n \"comment\": + \"I guess for pagure.io/fedora-l10n/docs we need to ping\\r\\n@jibecfed.\", + \n \"date_created\": \"1708967627\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 897999, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/peartown\", \n \"fullname\": + \"Josef Hruska\", \n \"name\": \"peartown\", \n \"url_path\": + \"user/peartown\"\n }\n }, \n {\n \"comment\": + \"notification for new issue has been set up for pagure.io/fedora-l10n/tickets.\\r\\nFor + PRs, we need to update the [plugin](https://github.com/fedora-infra/maubot-pagure-notifications/blob/main/pagure_notifications/__init__.py#L9) + to allow the `pull-request.new` topic.\", \n \"date_created\": \"1708968377\", \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 895277, \n \"notification\": false, \n \"parent\": null, + 898003, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", - \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }\n }, \n {\n \"comment\": \"The updated - packages are deployed on the builders now, this issue should be fixed.\", - \n \"date_created\": \"1707814568\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 895322, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/nphilipp\", \n \"fullname\": - \"Nils Philippsen\", \n \"name\": \"nphilipp\", \n \"url_path\": - \"user/nphilipp\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @nphilipp**:\\n- Issue **un**tagged with: medium-gain, - medium-trouble, ops\\n- Issue close_status updated to: Fixed\\n- Issue priority - set to: Needs Review (was: Waiting on Assignee)\\n- Issue status updated to: - Closed (was: Open)\", \n \"date_created\": \"1707814569\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 895323, \n \"notification\": - true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/nphilipp\", \n \"fullname\": - \"Nils Philippsen\", \n \"name\": \"nphilipp\", \n \"url_path\": - \"user/nphilipp\"\n }\n }, \n {\n \"comment\": - \"Thanks again!\", \n \"date_created\": \"1707827235\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 895334, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/music\", \n \"fullname\": - \"Benjamin Beasley\", \n \"name\": \"music\", \n \"url_path\": - \"user/music\"\n }\n }\n ], \n \"content\": \"**NOTE**\\r\\n\\r\\nIf + \"https://pagure.io/user/darknao\", \n \"fullname\": \"Francois + Andrieu\", \n \"name\": \"darknao\", \n \"url_path\": + \"user/darknao\"\n }\n }, \n {\n \"comment\": + \"IMHO, it would be welcome by the whole Fedora Community if the`pull-request` + topic is implemented.\\r\\n\\r\\nJust my 2c.\", \n \"date_created\": + \"1708968668\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 898005, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/peartown\", \n \"fullname\": \"Josef Hruska\", + \n \"name\": \"peartown\", \n \"url_path\": \"user/peartown\"\n + \ }\n }, \n {\n \"comment\": \"PR [here](https://github.com/fedora-infra/maubot-pagure-notifications/pull/1)\", + \n \"date_created\": \"1708976452\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 898058, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/darknao\", \n \"fullname\": + \"Francois Andrieu\", \n \"name\": \"darknao\", \n \"url_path\": + \"user/darknao\"\n }\n }\n ], \n \"content\": \"**NOTE**\\r\\n\\r\\nIf your issue is for security or deals with sensitive info please\\r\\nmark it as private using the checkbox below.\\r\\n\\r\\n# Describe what you would - like us to do:\\r\\n----\\r\\n\\r\\nPlease investigate why packages that use - `rpmautospec` are failing in Koji with `rpmautospec.exc.SpecParseFailure: - Couldn\\u2019t parse spec file [\\u2026].spec`.\\r\\n\\r\\nExample: https://koji.fedoraproject.org/koji/taskinfo?taskID=113290117\\r\\n\\r\\nI - first encountered this in https://koji.fedoraproject.org/koji/taskinfo?taskID=113239379; - I built that package successfully by converting it back to a conventional - release field and changelog.\\r\\n\\r\\nIt seems like whatever is happening - is new as of the last day or so (as of 2024-02-10; I think I saw the first - failure on 2024-02-09), and it seems like it might affect *all* packages that - use rpmautospec.\\r\\n\\r\\n# When do you need this to be done by? (YYYY/MM/DD)\\r\\n\\r\\nASAP; - if this truly affects all `rpmautospec` packages, the impact will be widespread.\\r\\n\\r\\n----\\r\\n\", - \n \"custom_fields\": [], \n \"date_created\": \"1707576425\", \n - \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11767\", - \n \"id\": 11767, \n \"last_updated\": \"1707827235\", \n \"milestone\": - null, \n \"priority\": 1, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": - \"Spec file parsing fails with rpmautospec in Koji\", \n \"user\": {\n - \ \"full_url\": \"https://pagure.io/user/music\", \n \"fullname\": - \"Benjamin Beasley\", \n \"name\": \"music\", \n \"url_path\": - \"user/music\"\n }\n }, \n {\n \"assignee\": null, \n \"blocks\": - [], \n \"boards\": [\n {\n \"board\": {\n \"active\": - true, \n \"full_url\": \"https://pagure.io/fedora-infrastructure/boards/ops\", + like us to do:\\r\\n----\\r\\nWould it be possible to set notifications about + `issues` and `PRs` from 2 pagure repos:\\r\\n\\r\\n* pagure.io/fedora-l10n/tickets\\r\\n* + pagure.io/fedora-l10n/docs\\r\\n\\r\\nto go to `#l10n:fedoraproject.org` matrix + room?\\r\\n\\r\\n# When do you need this to be done by? (YYYY/MM/DD)\\r\\n----\\r\\n\", + \n \"custom_fields\": [], \n \"date_created\": \"1708709020\", \n + \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11786\", + \n \"id\": 11786, \n \"last_updated\": \"1708976452\", \n \"milestone\": + null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Open\", \n \"tags\": [\n \"Needs investigation\"\n + \ ], \n \"title\": \"Notifications on issues and PR from pagure.io/fedora-l10n/tickets + and pagure.io/fedora-l10n/docs to #l10n:fedoraproject.org\", \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/peartown\", \n \"fullname\": + \"Josef Hruska\", \n \"name\": \"peartown\", \n \"url_path\": + \"user/peartown\"\n }\n }, \n {\n \"assignee\": {\n \"full_url\": + \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", + \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n + \ }, \n \"blocks\": [], \n \"boards\": [\n {\n \"board\": + {\n \"active\": true, \n \"full_url\": \"https://pagure.io/fedora-infrastructure/boards/ops\", \n \"name\": \"ops\", \n \"status\": [\n {\n \ \"bg_color\": \"#ffb300\", \n \"close\": false, \n \"close_status\": null, \n \"default\": true, @@ -1595,174 +1587,254 @@ interactions: \n \"name\": \"Blocked\"\n }\n ], \n \ \"tag\": {\n \"tag\": \"ops\", \n \"tag_color\": \"#3efa0e\", \n \"tag_description\": \"ops problem now...\"\n - \ }\n }, \n \"rank\": 836, \n \"status\": + \ }\n }, \n \"rank\": 845, \n \"status\": {\n \"bg_color\": \"#ffb300\", \n \"close\": false, \n \"close_status\": null, \n \"default\": true, \n \ \"name\": \"Backlog\"\n }\n }\n ], \n \"close_status\": - \"Upstream\", \n \"closed_at\": \"1707778254\", \n \"closed_by\": - {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": - \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }, \n \"comments\": [\n {\n \"comment\": \"I waived - it through the \\\"master\\\" waive button in bodhi, but it cannot be waived - individually.\", \n \"date_created\": \"1707510372\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 895063, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/jskarvad\", \n \"fullname\": - \"Jaroslav \\u0160karvada\", \n \"name\": \"jskarvad\", \n \"url_path\": - \"user/jskarvad\"\n }\n }, \n {\n \"comment\": - \"The rpminspect failure was not gating the update. We clearly need to improve - the Bodhi UI as nobody understands this, but it *does* tell you what tests - are gating: the ones with an asterisk in the left-most column of the results - table. If you hover over the asterisk it gives you a tooltip explaining this.\\r\\n\\r\\nThe - only gating test for https://bodhi.fedoraproject.org/updates/FEDORA-2024-d4f6616df7 - is `fedora-ci.koji-build./plans/public.functional`, that's the one that was - blocking the update. It seems you managed to waive it now.\", \n \"date_created\": - \"1707511156\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 895064, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/adamwill\", \n \"fullname\": \"Adam Williamson\", - \n \"name\": \"adamwill\", \n \"url_path\": \"user/adamwill\"\n - \ }\n }, \n {\n \"comment\": \"> The rpminspect - failure was not gating the update. We clearly need to improve the Bodhi UI - as nobody understands this, but it *does* tell you what tests are gating: - the ones with an asterisk in the left-most column of the results table. If - you hover over the asterisk it gives you a tooltip explaining this.\\r\\n> - \\r\\n> The only gating test for https://bodhi.fedoraproject.org/updates/FEDORA-2024-d4f6616df7 - is `fedora-ci.koji-build./plans/public.functional`, that's the one that was - blocking the update. It seems you managed to waive it now.\\r\\n\\r\\nSorry, - I was confused by the \\\"unwaivable\\\" word on the rpminspect result page.\", - \n \"date_created\": \"1707511704\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 895069, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/jskarvad\", \n \"fullname\": - \"Jaroslav \\u0160karvada\", \n \"name\": \"jskarvad\", \n \"url_path\": - \"user/jskarvad\"\n }\n }, \n {\n \"comment\": - \"ah, I think that's a context problem :) I believe it's \\\"unwaivable\\\" - *within the context of rpminspect* - rpminspect has its own configuration - mechanism by which you can say \\\"it's fine if this subtest fails for my - package\\\". the license check is exempted from that, apparently.\", \n \"date_created\": - \"1707512380\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 895072, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/adamwill\", \n \"fullname\": \"Adam Williamson\", - \n \"name\": \"adamwill\", \n \"url_path\": \"user/adamwill\"\n - \ }\n }, \n {\n \"comment\": \"interesting - issue with the license, @dcantrell PTAL pls\", \n \"date_created\": - \"1707515477\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 895074, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/mvadkert\", \n \"fullname\": \"Miroslav - Vadkerti\", \n \"name\": \"mvadkert\", \n \"url_path\": - \"user/mvadkert\"\n }\n }, \n {\n \"comment\": - \"yeah, gating is only what you has the `star`, and that should match what - you have in `gating.yaml` file in the component dist-git\", \n \"date_created\": - \"1707515549\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 895075, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/mvadkert\", \n \"fullname\": \"Miroslav - Vadkerti\", \n \"name\": \"mvadkert\", \n \"url_path\": - \"user/mvadkert\"\n }\n }, \n {\n \"comment\": - \"A couple of things:\\r\\n\\r\\n* Yes, SPDX license identifiers can be mixed - case, however this is rarely happening in the wild and part of our work over - the past few years migrating to SPDX identifiers involves using the identifiers - as published by SPDX. Mixing case, IMHO, is going to just confuse people - so my recommendation is to use the identifier as published by SPDX.\\r\\n\\r\\n* - I can modify rpminspect for this case insensitive match, but can you file - an issue with rpminspect (https://github.com/rpminspect/rpminspect) so I don't - forget. I am currently traveling for work and am not in the office.\\r\\n\\r\\n* - The severity levels that rpminspect reports are entirely arbitrary and come - from rpminspect's ancestor (where the various findings and their type of severity - were determined by QA and security teams and other groups). It's just information - that rpminspect reports. Anything at the VERIFY reporting level or higher - will cause rpminspect to exit non-zero indicating something it thinks is bad - was found somewhere. If all findings are below VERIFY, it exits zero. All - license tag findings that are not in the license database are failures and - cannot be waived. rpminspect reads license data from the fedora-license-data - project--this is not internal information in rpminspect. How the reporting - levels are handled by the higher level tool that runs rpminspect is also up - to that tool. There are likely areas where this integration can be improved; - I just don't know all the integration points for rpminspect.\", \n \"date_created\": - \"1707523109\", \n \"edited_on\": \"1707523189\", \n \"editor\": - {\n \"full_url\": \"https://pagure.io/user/dcantrell\", \n \"fullname\": - \"David Cantrell\", \n \"name\": \"dcantrell\", \n \"url_path\": - \"user/dcantrell\"\n }, \n \"id\": 895082, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/dcantrell\", \n \"fullname\": - \"David Cantrell\", \n \"name\": \"dcantrell\", \n \"url_path\": - \"user/dcantrell\"\n }\n }, \n {\n \"comment\": - \"Thanks, the ticket:\\r\\nhttps://github.com/rpminspect/rpminspect/issues/1335\", - \n \"date_created\": \"1707525271\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 895083, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/jskarvad\", \n \"fullname\": - \"Jaroslav \\u0160karvada\", \n \"name\": \"jskarvad\", \n \"url_path\": - \"user/jskarvad\"\n }\n }, \n {\n \"comment\": - \"Just to point out the license name is case insensitive, but the operators - are case sensitive, e.g.: the following should match:\\r\\n```\\r\\ngpl-2.0-or-later - AND mit\\r\\n```\\r\\nbut the following shouldn't match:\\r\\n```\\r\\ngpl-2.0-or-later - and mit\\r\\n```\\r\\nlicense-validate implements it correctly.\\r\\n\", \n - \ \"date_created\": \"1707526001\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 895084, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/jskarvad\", \n \"fullname\": - \"Jaroslav \\u0160karvada\", \n \"name\": \"jskarvad\", \n \"url_path\": - \"user/jskarvad\"\n }\n }, \n {\n \"comment\": - \"I am aware, thanks.\", \n \"date_created\": \"1707526062\", \n - \ \"edited_on\": null, \n \"editor\": null, \n \"id\": - 895085, \n \"notification\": false, \n \"parent\": null, - \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/dcantrell\", \n \"fullname\": \"David - Cantrell\", \n \"name\": \"dcantrell\", \n \"url_path\": - \"user/dcantrell\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @phsmoura**:\\n- Issue priority set to: Waiting on - Assignee (was: Needs Review)\\n- Issue tagged with: medium-gain, medium-trouble, - ops\", \n \"date_created\": \"1707765408\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 895229, \n \"notification\": + \"Fixed with Explanation\", \n \"closed_at\": \"1709027536\", \n \"closed_by\": + {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": + \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": + \"user/zlopez\"\n }, \n \"comments\": [\n {\n \"comment\": + \"**Metadata Update from @zlopez**:\\n- Issue priority set to: Waiting on + Assignee (was: Needs Review)\\n- Issue tagged with: low-gain, low-trouble, + ops\", \n \"date_created\": \"1708618443\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 897037, \n \"notification\": true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/phsmoura\", \n \"fullname\": - \"Pedro Moura\", \n \"name\": \"phsmoura\", \n \"url_path\": - \"user/phsmoura\"\n }\n }, \n {\n \"comment\": - \"So, I don't think there's anything left for infrastructure to do here. \\r\\n\\r\\nIf - I missed something, please feel free to reopen or file a new ticket. \\r\\n\", - \n \"date_created\": \"1707778256\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 895278, \n \"notification\": + {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": + \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": + \"user/zlopez\"\n }\n }, \n {\n \"comment\": + \"I assume that this could be done through CLI, but all I can find is how + to list members of the list or delete the whole list.\\r\\n\\r\\nIs there + some documentation which I missed?\", \n \"date_created\": \"1708619133\", + \n \"edited_on\": null, \n \"editor\": null, \n \"id\": + 897038, \n \"notification\": false, \n \"parent\": null, + \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", + \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n + \ }\n }, \n {\n \"comment\": \"Found a script + on the mailman01 machine that will remove user defined by e-mail from every + mailing list, I will look into updating that one so it does it just for specified + mailing list.\", \n \"date_created\": \"1708621417\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 897064, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": + \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": + \"user/zlopez\"\n }\n }, \n {\n \"comment\": + \"**Metadata Update from @zlopez**:\\n- Issue assigned to zlopez\", \n \"date_created\": + \"1708621422\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 897065, \n \"notification\": true, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", + \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n + \ }\n }, \n {\n \"comment\": \"I created a + small script that should me allow to unsubscribe user from mailing list, but + I need mail of the user to be able to do it.\\r\\n\\r\\n@jstephen Could you + provide me with the mail of the user you want to remove?\", \n \"date_created\": + \"1708960982\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 897969, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", + \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n + \ }\n }, \n {\n \"comment\": \"@zlopez Hi, + The mailing list is freeotp-owner-devel (I had the incorrect one sorry). Please + remove nathaniel@mccallum.life\", \n \"date_created\": \"1708980378\", + \n \"edited_on\": null, \n \"editor\": null, \n \"id\": + 898067, \n \"notification\": false, \n \"parent\": null, + \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/jstephen\", \n \"fullname\": \"Justin + Stephenson\", \n \"name\": \"jstephen\", \n \"url_path\": + \"user/jstephen\"\n }\n }, \n {\n \"comment\": + \"It seems that Nathaniel McCallum is owner of this list, so it's not a basic + subscriber, I need to find another way to remove him.\", \n \"date_created\": + \"1709026278\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 898161, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", + \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n + \ }\n }, \n {\n \"comment\": \"After some tinkering + with the script I was able to remove Nathaniel McCallum from the list, the + mail that was added as owner was actually `npmccallum@fedoraproject.org`, + so it took me some time to figure out why I can't find him.\\r\\n\\r\\nThe + user is now removed from the list and should not receive mails anymore.\", + \n \"date_created\": \"1709027539\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 898163, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": + \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": + \"user/zlopez\"\n }\n }, \n {\n \"comment\": + \"**Metadata Update from @zlopez**:\\n- Issue close_status updated to: Fixed + with Explanation\\n- Issue status updated to: Closed (was: Open)\", \n \"date_created\": + \"1709027539\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 898164, \n \"notification\": true, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", + \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n + \ }\n }\n ], \n \"content\": \"Hi,\\r\\n\\r\\nPlease + remove Nathaniel McCallum from freeotp-devel@lists.fedorahosted.org/ mailing + list. \\r\\n\\r\\nWhen I go to https://lists.fedorahosted.org/admin/lists/freeotp-devel.lists.fedorahosted.org/ + I get a 500 Internal Server Error and therefore unable to do this myself.\", + \n \"custom_fields\": [], \n \"date_created\": \"1708615660\", \n + \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11785\", + \n \"id\": 11785, \n \"last_updated\": \"1709027539\", \n \"milestone\": + null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [\n \"low-gain\", + \n \"low-trouble\", \n \"ops\"\n ], \n \"title\": + \"Remove user from freeotp-devel@lists.fedorahosted.org/\", \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/jstephen\", \n \"fullname\": + \"Justin Stephenson\", \n \"name\": \"jstephen\", \n \"url_path\": + \"user/jstephen\"\n }\n }, \n {\n \"assignee\": null, \n \"blocks\": + [], \n \"close_status\": \"Invalid\", \n \"closed_at\": \"1708581485\", + \n \"closed_by\": {\n \"full_url\": \"https://pagure.io/user/chrismurphy\", + \n \"fullname\": \"Chris Murphy\", \n \"name\": \"chrismurphy\", + \n \"url_path\": \"user/chrismurphy\"\n }, \n \"comments\": + [\n {\n \"comment\": \"Seems to have resolved itself\", \n + \ \"date_created\": \"1708581488\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 896970, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/chrismurphy\", \n \"fullname\": + \"Chris Murphy\", \n \"name\": \"chrismurphy\", \n \"url_path\": + \"user/chrismurphy\"\n }\n }, \n {\n \"comment\": + \"**Metadata Update from @chrismurphy**:\\n- Issue close_status updated to: + Invalid\\n- Issue status updated to: Closed (was: Open)\", \n \"date_created\": + \"1708581488\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 896971, \n \"notification\": true, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/chrismurphy\", \n \"fullname\": \"Chris + Murphy\", \n \"name\": \"chrismurphy\", \n \"url_path\": + \"user/chrismurphy\"\n }\n }\n ], \n \"content\": + \"**NOTE**\\r\\n\\r\\nIf your issue is for security or deals with sensitive + info please\\r\\nmark it as private using the checkbox below.\\r\\n\\r\\n# + Describe what you would like us to do:\\r\\n\\r\\nWhen updating a wiki entry + https://fedoraproject.org/wiki/User:Chrismurphy/Draft/dualboot_teststation + upon clicking Save Changes, I'm getting:\\r\\n\\r\\nGateway Timeout\\r\\nThe + gateway did not receive a timely response from the upstream server or application.\\r\\n\\r\\n# + When do you need this to be done by? (YYYY/MM/DD)\\r\\n\\r\\nnot urgent\\r\\n\", + \n \"custom_fields\": [], \n \"date_created\": \"1708578604\", \n + \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11784\", + \n \"id\": 11784, \n \"last_updated\": \"1708581488\", \n \"milestone\": + null, \n \"priority\": 1, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": + \"wiki gateway timeout when saving an update\", \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/chrismurphy\", \n \"fullname\": \"Chris Murphy\", + \n \"name\": \"chrismurphy\", \n \"url_path\": \"user/chrismurphy\"\n + \ }\n }, \n {\n \"assignee\": null, \n \"blocks\": [], + \n \"close_status\": \"Will Not/Can Not fix\", \n \"closed_at\": + \"1708593677\", \n \"closed_by\": {\n \"full_url\": \"https://pagure.io/user/zlopez\", + \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", \n \"name\": + \"zlopez\", \n \"url_path\": \"user/zlopez\"\n }, \n \"comments\": + [\n {\n \"comment\": \"The discourse instance in Fedora (https://discussion.fedoraproject.org) + is not maintained by Fedora Infrastructure team, so we don't have any way + to update it.\\r\\n\\r\\nTry to reach to @mattdm about this.\", \n \"date_created\": + \"1708593679\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 896990, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", + \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n + \ }\n }, \n {\n \"comment\": \"**Metadata Update + from @zlopez**:\\n- Issue close_status updated to: Will Not/Can Not fix\\n- + Issue status updated to: Closed (was: Open)\", \n \"date_created\": + \"1708593681\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 896991, \n \"notification\": true, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", + \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n + \ }\n }\n ], \n \"content\": \"**NOTE**\\r\\n\\r\\nIf + your issue is for security or deals with sensitive info please\\r\\nmark it + as private using the checkbox below.\\r\\n\\r\\n# Describe what you would + like us to do:\\r\\nUpdate and package discourse to have the latest and greatest\\r\\nhttps://release-monitoring.org/project/371547/\\r\\n\\r\\n# + When do you need this to be done by? (YYYY/MM/DD)\\r\\n-N/A\\r\\n\", \n \"custom_fields\": + [], \n \"date_created\": \"1708559961\", \n \"depends\": [], \n + \ \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11783\", + \n \"id\": 11783, \n \"last_updated\": \"1708593681\", \n \"milestone\": + null, \n \"priority\": 1, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": + \"Package discourse and update to latest\", \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/romulasry\", \n \"fullname\": \"Reon Beon\", + \n \"name\": \"romulasry\", \n \"url_path\": \"user/romulasry\"\n + \ }\n }, \n {\n \"assignee\": null, \n \"blocks\": [], + \n \"close_status\": \"Fixed\", \n \"closed_at\": \"1708486370\", + \n \"closed_by\": {\n \"full_url\": \"https://pagure.io/user/jflory7\", + \n \"fullname\": \"Justin W. Flory\", \n \"name\": \"jflory7\", + \n \"url_path\": \"user/jflory7\"\n }, \n \"comments\": [\n + \ {\n \"comment\": \"Just FYI, I saw this too, but it didn't + really seem worth it for the 4 users there. ;) \\r\\n\\r\\nBut we totally + can... \\r\\n\", \n \"date_created\": \"1708482713\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 896687, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @kevin**:\\n- Issue close_status updated to: Upstream\\n- + \"Is it only a config file change? If this is all that is required, I wouldn't + mind piloting it from the handful of channels I use with this account. I also + have the motive of wanting two different Element apps on my phone that are + each associated with different Matrix accounts with different privileges.\", + \n \"date_created\": \"1708483083\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 896688, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/jflory7\", \n \"fullname\": + \"Justin W. Flory\", \n \"name\": \"jflory7\", \n \"url_path\": + \"user/jflory7\"\n }\n }, \n {\n \"comment\": + \"the well-known file is up to date.\", \n \"date_created\": \"1708483509\", + \n \"edited_on\": null, \n \"editor\": null, \n \"id\": + 896692, \n \"notification\": false, \n \"parent\": null, + \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/darknao\", \n \"fullname\": \"Francois + Andrieu\", \n \"name\": \"darknao\", \n \"url_path\": + \"user/darknao\"\n }\n }, \n {\n \"comment\": + \"@darknao Thanks, login worked for me! Closing this issue as `Fixed`. :clapper: + \", \n \"date_created\": \"1708486372\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 896699, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/jflory7\", \n \"fullname\": + \"Justin W. Flory\", \n \"name\": \"jflory7\", \n \"url_path\": + \"user/jflory7\"\n }\n }, \n {\n \"comment\": + \"**Metadata Update from @jflory7**:\\n- Issue close_status updated to: Fixed\\n- Issue status updated to: Closed (was: Open)\", \n \"date_created\": - \"1707778257\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 895279, \n \"notification\": true, \n \"parent\": + \"1708486373\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 896700, \n \"notification\": true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", - \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }\n }\n ], \n \"content\": \"It seems CI fails - because it seems it doesn't follow the SPDX standard. E.g. the failure:\\r\\nhttps://artifacts.dev.testing-farm.io/762b0c29-1ca5-47e8-9703-07845f7087ad/\\r\\nI - guess it's because it matches the license tag case sensitive?\\r\\n\\r\\nE.g.:\\r\\nUnapproved - license in rrdtool-1.8.0-16.fc40.src: gpl-2.0-or-later\\r\\n\\r\\n$ license-validate - -v 'gpl-2.0-or-later'\\r\\nApproved license\\r\\n\\r\\nCheck the SPDX standard - for details, especially [1]:\\r\\n> License identifiers (including license - exception identifiers) used in SPDX documents or source code files should - be matched in a case-insensitive manner. In other words, MIT, Mit and mIt - should all be treated as the same identifier and referring to the same license.\\r\\n\\r\\n[1] - https://spdx.github.io/spdx-spec/v2.3/SPDX-license-expressions/#d2-case-sensitivity\\r\\n\\r\\n----\\r\\n\\r\\n# - When do you need this to be done by? (YYYY/MM/DD)\\r\\n\\r\\nsooner is better - or drop this invalid check\\r\\n----\\r\\n\", \n \"custom_fields\": [], - \n \"date_created\": \"1707510200\", \n \"depends\": [], \n \"full_url\": - \"https://pagure.io/fedora-infrastructure/issue/11766\", \n \"id\": 11766, - \n \"last_updated\": \"1707778257\", \n \"milestone\": null, \n - \ \"priority\": 3, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Closed\", \n \"tags\": [\n \"medium-gain\", - \n \"medium-trouble\", \n \"ops\"\n ], \n \"title\": - \"Unwaivable false positive CI license errors\", \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/jskarvad\", \n \"fullname\": \"Jaroslav \\u0160karvada\", - \n \"name\": \"jskarvad\", \n \"url_path\": \"user/jskarvad\"\n - \ }\n }, \n {\n \"assignee\": {\n \"full_url\": \"https://pagure.io/user/kevin\", - \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n - \ \"url_path\": \"user/kevin\"\n }, \n \"blocks\": [], \n - \ \"boards\": [\n {\n \"board\": {\n \"active\": - true, \n \"full_url\": \"https://pagure.io/fedora-infrastructure/boards/ops\", + \"https://pagure.io/user/jflory7\", \n \"fullname\": \"Justin W. + Flory\", \n \"name\": \"jflory7\", \n \"url_path\": + \"user/jflory7\"\n }\n }\n ], \n \"content\": \"# + Describe what you would like us to do:\\r\\n\\r\\nOn 2023-09-27, I received + this email from EMS, our Matrix homeserver host:\\r\\n\\r\\n> Hi Fedora Project,\\r\\n>\\r\\n> + We have just announced the first major \\u201cIgnition\\u201d release of our + next generation mobile client, Element X! This client has been rewritten from + the ground up with a focus on usability, performance and stability. In light + of this release we have recently configured your homeserver fedoraproject.org + to support Element X, however due to the custom domain name configuration + your homeserver has, some action is also required from you.\\r\\n>\\r\\n> + When setting up this homeserver you chose a custom homeserver name of fedoraproject.org + and configured some \\\"well-known\\\" JSON files hosted on your own servers. + These files are important to how Matrix works and to enable Element X support + on your homeserver the following changes are required. Please note, no action + is needed for other Matrix clients, these will continue to work as they have + done before.\\r\\n>\\r\\n> Please ensure the file [**`https://fedoraproject.org/.well-known/matrix/client`**](https://fedoraproject.org/.well-known/matrix/client), + which is hosted by you, has the following content:\\r\\n\\r\\n```json\\r\\n{\\r\\n + \ \\\"m.homeserver\\\": {\\r\\n \\\"base_url\\\": \\\"https://fedoraproject.ems.host\\\"\\r\\n + \ },\\r\\n \\\"m.identity_server\\\": {\\r\\n \\\"base_url\\\": \\\"https://vector.im\\\"\\r\\n + \ },\\r\\n \\\"org.matrix.msc3575.proxy\\\": {\\r\\n \\\"url\\\": \\\"https://fedoraproject.ems.host\\\"\\r\\n + \ }\\r\\n}\\r\\n```\\r\\n>\\r\\n> Please note, if you have customized your + client well-known file, it is important to add the `org.matrix.msc3575.proxy` + entry to the JSON file for Element X support. If you have any questions or + encounter problems when making these changes, please contact our Support team.\\r\\n>\\r\\n> + Once the above changes have been deployed on your side, you should be able + to login using Element X (available via Apple\\u2019s App Store and Google\\u2019s + Play Store)! To find more information about Element X please see our [blog](https://element.io/blog/element-x-ignition/).\\r\\n>\\r\\n> + Thanks,\\r\\n>\\r\\n> The Element Team\\r\\n\\r\\n# When do you need this + to be done by? (2024-03-06)\\r\\n\\r\\nBy Wednesday, March 6th would be good + so we can see if there is more work required to enable Element X on the `:fedoraproject.org` + homeserver.\", \n \"custom_fields\": [], \n \"date_created\": \"1708480425\", + \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11782\", + \n \"id\": 11782, \n \"last_updated\": \"1708486373\", \n \"milestone\": + null, \n \"priority\": 1, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": + \"Add \\\"org.matrix.msc3575.proxy\\\" to fedoraproject.org/.well-known/matrix/client\", + \n \"user\": {\n \"full_url\": \"https://pagure.io/user/jflory7\", + \n \"fullname\": \"Justin W. Flory\", \n \"name\": \"jflory7\", + \n \"url_path\": \"user/jflory7\"\n }\n }, \n {\n \"assignee\": + null, \n \"blocks\": [], \n \"boards\": [\n {\n \"board\": + {\n \"active\": true, \n \"full_url\": \"https://pagure.io/fedora-infrastructure/boards/ops\", \n \"name\": \"ops\", \n \"status\": [\n {\n \ \"bg_color\": \"#ffb300\", \n \"close\": false, \n \"close_status\": null, \n \"default\": true, @@ -1784,53 +1856,152 @@ interactions: \n \"name\": \"Blocked\"\n }\n ], \n \ \"tag\": {\n \"tag\": \"ops\", \n \"tag_color\": \"#3efa0e\", \n \"tag_description\": \"ops problem now...\"\n - \ }\n }, \n \"rank\": 835, \n \"status\": + \ }\n }, \n \"rank\": 844, \n \"status\": {\n \"bg_color\": \"#ffb300\", \n \"close\": false, \n \"close_status\": null, \n \"default\": true, \n \ \"name\": \"Backlog\"\n }\n }\n ], \n \"close_status\": - \"Fixed with Explanation\", \n \"closed_at\": \"1707438855\", \n \"closed_by\": + \"Upstream\", \n \"closed_at\": \"1708649792\", \n \"closed_by\": {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }, \n \"comments\": [\n {\n \"comment\": \"**Metadata - Update from @phsmoura**:\\n- Issue assigned to kevin\\n- Issue priority set - to: Waiting on Assignee (was: Needs Review)\\n- Issue tagged with: low-gain, - low-trouble, ops\", \n \"date_created\": \"1707419255\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 894949, \n \"notification\": - true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/phsmoura\", \n \"fullname\": - \"Pedro Moura\", \n \"name\": \"phsmoura\", \n \"url_path\": - \"user/phsmoura\"\n }\n }, \n {\n \"comment\": - \"Should be added. \\r\\n\\r\\nexport-policy rule create -policyname fedora_ftp - -clientmatch 10.3.166.69/32 -rorule sys -rwrule none -allow-suid false -ruleindex - 10\\r\\n\", \n \"date_created\": \"1707438858\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 894968, \n \"notification\": + \ }, \n \"comments\": [\n {\n \"comment\": \"We will + try and figure out where to direct this. \\r\\n\\r\\nPerhaps @msuchy could + say?\\r\\n\", \n \"date_created\": \"1708455996\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 896636, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @kevin**:\\n- Issue close_status updated to: Fixed - with Explanation\\n- Issue status updated to: Closed (was: Open)\", \n \"date_created\": - \"1707438858\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894969, \n \"notification\": true, \n \"parent\": + \"**Metadata Update from @kevin**:\\n- Issue priority set to: Waiting on Assignee + (was: Needs Review)\\n- Issue tagged with: low-gain, low-trouble, ops\", \n + \ \"date_created\": \"1708455997\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 896637, \n \"notification\": + true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": + \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": + \"user/kevin\"\n }\n }, \n {\n \"comment\": + \"@msrb is now responsible for ABRT. I can assist him with running the playbook + though. But this is likely issues with the code. Michal can you check it?\", + \n \"date_created\": \"1708463038\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 896658, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/msuchy\", \n \"fullname\": + \"Miroslav Such\\u00fd\", \n \"name\": \"msuchy\", \n \"url_path\": + \"user/msuchy\"\n }\n }, \n {\n \"comment\": + \"Hmm, thanks for bringing this up to my attention. I reverted to the previous + version, so everything should be good now :thumbsup: \", \n \"date_created\": + \"1708501677\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 896712, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/msrb\", \n \"fullname\": \"Michal Srb\", + \n \"name\": \"msrb\", \n \"url_path\": \"user/msrb\"\n + \ }\n }, \n {\n \"comment\": \"**Metadata Update + from @zlopez**:\\n- Issue priority set to: Waiting on Reporter (was: Waiting + on Assignee)\", \n \"date_created\": \"1708506862\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 896714, \n \"notification\": + true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": + \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": + \"user/zlopez\"\n }\n }, \n {\n \"comment\": + \"Maybe this is what was hiding behind that _500_ error but now I get:\\r\\n\\r\\n```\\r\\n--- + Running report_uReport ---\\r\\nServer responded with an error: 'Element 'stacktrace' + is invalid: List element is invalid: Element 'frames' is invalid: List element + is invalid: Element 'file_name' is missing'\\r\\n('report_uReport' exited + with 1)\\r\\n```\", \n \"date_created\": \"1708531577\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 896767, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/brianjmurrell\", \n + \ \"fullname\": \"Brian J. Murrell\", \n \"name\": \"brianjmurrell\", + \n \"url_path\": \"user/brianjmurrell\"\n }\n }, + \n {\n \"comment\": \"The core_backtrace retrieved from coredumpctl + likely has stack frames without filenames in it. Please open a bug for \\\"abrt\\\" + component and, if possible, attach the core_backtrace file from the problem + directory. Thanks ;)\", \n \"date_created\": \"1708539951\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 896785, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/msrb\", \n \"fullname\": + \"Michal Srb\", \n \"name\": \"msrb\", \n \"url_path\": + \"user/msrb\"\n }\n }, \n {\n \"comment\": + \"Let us know if we can do anything more here... thanks @msrb!\", \n \"date_created\": + \"1708649794\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 897554, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }\n }\n ], \n \"content\": \"For my work on MirrorManager2 - I'd like to give the `mm-crawler-dev.stg` machine (`10.3.166.69`) access to - the following NFS shares:\\r\\n\\r\\n- ntap-iad2-c02-fedora01-nfs01a:/fedora_ftp/fedora.redhat.com/pub\\r\\n- - ntap-iad2-c02-fedora01-nfs01a:/fedora_ftp_archive\\r\\n\\r\\nIt's a read-only - access. Thanks!\", \n \"custom_fields\": [], \n \"date_created\": - \"1707400245\", \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11765\", - \n \"id\": 11765, \n \"last_updated\": \"1707438858\", \n \"milestone\": - null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": + \ }\n }, \n {\n \"comment\": \"**Metadata Update + from @kevin**:\\n- Issue close_status updated to: Upstream\\n- Issue status + updated to: Closed (was: Open)\", \n \"date_created\": \"1708649795\", + \n \"edited_on\": null, \n \"editor\": null, \n \"id\": + 897555, \n \"notification\": true, \n \"parent\": null, + \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", + \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n + \ }\n }\n ], \n \"content\": \"When trying to report + a crash in pidgin with ABRT I get an error from `report_uReport`:\\r\\n\\r\\n```\\r\\n--- + Running report_uReport ---\\r\\nThe server at 'https://retrace.fedoraproject.org/faf' + encountered an internal error (got error 500)\\r\\n('report_uReport' exited + with 1)\\r\\n```\", \n \"custom_fields\": [], \n \"date_created\": + \"1708446819\", \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11781\", + \n \"id\": 11781, \n \"last_updated\": \"1708649795\", \n \"milestone\": + null, \n \"priority\": 4, \n \"private\": false, \n \"related_prs\": [], \n \"status\": \"Closed\", \n \"tags\": [\n \"low-gain\", \n \"low-trouble\", \n \"ops\"\n ], \n \"title\": - \"Add access to Fedora's mirror NFS volume\", \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/abompard\", \n \"fullname\": \"Aur\\u00e9lien - Bompard\", \n \"name\": \"abompard\", \n \"url_path\": \"user/abompard\"\n - \ }\n }, \n {\n \"assignee\": null, \n \"blocks\": [], - \n \"boards\": [\n {\n \"board\": {\n \"active\": - true, \n \"full_url\": \"https://pagure.io/fedora-infrastructure/boards/ops\", + \"The server at 'https://retrace.fedoraproject.org/faf' encountered an internal + error (got error 500)\", \n \"user\": {\n \"full_url\": \"https://pagure.io/user/brianjmurrell\", + \n \"fullname\": \"Brian J. Murrell\", \n \"name\": \"brianjmurrell\", + \n \"url_path\": \"user/brianjmurrell\"\n }\n }, \n {\n + \ \"assignee\": {\n \"full_url\": \"https://pagure.io/user/kevin\", + \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n + \ \"url_path\": \"user/kevin\"\n }, \n \"blocks\": [], \n + \ \"close_status\": \"Fixed with Explanation\", \n \"closed_at\": + \"1708120877\", \n \"closed_by\": {\n \"full_url\": \"https://pagure.io/user/kevin\", + \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n + \ \"url_path\": \"user/kevin\"\n }, \n \"comments\": [\n {\n + \ \"comment\": \"**Metadata Update from @kevin**:\\n- Issue assigned + to kevin\", \n \"date_created\": \"1708120873\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 895936, \n \"notification\": + true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": + \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": + \"user/kevin\"\n }\n }, \n {\n \"comment\": + \"Thanks. I've add you now, so you should see the site... \\r\\n\\r\\nlet + us know if you run into any problems. \", \n \"date_created\": \"1708120879\", + \n \"edited_on\": null, \n \"editor\": null, \n \"id\": + 895937, \n \"notification\": false, \n \"parent\": null, + \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", + \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n + \ }\n }, \n {\n \"comment\": \"**Metadata Update + from @kevin**:\\n- Issue close_status updated to: Fixed with Explanation\\n- + Issue status updated to: Closed (was: Open)\", \n \"date_created\": + \"1708120880\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 895938, \n \"notification\": true, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", + \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n + \ }\n }\n ], \n \"content\": \"**NOTE**\\r\\n\\r\\nIf + your issue is for security or deals with sensitive info please\\r\\nmark it + as private using the checkbox below.\\r\\n\\r\\n# Describe what you would + like us to do:\\r\\n----\\r\\nI've taken over administration of the University + of Calgary's open source mirror (https://mirror.cpsc.ucalgary.ca/) and would + like to have our Fedora mirror added to the public list.\\r\\n\\r\\nI am unable + to add UofC as a site in mirrormanager - I asked in the infrastructure Matrix + channel and this appears to be because a site already exists in UofC's name, + registered by a user who is no longer at the University. I'd like to be added + to the site so I can manage the mirror's entry.\\r\\n\\r\\n# When do you need + this to be done by? (YYYY/MM/DD)\\r\\n----\\r\\nNo defined end date\", \n + \ \"custom_fields\": [], \n \"date_created\": \"1708116810\", \n + \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11779\", + \n \"id\": 11779, \n \"last_updated\": \"1708120880\", \n \"milestone\": + null, \n \"priority\": 1, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": + \"Site ownership/membership change - University of Calgary\", \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/joedavison\", \n \"fullname\": + \"Joe Davison\", \n \"name\": \"joedavison\", \n \"url_path\": + \"user/joedavison\"\n }\n }, \n {\n \"assignee\": {\n \"full_url\": + \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", + \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n }, + \n \"blocks\": [], \n \"boards\": [\n {\n \"board\": + {\n \"active\": true, \n \"full_url\": \"https://pagure.io/fedora-infrastructure/boards/ops\", \n \"name\": \"ops\", \n \"status\": [\n {\n \ \"bg_color\": \"#ffb300\", \n \"close\": false, \n \"close_status\": null, \n \"default\": true, @@ -1852,63 +2023,160 @@ interactions: \n \"name\": \"Blocked\"\n }\n ], \n \ \"tag\": {\n \"tag\": \"ops\", \n \"tag_color\": \"#3efa0e\", \n \"tag_description\": \"ops problem now...\"\n - \ }\n }, \n \"rank\": 834, \n \"status\": + \ }\n }, \n \"rank\": 842, \n \"status\": {\n \"bg_color\": \"#ffb300\", \n \"close\": false, \n \"close_status\": null, \n \"default\": true, \n \ \"name\": \"Backlog\"\n }\n }\n ], \n \"close_status\": - \"Fixed\", \n \"closed_at\": \"1707778288\", \n \"closed_by\": {\n + \"Fixed\", \n \"closed_at\": \"1708557721\", \n \"closed_by\": {\n \ \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }, \n \"comments\": [\n {\n \"comment\": \"**Metadata - Update from @zlopez**:\\n- Issue priority set to: Waiting on Assignee (was: - Needs Review)\\n- Issue tagged with: Needs investigation, high-gain, ops\", - \n \"date_created\": \"1707395766\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 894892, \n \"notification\": - true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": - \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": - \"user/zlopez\"\n }\n }, \n {\n \"comment\": - \"These were all caused by my pushing updates right before the outage... it - was solved shortly after. \\r\\n\\r\\nDo you still see any similar failures?\\r\\n\", - \n \"date_created\": \"1707406075\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 894919, \n \"notification\": + \ }, \n \"comments\": [\n {\n \"comment\": \"FWIW, + my plan for db01 is: \\r\\n\\r\\n* I will be making a new db02 vm. rhel9 / + default postgresql \\r\\n* I will rsync all /var/lib/pgsql/data from db01 + to db02 (and possibly also to some other location to have a panic backup)\\r\\n* + I will rsync again before the outage window\\r\\n* at outage, take down db01's + postgresql\\r\\n* Do another rsync.\\r\\n* take down db01, save it's storage + and virt xml.\\r\\n* on db02 to a pg_upgrade to the default rhel9 version. + \\r\\n* on db02 upgrade postgresql to 15, do another pg_upgrade\\r\\n* rename + db02 to db01, switch it back to the db01 ip. \\r\\n* bring it back up. \\r\\n\\r\\n(I + did this with db-koji01 a while back just fine). \\r\\n\\r\\nI am going to + do this process now with staging. \", \n \"date_created\": \"1708111181\", + \n \"edited_on\": null, \n \"editor\": null, \n \"id\": + 895898, \n \"notification\": false, \n \"parent\": null, + \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", + \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n + \ }\n }, \n {\n \"comment\": \"It could be + wise to take down bodhi completely before taking down Koji, as failing to + tag builds will cause out of synch statuses between updates status and build + tags.\", \n \"date_created\": \"1708175072\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 895977, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": - \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": - \"user/kevin\"\n }\n }, \n {\n \"comment\": - \"This should be all solved as far as I can tell. \\r\\n\\r\\nPlease re-open - or file a new ticket if you are still seeing any issues. \\r\\n\", \n \"date_created\": - \"1707778290\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 895280, \n \"notification\": false, \n \"parent\": + {\n \"full_url\": \"https://pagure.io/user/mattia\", \n \"fullname\": + \"Mattia Verga\", \n \"name\": \"mattia\", \n \"url_path\": + \"user/mattia\"\n }\n }, \n {\n \"comment\": + \"I'm going to change this outage to just be the koji update. \\r\\n\\r\\nThinking + about it we are getting some new hardware soon, and I want to wait for that + to be setup for the new rhel9 db01. I could set it up on existing hardware, + but then would have to move it, etc. So, just putting it on the new hardware + in the first place makes more sense. ;) \\r\\n\\r\\nYeah, I can scale bodhi + down before koji is taken down, thanks for the input!\", \n \"date_created\": + \"1708197820\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 896046, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", + \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n + \ }\n }, \n {\n \"comment\": \"**Metadata Update + from @phsmoura**:\\n- Issue priority set to: Waiting on Assignee (was: Needs + Review)\\n- Issue tagged with: medium-gain, medium-trouble, ops\", \n \"date_created\": + \"1708369748\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 896374, \n \"notification\": true, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/phsmoura\", \n \"fullname\": \"Pedro Moura\", + \n \"name\": \"phsmoura\", \n \"url_path\": \"user/phsmoura\"\n + \ }\n }, \n {\n \"comment\": \"Outage is over. + \\r\\n\\r\\nI did try and do a vacuum full on the db, but the builrdoot table + is gigantic and it was taking a really really long time, so I ended up just + canceling. \\r\\nWe can try again sometime.\", \n \"date_created\": + \"1708557723\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 896866, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n \ }\n }, \n {\n \"comment\": \"**Metadata Update from @kevin**:\\n- Issue close_status updated to: Fixed\\n- Issue status updated - to: Closed (was: Open)\", \n \"date_created\": \"1707778292\", \n + to: Closed (was: Open)\", \n \"date_created\": \"1708557724\", \n \ \"edited_on\": null, \n \"editor\": null, \n \"id\": - 895281, \n \"notification\": true, \n \"parent\": null, + 896867, \n \"notification\": true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }\n }\n ], \n \"content\": \"Perhaps related to - this:\\r\\nhttps://pagure.io/fedora-infrastructure/issue/11753#comment-894275\\r\\n\\r\\nNow - koschei build on ppc64le is failing frequently with no logs:\\r\\ne.g.\\r\\n\\r\\nhttps://koji.fedoraproject.org/koji/taskinfo?taskID=113134441\\r\\nhttps://koji.fedoraproject.org/koji/taskinfo?taskID=113133793\\r\\nhttps://koji.fedoraproject.org/koji/taskinfo?taskID=113133391\\r\\nhttps://koji.fedoraproject.org/koji/taskinfo?taskID=113133789\\r\\n\\r\\nWould - you investigate the current status (maybe cleanup ppc64le builder)? Thank - you.\\r\\n\\r\\n\", \n \"custom_fields\": [], \n \"date_created\": - \"1707390344\", \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11764\", - \n \"id\": 11764, \n \"last_updated\": \"1707778292\", \n \"milestone\": - null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Closed\", \n \"tags\": [\n \"Needs investigation\", - \n \"high-gain\", \n \"ops\"\n ], \n \"title\": \"lots - of koschei failure on ppc64le with no root.log other logs\", \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/mtasaka\", \n \"fullname\": - \"Mamoru TASAKA\", \n \"name\": \"mtasaka\", \n \"url_path\": - \"user/mtasaka\"\n }\n }, \n {\n \"assignee\": {\n \"full_url\": - \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", - \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n - \ }, \n \"blocks\": [], \n \"boards\": [\n {\n \"board\": - {\n \"active\": true, \n \"full_url\": \"https://pagure.io/fedora-infrastructure/boards/ops\", + \ }\n }\n ], \n \"content\": \"Planned Outage - koji + upgrade - 2024-02-21 21:00 UTC\\r\\n\\r\\nThere will be an outage starting + at 2024-02-21 21:00 UTC, \\r\\nwhich will last approximately 3 hours.\\r\\n\\r\\nTo + convert UTC to your local time, take a look at\\r\\nhttp://fedoraproject.org/wiki/Infrastructure/UTCHowto\\r\\nor + run:\\r\\n\\r\\ndate -d '2024-02-21 21:00UTC'\\r\\n\\r\\nReason for outage: + \\r\\n\\r\\nkoji will be upgraded to 1.34.0, which requires a schema update + that touches many rows. We estimate this will take about 45minutes to complete + and during that time, koji will be completely offline. \\r\\nPackage maintainers + are advised to not start any long term builds before the outage.\\r\\n\\r\\nAffected + Services:\\r\\n\\r\\n* koji\\r\\n* bodhi\\r\\n\\r\\nTicket Link:\\r\\n\\r\\nhttps://pagure.io/fedora-infrastructure/issue/11778\\r\\n\\r\\nPlease + join #fedora-admin or #fedora-noc on irc.libera.chat\\r\\nor #admin:fedoraproject.org + / #noc:fedoraproject.org on matrix.\\r\\nPlease add comments to the ticket + for this outage above.\\r\\n\\r\\nUpdated status for this outage may be available + at\\r\\nhttps://www.fedorastatus.org/\", \n \"custom_fields\": [], \n + \ \"date_created\": \"1708110949\", \n \"depends\": [], \n \"full_url\": + \"https://pagure.io/fedora-infrastructure/issue/11778\", \n \"id\": 11778, + \n \"last_updated\": \"1708557724\", \n \"milestone\": null, \n + \ \"priority\": 3, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [\n \"medium-gain\", + \n \"medium-trouble\", \n \"ops\", \n \"outage\"\n ], + \n \"title\": \"Planned Outage - koji upgrade - 2024-02-21 21:00 UTC\", + \n \"user\": {\n \"full_url\": \"https://pagure.io/user/kevin\", + \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n + \ \"url_path\": \"user/kevin\"\n }\n }, \n {\n \"assignee\": + null, \n \"blocks\": [], \n \"close_status\": \"Fixed\", \n \"closed_at\": + \"1708108781\", \n \"closed_by\": {\n \"full_url\": \"https://pagure.io/user/catanzaro\", + \n \"fullname\": \"Michael Catanzaro\", \n \"name\": \"catanzaro\", + \n \"url_path\": \"user/catanzaro\"\n }, \n \"comments\": + [\n {\n \"comment\": \"So, pagure does have a block_user thing... + and indeed I do see you blocked for that project, but no clear idea why or + how that could have happened. \\r\\n\\r\\nI will unblock you. Huh, and I can't + unblock you with the web interface... so I just did it in the db. \\r\\n\\r\\nI + wonder if someone was playing with that functionaly, added you to test, then + couldn't remove it and didn't let anyone know?\\r\\n\\r\\nAnyhow, try now?\\r\\n\", + \n \"date_created\": \"1708107744\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 895894, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": + \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": + \"user/kevin\"\n }\n }, \n {\n \"comment\": + \"Yeah, it's fixed now. Thanks!\", \n \"date_created\": \"1708108783\", + \n \"edited_on\": null, \n \"editor\": null, \n \"id\": + 895896, \n \"notification\": false, \n \"parent\": null, + \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/catanzaro\", \n \"fullname\": \"Michael + Catanzaro\", \n \"name\": \"catanzaro\", \n \"url_path\": + \"user/catanzaro\"\n }\n }, \n {\n \"comment\": + \"**Metadata Update from @catanzaro**:\\n- Issue close_status updated to: + Fixed\\n- Issue status updated to: Closed (was: Open)\", \n \"date_created\": + \"1708108784\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 895897, \n \"notification\": true, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/catanzaro\", \n \"fullname\": \"Michael + Catanzaro\", \n \"name\": \"catanzaro\", \n \"url_path\": + \"user/catanzaro\"\n }\n }\n ], \n \"content\": + \"# Describe what you would like us to do:\\r\\n----\\r\\n\\r\\nWhen I try + to leave comments on the gnome-control-center project on src.fedoraproject.org, + the \\\"Submit Comment\\\" button becomes insensitive, and then nothing happens. + This has been broken for [at least three weeks now](https://src.fedoraproject.org/rpms/gnome-control-center/pull-request/20#comment-178977).\\r\\n\\r\\n[I + can comment on the gnome-initial-setup project without issue,](https://src.fedoraproject.org/rpms/gnome-initial-setup/pull-request/4#comment-183779) + so the problem seems to be specific to gnome-control-center.\\r\\n\\r\\nI'm + able to [push commits](https://src.fedoraproject.org/rpms/gnome-control-center/c/249b9d205494f4ed770160194ebd9638a8f2ca71?branch=rawhide) + without difficulty. But I cannot merge pull requests. When I try to merge + a pull request, it says:\\r\\n\\r\\n\\\"\\\"\\\"\\r\\nForbidden\\r\\n\\r\\nYou + have been blocked from this project\\r\\n\\\"\\\"\\\"\\r\\n\\r\\nThat's weird, + because I don't think pagure has settings for blocking people from projects. + At least, I can't find any such settings for projects where I am an admin. + I wonder why I'm blocked.\\r\\n\\r\\n(And Pagure really should display some + sort of error message instead of just failing to add a comment, but I guess + you probably don't track pagure issues here.)\\r\\n\\r\\n# When do you need + this to be done by? (YYYY/MM/DD)\\r\\n----\\r\\nPlease investigate when you + can. Since a date is required, I'll arbitrary pick 2024/02/19\", \n \"custom_fields\": + [], \n \"date_created\": \"1708107105\", \n \"depends\": [], \n + \ \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11777\", + \n \"id\": 11777, \n \"last_updated\": \"1708108784\", \n \"milestone\": + null, \n \"priority\": 1, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": + \"Cannot comment on gnome-control-center, cannot merge merge requests \\\"Forbidden + You have been blocked from this project\\\"\", \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/catanzaro\", \n \"fullname\": \"Michael Catanzaro\", + \n \"name\": \"catanzaro\", \n \"url_path\": \"user/catanzaro\"\n + \ }\n }, \n {\n \"assignee\": {\n \"full_url\": \"https://pagure.io/user/zlopez\", + \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", \n \"name\": + \"zlopez\", \n \"url_path\": \"user/zlopez\"\n }, \n \"blocks\": + [], \n \"boards\": [\n {\n \"board\": {\n \"active\": + true, \n \"full_url\": \"https://pagure.io/fedora-infrastructure/boards/ops\", \n \"name\": \"ops\", \n \"status\": [\n {\n \ \"bg_color\": \"#ffb300\", \n \"close\": false, \n \"close_status\": null, \n \"default\": true, @@ -1930,638 +2198,243 @@ interactions: \n \"name\": \"Blocked\"\n }\n ], \n \ \"tag\": {\n \"tag\": \"ops\", \n \"tag_color\": \"#3efa0e\", \n \"tag_description\": \"ops problem now...\"\n - \ }\n }, \n \"rank\": 833, \n \"status\": + \ }\n }, \n \"rank\": 843, \n \"status\": {\n \"bg_color\": \"#ffb300\", \n \"close\": false, \n \"close_status\": null, \n \"default\": true, \n \ \"name\": \"Backlog\"\n }\n }\n ], \n \"close_status\": - \"Fixed with Explanation\", \n \"closed_at\": \"1707397040\", \n \"closed_by\": - {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": - \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": - \"user/zlopez\"\n }, \n \"comments\": [\n {\n \"comment\": - \"**Metadata Update from @zlopez**:\\n- Issue priority set to: Waiting on - Assignee (was: Needs Review)\\n- Issue tagged with: Needs investigation, low-gain, - ops\", \n \"date_created\": \"1707387002\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 894866, \n \"notification\": - true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + \"Fixed\", \n \"closed_at\": \"1709230350\", \n \"closed_by\": {\n + \ \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": + \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n + \ }, \n \"comments\": [\n {\n \"comment\": \"**Metadata + Update from @zlopez**:\\n- Issue priority set to: Waiting on Assignee (was: + Needs Review)\\n- Issue tagged with: Needs investigation\", \n \"date_created\": + \"1708344324\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 896246, \n \"notification\": true, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", + \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n + \ }\n }, \n {\n \"comment\": \"I found this + in the logs:\\r\\n```\\r\\n[Wed Feb 14 06:19:22.038476 2024] [:error] [pid + 9210] [remote 10.3.163.74:100] mod_wsgi (pid=9210): Exception occurred processing + WSGI script '/usr/share/github2fedmsg/github2fedmsg.wsgi'.\\r\\n[Wed Feb 14 + 06:19:22.038574 2024] [:error] [pid 9210] [remote 10.3.163.74:100] Traceback + (most recent call last):\\r\\n[Wed Feb 14 06:19:22.038614 2024] [:error] [pid + 9210] [remote 10.3.163.74:100] File \\\"/usr/lib/python2.7/site-packages/tw2/core/middleware.py\\\", + line 204, in __call__\\r\\n[Wed Feb 14 06:19:22.038832 2024] [:error] [pid + 9210] [remote 10.3.163.74:100] resp = req.get_response(self.app, catch_exc_info=True)\\r\\n[Wed + Feb 14 06:19:22.038851 2024] [:error] [pid 9210] [remote 10.3.163.74:100] + \ File \\\"/usr/lib/python2.7/site-packages/WebOb-1.4.1-py2.7.egg/webob/request.py\\\", + line 1313, in send\\r\\n[Wed Feb 14 06:19:22.038872 2024] [:error] [pid 9210] + [remote 10.3.163.74:100] application, catch_exc_info=True)\\r\\n[Wed Feb + 14 06:19:22.038879 2024] [:error] [pid 9210] [remote 10.3.163.74:100] File + \\\"/usr/lib/python2.7/site-packages/WebOb-1.4.1-py2.7.egg/webob/request.py\\\", + line 1281, in call_application\\r\\n[Wed Feb 14 06:19:22.038892 2024] [:error] + [pid 9210] [remote 10.3.163.74:100] app_iter = application(self.environ, + start_response)\\r\\n[Wed Feb 14 06:19:22.038900 2024] [:error] [pid 9210] + [remote 10.3.163.74:100] File \\\"/usr/lib/python2.7/site-packages/paste/deploy/config.py\\\", + line 291, in __call__\\r\\n[Wed Feb 14 06:19:22.038914 2024] [:error] [pid + 9210] [remote 10.3.163.74:100] return self.app(environ, start_response)\\r\\n[Wed + Feb 14 06:19:22.038923 2024] [:error] [pid 9210] [remote 10.3.163.74:100] + \ File \\\"/usr/lib/python2.7/site-packages/pyramid/router.py\\\", line 242, + in __call__\\r\\n[Wed Feb 14 06:19:22.038937 2024] [:error] [pid 9210] [remote + 10.3.163.74:100] response = self.invoke_subrequest(request, use_tweens=True)\\r\\n[Wed + Feb 14 06:19:22.038944 2024] [:error] [pid 9210] [remote 10.3.163.74:100] + \ File \\\"/usr/lib/python2.7/site-packages/pyramid/router.py\\\", line 217, + in invoke_subrequest\\r\\n[Wed Feb 14 06:19:22.038967 2024] [:error] [pid + 9210] [remote 10.3.163.74:100] response = handle_request(request)\\r\\n[Wed + Feb 14 06:19:22.038976 2024] [:error] [pid 9210] [remote 10.3.163.74:100] + \ File \\\"/usr/lib/python2.7/site-packages/pyramid/tweens.py\\\", line 21, + in excview_tween\\r\\n[Wed Feb 14 06:19:22.038989 2024] [:error] [pid 9210] + [remote 10.3.163.74:100] response = handler(request)\\r\\n[Wed Feb 14 + 06:19:22.038996 2024] [:error] [pid 9210] [remote 10.3.163.74:100] File + \\\"/usr/lib/python2.7/site-packages/pyramid_tm/__init__.py\\\", line 99, + in tm_tween\\r\\n[Wed Feb 14 06:19:22.039010 2024] [:error] [pid 9210] [remote + 10.3.163.74:100] reraise(*exc_info)\\r\\n[Wed Feb 14 06:19:22.039016 2024] + [:error] [pid 9210] [remote 10.3.163.74:100] File \\\"/usr/lib/python2.7/site-packages/pyramid_tm/__init__.py\\\", + line 80, in tm_tween\\r\\n[Wed Feb 14 06:19:22.039028 2024] [:error] [pid + 9210] [remote 10.3.163.74:100] response = handler(request)\\r\\n[Wed Feb + 14 06:19:22.039038 2024] [:error] [pid 9210] [remote 10.3.163.74:100] File + \\\"/usr/lib/python2.7/site-packages/pyramid/router.py\\\", line 163, in handle_request\\r\\n[Wed + Feb 14 06:19:22.039050 2024] [:error] [pid 9210] [remote 10.3.163.74:100] + \ response = view_callable(context, request)\\r\\n[Wed Feb 14 06:19:22.039058 + 2024] [:error] [pid 9210] [remote 10.3.163.74:100] File \\\"/usr/lib/python2.7/site-packages/pyramid/config/views.py\\\", + line 329, in attr_view\\r\\n[Wed Feb 14 06:19:22.039087 2024] [:error] [pid + 9210] [remote 10.3.163.74:100] return view(context, request)\\r\\n[Wed + Feb 14 06:19:22.039101 2024] [:error] [pid 9210] [remote 10.3.163.74:100] + \ File \\\"/usr/lib/python2.7/site-packages/pyramid/config/views.py\\\", + line 305, in predicate_wrapper\\r\\n[Wed Feb 14 06:19:22.039115 2024] [:error] + [pid 9210] [remote 10.3.163.74:100] return view(context, request)\\r\\n[Wed + Feb 14 06:19:22.039121 2024] [:error] [pid 9210] [remote 10.3.163.74:100] + \ File \\\"/usr/lib/python2.7/site-packages/pyramid/config/views.py\\\", + line 355, in rendered_view\\r\\n[Wed Feb 14 06:19:22.039132 2024] [:error] + [pid 9210] [remote 10.3.163.74:100] result = view(context, request)\\r\\n[Wed + Feb 14 06:19:22.039139 2024] [:error] [pid 9210] [remote 10.3.163.74:100] + \ File \\\"/usr/lib/python2.7/site-packages/pyramid/config/views.py\\\", + line 501, in _requestonly_view\\r\\n[Wed Feb 14 06:19:22.039150 2024] [:error] + [pid 9210] [remote 10.3.163.74:100] response = view(request)\\r\\n[Wed + Feb 14 06:19:22.039157 2024] [:error] [pid 9210] [remote 10.3.163.74:100] + \ File \\\"/usr/lib/python2.7/site-packages/github2fedmsg/views/webhooks.py\\\", + line 132, in webhook\\r\\n[Wed Feb 14 06:19:22.039172 2024] [:error] [pid + 9210] [remote 10.3.163.74:100] fas_usernames = build_fas_lookup(payload)\\r\\n[Wed + Feb 14 06:19:22.039179 2024] [:error] [pid 9210] [remote 10.3.163.74:100] + \ File \\\"/usr/lib/python2.7/site-packages/github2fedmsg/views/webhooks.py\\\", + line 172, in build_fas_lookup\\r\\n[Wed Feb 14 06:19:22.039191 2024] [:error] + [pid 9210] [remote 10.3.163.74:100] usernames.add(commit['committer']['username'])\\r\\n[Wed + Feb 14 06:19:22.039219 2024] [:error] [pid 9210] [remote 10.3.163.74:100] + KeyError: 'username'\\r\\n```\\r\\n\\r\\nLooking at the [corresponding code](https://github.com/fedora-infra/github2fedmsg/blob/develop/github2fedmsg/views/webhooks.py#L182), + it's really strange because it's checking if the code is actually there before + accessing it. \\r\\nHm, it seems that the version is actually different in + github from the one that is deployed on production.\", \n \"date_created\": + \"1708347864\", \n \"edited_on\": \"1708347920\", \n \"editor\": {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": - \"user/zlopez\"\n }\n }, \n {\n \"comment\": - \"It failed on trying to rotate log files. I checked your account and you - should be able to do that as you are in correct `packager` group and the SELinux - context seems fine as well. Is this happening every time you try to push?\", - \n \"date_created\": \"1707387767\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 894869, \n \"notification\": + \"user/zlopez\"\n }, \n \"id\": 896268, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n }\n }, \n {\n \"comment\": - \"> Is this happening every time you try to push?\\r\\n\\r\\nI have tried - another push right now with the same issue.\\r\\n\\r\\n\\r\\n\", \n \"date_created\": - \"1707391037\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894875, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/vondruch\", \n \"fullname\": \"V\\u00edt - Ondruch\", \n \"name\": \"vondruch\", \n \"url_path\": - \"user/vondruch\"\n }\n }, \n {\n \"comment\": - \"Oh, now I also see this issue. Just I tried to do `$ git push` around 2024-Feb-08 - 20:05 (JST).\\r\\n\\r\\n```\\r\\nremote: PermissionError: [Errno 13] Permission - denied: '/var/log/pagure/pagure_auth.log' -> '/var/log/pagure/pagure_auth.log.2024-02-07'\\r\\nremote: - Call stack:\\r\\nremote: File \\\"/usr/lib/python3.6/site-packages/pagure/hooks/files/post-receive\\\", - line 48, in \\r\\nremote: run_hook_file(hooktype)\\r\\nremote: - \ File \\\"/usr/lib/python3.6/site-packages/pagure/hooks/__init__.py\\\", - line 550, in run_hook_file\\r\\nremote: pull_request,\\r\\nremote: File - \\\"/usr/lib/python3.6/site-packages/pagure/hooks/__init__.py\\\", line 392, - in run_project_hooks\\r\\nremote: changes=changes,\\r\\nremote: File - \\\"/usr/lib/python3.6/site-packages/pagure/hooks/__init__.py\\\", line 111, - in runhook\\r\\nremote: changes=changes,\\r\\nremote: File \\\"/usr/lib/python3.6/site-packages/pagure/hooks/default.py\\\", - line 445, in post_receive\\r\\nremote: oldrev,\\r\\nremote: File \\\"/usr/lib/python3.6/site-packages/pagure/hooks/default.py\\\", - line 219, in send_notifications\\r\\nremote: pagure.lib.notify.blinker_publish(topic, - msg)\\r\\nremote: File \\\"/usr/lib/python3.6/site-packages/pagure/lib/notify.py\\\", - line 153, in blinker_publish\\r\\nremote: _log.info(\\\"Sending blinker - signal to: pagure - topic: %s\\\", topic)\\r\\nremote: Message: 'Sending blinker - signal to: pagure - topic: %s'\\r\\nremote: Arguments: ('git.receive',)\\r\\nremote: - --- Logging error ---\\r\\nremote: Traceback (most recent call last):\\r\\nremote: - \ File \\\"/usr/lib64/python3.6/logging/handlers.py\\\", line 72, in emit\\r\\nremote: - \ self.doRollover()\\r\\nremote: File \\\"/usr/lib64/python3.6/logging/handlers.py\\\", - line 402, in doRollover\\r\\nremote: self.rotate(self.baseFilename, dfn)\\r\\nremote: - \ File \\\"/usr/lib64/python3.6/logging/handlers.py\\\", line 113, in rotate\\r\\nremote: - \ os.rename(source, dest)\\r\\nremote: PermissionError: [Errno 13] Permission - denied: '/var/log/pagure/pagure_auth.log' -> '/var/log/pagure/pagure_auth.log.2024-02-07'\\r\\nremote: - Call stack:\\r\\nremote: File \\\"/usr/lib/python3.6/site-packages/pagure/hooks/files/post-receive\\\", - line 48, in \\r\\nremote: run_hook_file(hooktype)\\r\\nremote: - \ File \\\"/usr/lib/python3.6/site-packages/pagure/hooks/__init__.py\\\", - line 550, in run_hook_file\\r\\nremote: pull_request,\\r\\nremote: File - \\\"/usr/lib/python3.6/site-packages/pagure/hooks/__init__.py\\\", line 392, - in run_project_hooks\\r\\nremote: changes=changes,\\r\\nremote: File - \\\"/usr/lib/python3.6/site-packages/pagure/hooks/__init__.py\\\", line 111, - in runhook\\r\\nremote: changes=changes,\\r\\nremote: File \\\"/usr/lib/python3.6/site-packages/pagure/hooks/default.py\\\", - line 445, in post_receive\\r\\nremote: oldrev,\\r\\nremote: File \\\"/usr/lib/python3.6/site-packages/pagure/hooks/default.py\\\", - line 222, in send_notifications\\r\\nremote: send_fedmsg_notifications(project, - topic, msg)\\r\\nremote: File \\\"/usr/lib/python3.6/site-packages/pagure/hooks/default.py\\\", - line 69, in send_fedmsg_notifications\\r\\nremote: pagure.lib.notify.fedora_messaging_publish(topic, - msg)\\r\\nremote: File \\\"/usr/lib/python3.6/site-packages/pagure/lib/notify.py\\\", - line 93, in fedora_messaging_publish\\r\\nremote: topic,\\r\\nremote: - Message: 'pagure is about to send a message that has no schemas: pagure.%s'\\r\\nremote: - Arguments: ('git.receive',)\\r\\nTo ssh://pkgs.fedoraproject.org/rpms/rubygem-minitest\\r\\n - \ 34d75e6..ae13795 rawhide -> rawhide\\r\\n```\", \n \"date_created\": - \"1707391083\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894876, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/mtasaka\", \n \"fullname\": \"Mamoru TASAKA\", - \n \"name\": \"mtasaka\", \n \"url_path\": \"user/mtasaka\"\n - \ }\n }, \n {\n \"comment\": \"I think that - previously, I have pushed something ~Jan 26 and that was without issues AFAIR\", - \n \"date_created\": \"1707391113\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 894877, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/vondruch\", \n \"fullname\": - \"V\\u00edt Ondruch\", \n \"name\": \"vondruch\", \n \"url_path\": - \"user/vondruch\"\n }\n }, \n {\n \"comment\": - \"Let me check the pagure log, if there isn't anything\", \n \"date_created\": - \"1707392718\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894878, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", - \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n - \ }\n }, \n {\n \"comment\": \"**Metadata Update - from @zlopez**:\\n- Issue assigned to zlopez\", \n \"date_created\": - \"1707392725\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894879, \n \"notification\": true, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", - \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n - \ }\n }, \n {\n \"comment\": \"@vondruch Does - the push itself works? Or it's blocking the push as well?\", \n \"date_created\": - \"1707393176\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894880, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", - \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n - \ }\n }, \n {\n \"comment\": \"There is an - issue with rotating pagure logs (hence, `doRollover` failing) due to inability - to move `/var/log/pagure_auth.log`: \\r\\n\\r\\n```\\r\\nremote: File \\\"/usr/lib64/python3.6/logging/handlers.py\\\", - line 72, in emit\\r\\nremote: self.doRollover()\\r\\nremote: File \\\"/usr/lib64/python3.6/logging/handlers.py\\\", - line 402, in doRollover\\r\\nremote: self.rotate(self.baseFilename, dfn)\\r\\nremote: - \ File \\\"/usr/lib64/python3.6/logging/handlers.py\\\", line 113, in rotate\\r\\nremote: - \ os.rename(source, dest)\\r\\nremote: PermissionError: [Errno 13] Permission - denied: '/var/log/pagure/pagure_auth.log' -> '/var/log/pagure/pagure_auth.log.2024-02-07'\\r\\n```\", - \n \"date_created\": \"1707393997\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 894883, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/abbra\", \n \"fullname\": - \"Alexander Bokovoy\", \n \"name\": \"abbra\", \n \"url_path\": - \"user/abbra\"\n }\n }, \n {\n \"comment\": - \"After some investigation I noticed that the group and permissions of the - log folder are not set correctly. So I fixed that. It should now work without - errors.\\r\\n\\r\\nReopen the ticket, if the error is still there.\", \n \"date_created\": - \"1707394592\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894884, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", - \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n - \ }\n }, \n {\n \"comment\": \"**Metadata Update - from @zlopez**:\\n- Issue close_status updated to: Fixed with Explanation\\n- - Issue status updated to: Closed (was: Open)\", \n \"date_created\": - \"1707394593\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894885, \n \"notification\": true, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", - \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n - \ }\n }, \n {\n \"comment\": \"> @vondruch - Does the push itself works? Or it's blocking the push as well?\\r\\n\\r\\nYep, - the push works.\", \n \"date_created\": \"1707394594\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 894886, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/vondruch\", \n \"fullname\": - \"V\\u00edt Ondruch\", \n \"name\": \"vondruch\", \n \"url_path\": - \"user/vondruch\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @vondruch**:\\n- Issue status updated to: Open (was: - Closed)\", \n \"date_created\": \"1707394594\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 894887, \n \"notification\": + \"**Metadata Update from @zlopez**:\\n- Issue **un**tagged with: Needs investigation\\n- + Issue assigned to zlopez\\n- Issue tagged with: low-gain, medium-trouble, + ops\", \n \"date_created\": \"1708425905\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 896502, \n \"notification\": true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/vondruch\", \n \"fullname\": - \"V\\u00edt Ondruch\", \n \"name\": \"vondruch\", \n \"url_path\": - \"user/vondruch\"\n }\n }, \n {\n \"comment\": - \"Hmmm:\\r\\n\\r\\n~~~\\r\\n$ git push fork HEAD -f\\r\\nEnumerating objects: - 38, done.\\r\\nCounting objects: 100% (35/35), done.\\r\\nDelta compression - using up to 8 threads\\r\\nCompressing objects: 100% (28/28), done.\\r\\nWriting - objects: 100% (28/28), 9.09 KiB | 9.09 MiB/s, done.\\r\\nTotal 28 (delta 19), - reused 0 (delta 0), pack-reused 0\\r\\nremote: Traceback (most recent call - last):\\r\\nremote: File \\\"/usr/lib64/python3.6/logging/config.py\\\", - line 565, in configure\\r\\nremote: handler = self.configure_handler(handlers[name])\\r\\nremote: - \ File \\\"/usr/lib64/python3.6/logging/config.py\\\", line 738, in configure_handler\\r\\nremote: - \ result = factory(**kwargs)\\r\\nremote: File \\\"/usr/lib64/python3.6/logging/handlers.py\\\", - line 205, in __init__\\r\\nremote: BaseRotatingHandler.__init__(self, - filename, 'a', encoding, delay)\\r\\nremote: File \\\"/usr/lib64/python3.6/logging/handlers.py\\\", - line 57, in __init__\\r\\nremote: logging.FileHandler.__init__(self, filename, - mode, encoding, delay)\\r\\nremote: File \\\"/usr/lib64/python3.6/logging/__init__.py\\\", - line 1032, in __init__\\r\\nremote: StreamHandler.__init__(self, self._open())\\r\\nremote: - \ File \\\"/usr/lib64/python3.6/logging/__init__.py\\\", line 1061, in _open\\r\\nremote: - \ return open(self.baseFilename, self.mode, encoding=self.encoding)\\r\\nremote: - PermissionError: [Errno 13] Permission denied: '/var/log/pagure/pagure_auth.log'\\r\\nremote: - \\r\\nremote: During handling of the above exception, another exception occurred:\\r\\nremote: - \\r\\nremote: Traceback (most recent call last):\\r\\nremote: File \\\"hooks/pre-receive\\\", - line 45, in \\r\\nremote: pagure.utils.set_up_logging(configkey=confkey)\\r\\nremote: - \ File \\\"/usr/lib/python3.6/site-packages/pagure/utils.py\\\", line 46, - in set_up_logging\\r\\nremote: logging.config.dictConfig(pagure_config.get(configkey) - or {\\\"version\\\": 1})\\r\\nremote: File \\\"/usr/lib64/python3.6/logging/config.py\\\", - line 802, in dictConfig\\r\\nremote: dictConfigClass(config).configure()\\r\\nremote: - \ File \\\"/usr/lib64/python3.6/logging/config.py\\\", line 573, in configure\\r\\nremote: - \ '%r: %s' % (name, e))\\r\\nremote: ValueError: Unable to configure handler - 'auth_handler': [Errno 13] Permission denied: '/var/log/pagure/pagure_auth.log'\\r\\nTo - ssh://pkgs.fedoraproject.org/forks/vondruch/rpms/ruby.git\\r\\n ! [remote - rejected] HEAD -> non-modular-ruby3.3 (pre-receive hook declined)\\r\\nerror: - failed to push some refs to 'ssh://pkgs.fedoraproject.org/forks/vondruch/rpms/ruby.git'\\r\\n~~~\", - \n \"date_created\": \"1707394743\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 894888, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/vondruch\", \n \"fullname\": - \"V\\u00edt Ondruch\", \n \"name\": \"vondruch\", \n \"url_path\": - \"user/vondruch\"\n }\n }, \n {\n \"comment\": - \"Does not work for me either, with the same error as for @vondruch. It is - basically couldn't open `pagure_auth.log` for write anymore.\", \n \"date_created\": - \"1707395260\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894889, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/abbra\", \n \"fullname\": \"Alexander - Bokovoy\", \n \"name\": \"abbra\", \n \"url_path\": - \"user/abbra\"\n }\n }, \n {\n \"comment\": - \"I see what happened, let me fix that.\", \n \"date_created\": \"1707395413\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 894890, \n \"notification\": false, \n \"parent\": null, - \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", - \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n - \ }\n }, \n {\n \"comment\": \"I forgot to - set `setgid` flag to `packager` group, so the file was created under the first - user that tried `git push`. So I set the file to `packager` group and added - the `setgid` for log folder. It should work now.\", \n \"date_created\": - \"1707395627\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894891, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", - \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n - \ }\n }, \n {\n \"comment\": \"> I forgot to - set `setgid` flag to `packager` group, so the file was created under the first - user that tried `git push`. So I set the file to `packager` group and added - the `setgid` for log folder. It should work now.\\r\\n\\r\\n~~~\\r\\n$ git - push fork HEAD -f\\r\\nEnumerating objects: 41, done.\\r\\nCounting objects: - 100% (38/38), done.\\r\\nDelta compression using up to 8 threads\\r\\nCompressing - objects: 100% (31/31), done.\\r\\nWriting objects: 100% (31/31), 9.40 KiB - | 2.35 MiB/s, done.\\r\\nTotal 31 (delta 21), reused 0 (delta 0), pack-reused - 0\\r\\nremote: Sending to redis to log activity and send commit notification - emails\\r\\nremote: * Publishing information for 10 commits\\r\\nremote: - - to fedora-message\\r\\nremote: 2024-02-08 12:41:58,757 [WARNING] pagure.lib.notify: - pagure is about to send a message that has no schemas: pagure.git.receive\\r\\nremote: - \\r\\nremote: Create a pull-request for non-modular-ruby3.3\\r\\nremote: https://src.fedoraproject.org/fork/vondruch/rpms/ruby/diff/rawhide..non-modular-ruby3.3\\r\\nremote: - \\r\\nTo ssh://pkgs.fedoraproject.org/forks/vondruch/rpms/ruby.git\\r\\n + - f760177...b035f3b HEAD -> non-modular-ruby3.3 (forced update)\\r\\n~~~\\r\\n\\r\\nSeems - to work. Thx.\\r\\n\\r\\nBTW it seems to me that you have fixed consequences, - but was also the root cause addressed?\", \n \"date_created\": \"1707396179\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 894893, \n \"notification\": false, \n \"parent\": null, - \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/vondruch\", \n \"fullname\": \"V\\u00edt - Ondruch\", \n \"name\": \"vondruch\", \n \"url_path\": - \"user/vondruch\"\n }\n }, \n {\n \"comment\": - \"I didn't found out what was the root issue for this, but noticed that change - of the permissions are [part of playbook as hotfix](https://pagure.io/fedora-infra/ansible/blob/main/f/roles/distgit/pagure/tasks/main.yml#_92). - So I just assume that there was some update done on the machine that replaced - the added permissions and the playbook wasn't run after that.\", \n \"date_created\": - \"1707397042\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894894, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {\n \"Thumbs up\": [\n \"vondruch\"\n - \ ]\n }, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", - \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n - \ }\n }, \n {\n \"comment\": \"**Metadata Update - from @zlopez**:\\n- Issue close_status updated to: Fixed with Explanation\\n- - Issue status updated to: Closed (was: Open)\", \n \"date_created\": - \"1707397042\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894895, \n \"notification\": true, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", - \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n - \ }\n }\n ], \n \"content\": \"This is my repo:\\r\\n\\r\\n~~~\\r\\n$ - git remote -v\\r\\nfork\\tssh://vondruch@pkgs.fedoraproject.org/forks/vondruch/rpms/ruby.git - (fetch)\\r\\nfork\\tssh://vondruch@pkgs.fedoraproject.org/forks/vondruch/rpms/ruby.git - (push)\\r\\norigin\\tssh://vondruch@pkgs.fedoraproject.org/rpms/ruby (fetch)\\r\\norigin\\tssh://vondruch@pkgs.fedoraproject.org/rpms/ruby - (push)\\r\\n~~~\\r\\n\\r\\nAnd there was a lot of noise after pushing some - changes:\\r\\n\\r\\n~~~\\r\\n$ git push fork HEAD\\r\\nEnumerating objects: - 17, done.\\r\\nCounting objects: 100% (17/17), done.\\r\\nDelta compression - using up to 8 threads\\r\\nCompressing objects: 100% (15/15), done.\\r\\nWriting - objects: 100% (15/15), 1.86 KiB | 951.00 KiB/s, done.\\r\\nTotal 15 (delta - 10), reused 0 (delta 0), pack-reused 0\\r\\nremote: --- Logging error ---\\r\\nremote: - Traceback (most recent call last):\\r\\nremote: File \\\"/usr/lib64/python3.6/logging/handlers.py\\\", - line 72, in emit\\r\\nremote: self.doRollover()\\r\\nremote: File \\\"/usr/lib64/python3.6/logging/handlers.py\\\", - line 402, in doRollover\\r\\nremote: self.rotate(self.baseFilename, dfn)\\r\\nremote: - \ File \\\"/usr/lib64/python3.6/logging/handlers.py\\\", line 113, in rotate\\r\\nremote: - \ os.rename(source, dest)\\r\\nremote: PermissionError: [Errno 13] Permission - denied: '/var/log/pagure/pagure_auth.log' -> '/var/log/pagure/pagure_auth.log.2024-02-07'\\r\\nremote: - Call stack:\\r\\nremote: File \\\"hooks/pre-receive\\\", line 48, in \\r\\nremote: - \ run_hook_file(hooktype)\\r\\nremote: File \\\"/usr/lib/python3.6/site-packages/pagure/hooks/__init__.py\\\", - line 550, in run_hook_file\\r\\nremote: pull_request,\\r\\nremote: File - \\\"/usr/lib/python3.6/site-packages/pagure/hooks/__init__.py\\\", line 323, - in run_project_hooks\\r\\nremote: authbackend = get_git_auth_helper()\\r\\nremote: - \ File \\\"/usr/lib/python3.6/site-packages/pagure/lib/git_auth.py\\\", line - 66, in get_git_auth_helper\\r\\nremote: _log.info(\\\"Looking for backend: - %s\\\", backend)\\r\\nremote: Message: 'Looking for backend: %s'\\r\\nremote: - Arguments: ('distgit',)\\r\\nremote: --- Logging error ---\\r\\nremote: Traceback - (most recent call last):\\r\\nremote: File \\\"/usr/lib64/python3.6/logging/handlers.py\\\", - line 72, in emit\\r\\nremote: self.doRollover()\\r\\nremote: File \\\"/usr/lib64/python3.6/logging/handlers.py\\\", - line 402, in doRollover\\r\\nremote: self.rotate(self.baseFilename, dfn)\\r\\nremote: - \ File \\\"/usr/lib64/python3.6/logging/handlers.py\\\", line 113, in rotate\\r\\nremote: - \ os.rename(source, dest)\\r\\nremote: PermissionError: [Errno 13] Permission - denied: '/var/log/pagure/pagure_auth.log' -> '/var/log/pagure/pagure_auth.log.2024-02-07'\\r\\nremote: - Call stack:\\r\\nremote: File \\\"hooks/pre-receive\\\", line 48, in \\r\\nremote: - \ run_hook_file(hooktype)\\r\\nremote: File \\\"/usr/lib/python3.6/site-packages/pagure/hooks/__init__.py\\\", - line 550, in run_hook_file\\r\\nremote: pull_request,\\r\\nremote: File - \\\"/usr/lib/python3.6/site-packages/pagure/hooks/__init__.py\\\", line 353, - in run_project_hooks\\r\\nremote: repodir=repodir,\\r\\nremote: File - \\\"/usr/lib/python3.6/site-packages/dist_git_auth.py\\\", line 197, in check_acl\\r\\nremote: - \ self.debug(\\\"Protected namespaces: %s\\\" % self.protected_namespaces)\\r\\nremote: - \ File \\\"/usr/lib/python3.6/site-packages/dist_git_auth.py\\\", line 128, - in debug\\r\\nremote: _log.debug(msg)\\r\\nremote: Message: \\\"Protected - namespaces: ['rpms', 'modules', 'container']\\\"\\r\\nremote: Arguments: ()\\r\\n\\r\\n... - snip ...\\r\\n\\r\\nremote: --- Logging error ---\\r\\nremote: Traceback (most - recent call last):\\r\\nremote: File \\\"/usr/lib64/python3.6/logging/handlers.py\\\", - line 72, in emit\\r\\nremote: self.doRollover()\\r\\nremote: File \\\"/usr/lib64/python3.6/logging/handlers.py\\\", - line 402, in doRollover\\r\\nremote: self.rotate(self.baseFilename, dfn)\\r\\nremote: - \ File \\\"/usr/lib64/python3.6/logging/handlers.py\\\", line 113, in rotate\\r\\nremote: - \ os.rename(source, dest)\\r\\nremote: PermissionError: [Errno 13] Permission - denied: '/var/log/pagure/pagure_auth.log' -> '/var/log/pagure/pagure_auth.log.2024-02-07'\\r\\nremote: - Call stack:\\r\\nremote: File \\\"/usr/lib/python3.6/site-packages/pagure/hooks/files/post-receive\\\", - line 48, in \\r\\nremote: run_hook_file(hooktype)\\r\\nremote: - \ File \\\"/usr/lib/python3.6/site-packages/pagure/hooks/__init__.py\\\", - line 550, in run_hook_file\\r\\nremote: pull_request,\\r\\nremote: File - \\\"/usr/lib/python3.6/site-packages/pagure/hooks/__init__.py\\\", line 392, - in run_project_hooks\\r\\nremote: changes=changes,\\r\\nremote: File - \\\"/usr/lib/python3.6/site-packages/pagure/hooks/__init__.py\\\", line 111, - in runhook\\r\\nremote: changes=changes,\\r\\nremote: File \\\"/usr/lib/python3.6/site-packages/pagure/hooks/default.py\\\", - line 445, in post_receive\\r\\nremote: oldrev,\\r\\nremote: File \\\"/usr/lib/python3.6/site-packages/pagure/hooks/default.py\\\", - line 222, in send_notifications\\r\\nremote: send_fedmsg_notifications(project, - topic, msg)\\r\\nremote: File \\\"/usr/lib/python3.6/site-packages/pagure/hooks/default.py\\\", - line 69, in send_fedmsg_notifications\\r\\nremote: pagure.lib.notify.fedora_messaging_publish(topic, - msg)\\r\\nremote: File \\\"/usr/lib/python3.6/site-packages/pagure/lib/notify.py\\\", - line 93, in fedora_messaging_publish\\r\\nremote: topic,\\r\\nremote: - Message: 'pagure is about to send a message that has no schemas: pagure.%s'\\r\\nremote: - Arguments: ('git.receive',)\\r\\nremote: \\r\\nremote: Create a pull-request - for non-modular-ruby3.3\\r\\nremote: https://src.fedoraproject.org/fork/vondruch/rpms/ruby/diff/rawhide..non-modular-ruby3.3\\r\\nremote: - \\r\\nTo ssh://pkgs.fedoraproject.org/forks/vondruch/rpms/ruby.git\\r\\n f49f4a7..bf1ad48 - \ HEAD -> non-modular-ruby3.3\\r\\n~~~\\r\\n\\r\\nSeems like some permission - issues or maybe Pagure out of space or something.\", \n \"custom_fields\": - [], \n \"date_created\": \"1707385733\", \n \"depends\": [], \n - \ \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11763\", - \n \"id\": 11763, \n \"last_updated\": \"1707397042\", \n \"milestone\": - null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Closed\", \n \"tags\": [\n \"Needs investigation\", - \n \"low-gain\", \n \"ops\"\n ], \n \"title\": \"Lot - of errors after `git push`\", \n \"user\": {\n \"full_url\": \"https://pagure.io/user/vondruch\", - \n \"fullname\": \"V\\u00edt Ondruch\", \n \"name\": \"vondruch\", - \n \"url_path\": \"user/vondruch\"\n }\n }, \n {\n \"assignee\": - {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": - \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": - \"user/zlopez\"\n }, \n \"blocks\": [], \n \"boards\": [\n - \ {\n \"board\": {\n \"active\": true, \n \"full_url\": - \"https://pagure.io/fedora-infrastructure/boards/ops\", \n \"name\": - \"ops\", \n \"status\": [\n {\n \"bg_color\": - \"#ffb300\", \n \"close\": false, \n \"close_status\": - null, \n \"default\": true, \n \"name\": \"Backlog\"\n - \ }, \n {\n \"bg_color\": \"#f4ff64\", - \n \"close\": false, \n \"close_status\": null, - \n \"default\": false, \n \"name\": \"Triaged\"\n - \ }, \n {\n \"bg_color\": \"#99d200\", - \n \"close\": false, \n \"close_status\": null, - \n \"default\": false, \n \"name\": \"In Progress\"\n - \ }, \n {\n \"bg_color\": \"#3c7bff\", - \n \"close\": false, \n \"close_status\": null, - \n \"default\": false, \n \"name\": \"In Review\"\n - \ }, \n {\n \"bg_color\": \"#15d415\", - \n \"close\": true, \n \"close_status\": \"Fixed\", - \n \"default\": false, \n \"name\": \"Done\"\n - \ }, \n {\n \"bg_color\": \"#e80909\", - \n \"close\": false, \n \"close_status\": null, - \n \"default\": false, \n \"name\": \"Blocked\"\n - \ }\n ], \n \"tag\": {\n \"tag\": - \"ops\", \n \"tag_color\": \"#3efa0e\", \n \"tag_description\": - \"ops problem now...\"\n }\n }, \n \"rank\": - 832, \n \"status\": {\n \"bg_color\": \"#ffb300\", \n - \ \"close\": false, \n \"close_status\": null, \n \"default\": - true, \n \"name\": \"Backlog\"\n }\n }\n ], - \n \"close_status\": \"Fixed\", \n \"closed_at\": \"1707386795\", - \n \"closed_by\": {\n \"full_url\": \"https://pagure.io/user/zlopez\", - \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", \n \"name\": - \"zlopez\", \n \"url_path\": \"user/zlopez\"\n }, \n \"comments\": - [\n {\n \"comment\": \"I checked it and it seems that it's - populated now. Feel free to reopen the ticket.\", \n \"date_created\": - \"1707381575\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894843, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", - \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n - \ }\n }, \n {\n \"comment\": \"**Metadata Update - from @zlopez**:\\n- Issue close_status updated to: Fixed\\n- Issue status - updated to: Closed (was: Open)\", \n \"date_created\": \"1707381576\", + {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": + \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": + \"user/zlopez\"\n }\n }, \n {\n \"comment\": + \"I patched the error I found in this [PR](https://pagure.io/fedora-infra/ansible/pull-request/1795). + @ralph Did it solved the error for you?\", \n \"date_created\": \"1708430203\", \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 894844, \n \"notification\": true, \n \"parent\": null, + 896533, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n \ }\n }, \n {\n \"comment\": \"**Metadata Update - from @remi**:\\n- Issue status updated to: Open (was: Closed)\", \n \"date_created\": - \"1707383261\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894846, \n \"notification\": true, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/remi\", \n \"fullname\": \"Remi Collet\", - \n \"name\": \"remi\", \n \"url_path\": \"user/remi\"\n - \ }\n }, \n {\n \"comment\": \"Sorry, but I - still see it empty\\r\\n\", \n \"date_created\": \"1707383275\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 894847, \n \"notification\": false, \n \"parent\": null, - \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/remi\", \n \"fullname\": \"Remi Collet\", - \n \"name\": \"remi\", \n \"url_path\": \"user/remi\"\n - \ }\n }, \n {\n \"comment\": \"I see it empty - as well, from both the internal Red Hat network and from the outside.\", \n - \ \"date_created\": \"1707383700\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 894849, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/mrc0mmand\", \n \"fullname\": - \"Frantisek Sumsal\", \n \"name\": \"mrc0mmand\", \n \"url_path\": - \"user/mrc0mmand\"\n }\n }, \n {\n \"comment\": - \"Ah, it looks like one of the mirrors(?) is not up to date:\\r\\n\\r\\n```\\r\\n$ - curl -Ls -v https://dl.fedoraproject.org/pub/ \\r\\n* processing: https://dl.fedoraproject.org/pub/\\r\\n* - \ Trying 38.145.60.23:443...\\r\\n..\\r\\n\\r\\n< Content-Length: 482\\r\\n< - Content-Type: text/html;charset=ISO-8859-1\\r\\n< \\r\\n\\r\\n\\r\\n \\r\\n Index - of /pub\\r\\n \\r\\n \\r\\n

Index of /pub

\\r\\n
\\\"Icon Name
-        \                   Last modified      Size
-        \ Description
\\\"[PARENTDIR]\\\" Parent Directory - - \ \\r\\n
\\r\\n\\r\\n* Connection #0 to host dl.fedoraproject.org - left intact\\r\\n```\\r\\n\\r\\n```\\r\\n$ curl -Ls -v https://dl.fedoraproject.org/pub/ - \\r\\n* processing: https://dl.fedoraproject.org/pub/\\r\\n* Trying 38.145.60.24:443...\\r\\n...\\r\\n< - Content-Length: 1176\\r\\n< Content-Type: text/html;charset=ISO-8859-1\\r\\n< - \\r\\n\\r\\n\\r\\n - \\r\\n Index of /pub\\r\\n \\r\\n \\r\\n

Index - of /pub

\\r\\n
\\\"Icon
-        Name                    Last
-        modified      Size  Description
\\\"[PARENTDIR]\\\" Parent - Directory - \\r\\n\\\"[TXT]\\\" DIRECTORY_SIZES.txt - \ 2024-02-07 03:07 9.4M \\r\\n\\\"[DIR]\\\" - alt/ 2024-02-08 00:58 - \\r\\n\\\"[DIR]\\\" archive/ - \ 2023-11-27 21:02 - \\r\\n\\\"[DIR]\\\" epel/ 2024-02-07 - 02:11 - \\r\\n\\\"[DIR]\\\" fedora-secondary/ 2024-02-07 10:06 - \ - \\r\\n\\\"[DIR]\\\" fedora/ - \ 2024-02-07 10:06 - \\r\\n
\\r\\n\\r\\n* - Connection #0 to host dl.fedoraproject.org left intact\\r\\n```\\r\\n```\\r\\n\\r\\n.22 - and .24 seem to serve populated index, only .23 is empty.\", \n \"date_created\": - \"1707384462\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894850, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/mrc0mmand\", \n \"fullname\": \"Frantisek - Sumsal\", \n \"name\": \"mrc0mmand\", \n \"url_path\": - \"user/mrc0mmand\"\n }\n }, \n {\n \"comment\": - \"I see things...I think this is a very intermittent failure \", \n \"date_created\": - \"1707384539\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894851, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/sumantrom\", \n \"fullname\": \"Sumantro - Mukherjee\", \n \"name\": \"sumantrom\", \n \"url_path\": - \"user/sumantrom\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @zlopez**:\\n- Issue priority set to: Waiting on - Assignee (was: Needs Review)\\n- Issue tagged with: high-gain, medium-trouble, - ops\", \n \"date_created\": \"1707385290\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 894852, \n \"notification\": + from @zlopez**:\\n- Issue priority set to: Waiting on Reporter (was: Waiting + on Assignee)\", \n \"date_created\": \"1708430215\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 896534, \n \"notification\": true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @zlopez**:\\n- Issue assigned to zlopez\", \n \"date_created\": - \"1707386518\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894857, \n \"notification\": true, \n \"parent\": + \"I just tried adding the repo again - still seen an error\", \n \"date_created\": + \"1708936979\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 897832, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", - \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n - \ }\n }, \n {\n \"comment\": \"The machine - in question was `dl02.iad2.fedoraproject.org`. I ran the playbook for it and - it's now populated. Checked all the other mirrors and they are fine.\\r\\n\\r\\nDidn't - found what caused it, but it's now solved.\", \n \"date_created\": - \"1707386797\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894860, \n \"notification\": false, \n \"parent\": + \"https://pagure.io/user/bkorren\", \n \"fullname\": \"bkorren\", + \n \"name\": \"bkorren\", \n \"url_path\": \"user/bkorren\"\n + \ }\n }, \n {\n \"comment\": \"@bkorren Looking + at the logs and I can see multiple `IOError: {u'documentation_url': u'https://docs.github.com/rest', + u'message': u'Bad credentials', 'status_code': 401}`.\\r\\nI tried it myself + and it seems that our github token probably expired. I will look into that.\", + \n \"date_created\": \"1708942214\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 897859, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {\n \"Thumbs + up\": [\n \"bkorren\"\n ]\n }, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": + \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": + \"user/zlopez\"\n }\n }, \n {\n \"comment\": + \"If the token is expired, does this mean the issue is no longer `low-gain` + because it affects everybody using the service?\", \n \"date_created\": + \"1708950624\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 897904, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", - \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n - \ }\n }, \n {\n \"comment\": \"**Metadata Update - from @zlopez**:\\n- Issue close_status updated to: Fixed\\n- Issue status - updated to: Closed (was: Open)\", \n \"date_created\": \"1707386798\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 894861, \n \"notification\": true, \n \"parent\": null, - \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", - \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n - \ }\n }, \n {\n \"comment\": \"Yup, can confirm - this as well, thanks!\", \n \"date_created\": \"1707387391\", \n - \ \"edited_on\": null, \n \"editor\": null, \n \"id\": - 894867, \n \"notification\": false, \n \"parent\": null, - \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/mrc0mmand\", \n \"fullname\": \"Frantisek - Sumsal\", \n \"name\": \"mrc0mmand\", \n \"url_path\": - \"user/mrc0mmand\"\n }\n }\n ], \n \"content\": - \"https://dl.fedoraproject.org/pub/ is empty\", \n \"custom_fields\": - [], \n \"date_created\": \"1707379907\", \n \"depends\": [], \n - \ \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11762\", - \n \"id\": 11762, \n \"last_updated\": \"1707387391\", \n \"milestone\": - null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Closed\", \n \"tags\": [\n \"high-gain\", - \n \"medium-trouble\", \n \"ops\"\n ], \n \"title\": - \"https://dl.fedoraproject.org/pub/ is empty\", \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/remi\", \n \"fullname\": \"Remi Collet\", - \n \"name\": \"remi\", \n \"url_path\": \"user/remi\"\n }\n - \ }, \n {\n \"assignee\": null, \n \"blocks\": [], \n \"close_status\": - \"Fixed\", \n \"closed_at\": \"1707372223\", \n \"closed_by\": {\n - \ \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": - \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }, \n \"comments\": [\n {\n \"comment\": \"koji - is back.\", \n \"date_created\": \"1707372240\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 894839, \n \"notification\": + \"https://pagure.io/user/bkorren\", \n \"fullname\": \"bkorren\", + \n \"name\": \"bkorren\", \n \"url_path\": \"user/bkorren\"\n + \ }\n }, \n {\n \"comment\": \"@bkorren You + are right, but I'm trying to confirm that this is really the case as I don't + have access to github token itself and I don't want to generate new one if + it's not needed.\", \n \"date_created\": \"1708950709\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 897906, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": - \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": - \"user/kevin\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @kevin**:\\n- Issue close_status updated to: Fixed\\n- - Issue status updated to: Closed (was: Open)\", \n \"date_created\": - \"1707372252\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894840, \n \"notification\": true, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", - \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }\n }\n ], \n \"content\": \"koji hubs were upgraded - to fedora 39 and are mostly fine. The one issue is that the fedora messaging - schema is broken so tag events are not being sent on the message bus. \\r\\n\\r\\nBecause - we depend very heavily on such events, I have shutdown the hub until we can - get the messaging fixed. \\r\\n\\r\\nSorry for the trouble, we hope to have - it back soon.\\r\\n\", \n \"custom_fields\": [], \n \"date_created\": - \"1707363552\", \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11761\", - \n \"id\": 11761, \n \"last_updated\": \"1707372252\", \n \"milestone\": - null, \n \"priority\": 0, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": - \"koji is down\", \n \"user\": {\n \"full_url\": \"https://pagure.io/user/kevin\", - \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n - \ \"url_path\": \"user/kevin\"\n }\n }, \n {\n \"assignee\": - null, \n \"blocks\": [], \n \"close_status\": \"Fixed\", \n \"closed_at\": - \"1707257458\", \n \"closed_by\": {\n \"full_url\": \"https://pagure.io/user/darknao\", - \n \"fullname\": \"Francois Andrieu\", \n \"name\": \"darknao\", - \n \"url_path\": \"user/darknao\"\n }, \n \"comments\": [\n - \ {\n \"comment\": \"meetbot-raw should be available again. - Thanks for the report.\", \n \"date_created\": \"1707257460\", \n - \ \"edited_on\": null, \n \"editor\": null, \n \"id\": - 894609, \n \"notification\": false, \n \"parent\": null, - \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/darknao\", \n \"fullname\": \"Francois - Andrieu\", \n \"name\": \"darknao\", \n \"url_path\": - \"user/darknao\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @darknao**:\\n- Issue close_status updated to: Fixed\\n- - Issue status updated to: Closed (was: Open)\", \n \"date_created\": - \"1707257461\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894610, \n \"notification\": true, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/darknao\", \n \"fullname\": \"Francois - Andrieu\", \n \"name\": \"darknao\", \n \"url_path\": - \"user/darknao\"\n }\n }\n ], \n \"content\": \"**NOTE**\\r\\n\\r\\nIf - your issue is for security or deals with sensitive info please\\r\\nmark it - as private using the checkbox below.\\r\\n\\r\\n# Describe what you would - like us to do:\\r\\nThis works:\\r\\nhttps://meetbot.fedoraproject.org/\\r\\n\\r\\nBut - this doesn't:\\r\\nhttps://meetbot-raw.fedoraproject.org//fedora-meeting-2/2024-02-06/workstation.2024-02-06-17.31.txt\\r\\n\\r\\n\\r\\n# - When do you need this to be done by? (YYYY/MM/DD)\\r\\nno specific requirement\\r\\n\", - \n \"custom_fields\": [], \n \"date_created\": \"1707254403\", \n - \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11760\", - \n \"id\": 11760, \n \"last_updated\": \"1707257461\", \n \"milestone\": - null, \n \"priority\": 1, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": - \"some meetbot URLs are hitting 503 error\", \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/chrismurphy\", \n \"fullname\": \"Chris Murphy\", - \n \"name\": \"chrismurphy\", \n \"url_path\": \"user/chrismurphy\"\n - \ }\n }, \n {\n \"assignee\": {\n \"full_url\": \"https://pagure.io/user/zlopez\", - \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", \n \"name\": - \"zlopez\", \n \"url_path\": \"user/zlopez\"\n }, \n \"blocks\": - [], \n \"close_status\": \"Fixed\", \n \"closed_at\": \"1707334873\", - \n \"closed_by\": {\n \"full_url\": \"https://pagure.io/user/tflink\", - \n \"fullname\": \"Tim Flink\", \n \"name\": \"tflink\", \n - \ \"url_path\": \"user/tflink\"\n }, \n \"comments\": [\n - \ {\n \"comment\": \"**Metadata Update from @zlopez**:\\n- - Issue priority set to: Waiting on Assignee (was: Needs Review)\\n- Issue tagged - with: low-gain, low-trouble\", \n \"date_created\": \"1707312915\", + {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": + \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": + \"user/zlopez\"\n }\n }, \n {\n \"comment\": + \"No, it seems like I can still enable/disable *other* repos in my personal + namespace.\", \n \"date_created\": \"1708962517\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 897976, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/ralph\", \n \"fullname\": + \"Ralph Bean\", \n \"name\": \"ralph\", \n \"url_path\": + \"user/ralph\"\n }\n }, \n {\n \"comment\": + \"**Metadata Update from @zlopez**:\\n- Issue priority set to: Waiting on + Assignee (was: Waiting on Reporter)\", \n \"date_created\": \"1708963084\", \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 894694, \n \"notification\": true, \n \"parent\": null, + 897979, \n \"notification\": true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n - \ }\n }, \n {\n \"comment\": \"I checked the - mailing list and you are an owner, but not subscribed to this list. Looking - at the other mailing lists it seems that you need to be subscribed as well - to receive the actual messages.\\r\\n\\r\\nTry to subscribe your e-mail and - let me know if that helped.\", \n \"date_created\": \"1707313090\", + \ }\n }, \n {\n \"comment\": \"I will look + into this deeper tomorrow as I can now reproduce the issue.\", \n \"date_created\": + \"1708963196\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 897980, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", + \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n + \ }\n }, \n {\n \"comment\": \"I was able to + solve this on my own account by reauthorizing GitHub. Just click on `Forget + GitHub Authz` on https://apps.fedoraproject.org/github2fedmsg after you log + in and authorize it again.\\r\\n\\r\\n@ralph Let me know if this works for + you as well.\", \n \"date_created\": \"1709030782\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 898179, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {\n \"Heart\": + [\n \"ralph\"\n ]\n }, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": + \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": + \"user/zlopez\"\n }\n }, \n {\n \"comment\": + \"**Metadata Update from @zlopez**:\\n- Issue priority set to: Waiting on + Reporter (was: Waiting on Assignee)\", \n \"date_created\": \"1709030954\", \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 894695, \n \"notification\": false, \n \"parent\": null, + 898184, \n \"notification\": true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n - \ }\n }, \n {\n \"comment\": \"**Metadata Update - from @zlopez**:\\n- Issue assigned to zlopez\", \n \"date_created\": - \"1707313095\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894696, \n \"notification\": true, \n \"parent\": + \ }\n }, \n {\n \"comment\": \"Yeah, this seems + to have finally worked for me now.\", \n \"date_created\": \"1709126845\", + \n \"edited_on\": null, \n \"editor\": null, \n \"id\": + 898418, \n \"notification\": false, \n \"parent\": null, + \n \"reactions\": {\n \"Heart\": [\n \"ralph\"\n + \ ]\n }, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/bkorren\", \n \"fullname\": \"bkorren\", + \n \"name\": \"bkorren\", \n \"url_path\": \"user/bkorren\"\n + \ }\n }, \n {\n \"comment\": \"Great - I think + this can be closed. Thanks for the help @zlopez!\", \n \"date_created\": + \"1709217562\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 898624, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", - \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n - \ }\n }, \n {\n \"comment\": \"Huh, I always - assumed that owner was a type of subscription, TIL. Makes for a very easy - fix, though.\\r\\n\\r\\nThanks for looking into this, I appreciate it.\", - \n \"date_created\": \"1707334875\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 894792, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/tflink\", \n \"fullname\": - \"Tim Flink\", \n \"name\": \"tflink\", \n \"url_path\": - \"user/tflink\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @tflink**:\\n- Issue close_status updated to: Fixed\\n- + \"https://pagure.io/user/ralph\", \n \"fullname\": \"Ralph Bean\", + \n \"name\": \"ralph\", \n \"url_path\": \"user/ralph\"\n + \ }\n }, \n {\n \"comment\": \"Thanks!\", \n + \ \"date_created\": \"1709230351\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 898649, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": + \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": + \"user/kevin\"\n }\n }, \n {\n \"comment\": + \"**Metadata Update from @kevin**:\\n- Issue close_status updated to: Fixed\\n- Issue status updated to: Closed (was: Open)\", \n \"date_created\": - \"1707334876\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894793, \n \"notification\": true, \n \"parent\": + \"1709230352\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 898650, \n \"notification\": true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/tflink\", \n \"fullname\": \"Tim Flink\", - \n \"name\": \"tflink\", \n \"url_path\": \"user/tflink\"\n - \ }\n }\n ], \n \"content\": \"# Describe what you - would like us to do:\\r\\n----\\r\\n\\r\\nI just realized that I'm not receiving - emails from the rocm-packagers-sig@lists.fedoraproject.org list even though - I'm an owner for the list. I receive the admin emails but I can't find any - of the list posts that aren't admin-related. I've searched my entire email - account including subfolders and spam folder but I can't find any of the non - admin-messages.\\r\\n\\r\\nIs this a list setting that I've managed to set - or unset by accident? If not, is there a reasonable way to find out if the - messages aren't being sent or if the problem is with my mail service provider?\\r\\n\\r\\n# - When do you need this to be done by? (YYYY/MM/DD)\\r\\n----\\r\\n\\r\\nNot - urgent - now that I know that I'm not getting the emails, I can just watch - the web interface but I would like to get this figured out sooner than later.\", - \n \"custom_fields\": [], \n \"date_created\": \"1707249449\", \n - \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11759\", - \n \"id\": 11759, \n \"last_updated\": \"1707334876\", \n \"milestone\": - null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": + \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", + \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n + \ }\n }\n ], \n \"content\": \"I tried to enable + a repo in github2fedmsg, but I was met with a 500 error.\\r\\n\\r\\nThe repo + is https://github.com/konflux-ci/project-controller\\r\\n\\r\\nI found that + I can toggle other repos under my personal namespace, but not this one.\\r\\n\\r\\n# + Describe what you would like us to do:\\r\\n\\r\\nCan you find the traceback + in the logs and share it here?\\r\\n\\r\\n# When do you need this to be done + by? (YYYY/MM/DD)\\r\\n\\r\\nNo rush. :)\", \n \"custom_fields\": [], + \n \"date_created\": \"1708030760\", \n \"depends\": [], \n \"full_url\": + \"https://pagure.io/fedora-infrastructure/issue/11776\", \n \"id\": 11776, + \n \"last_updated\": \"1709230352\", \n \"milestone\": null, \n + \ \"priority\": 4, \n \"private\": false, \n \"related_prs\": [], \n \"status\": \"Closed\", \n \"tags\": [\n \"low-gain\", - \n \"low-trouble\"\n ], \n \"title\": \"Not receiving email - from rocm-packagers-sig@lists.fedoraproject.org\", \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/tflink\", \n \"fullname\": \"Tim Flink\", - \n \"name\": \"tflink\", \n \"url_path\": \"user/tflink\"\n - \ }\n }, \n {\n \"assignee\": {\n \"full_url\": \"https://pagure.io/user/kevin\", - \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n - \ \"url_path\": \"user/kevin\"\n }, \n \"blocks\": [], \n - \ \"boards\": [\n {\n \"board\": {\n \"active\": - true, \n \"full_url\": \"https://pagure.io/fedora-infrastructure/boards/ops\", + \n \"medium-trouble\", \n \"ops\"\n ], \n \"title\": + \"github2fedmsg 500 error\", \n \"user\": {\n \"full_url\": \"https://pagure.io/user/ralph\", + \n \"fullname\": \"Ralph Bean\", \n \"name\": \"ralph\", \n + \ \"url_path\": \"user/ralph\"\n }\n }, \n {\n \"assignee\": + null, \n \"blocks\": [], \n \"boards\": [\n {\n \"board\": + {\n \"active\": true, \n \"full_url\": \"https://pagure.io/fedora-infrastructure/boards/ops\", \n \"name\": \"ops\", \n \"status\": [\n {\n \ \"bg_color\": \"#ffb300\", \n \"close\": false, \n \"close_status\": null, \n \"default\": true, @@ -2583,136 +2456,128 @@ interactions: \n \"name\": \"Blocked\"\n }\n ], \n \ \"tag\": {\n \"tag\": \"ops\", \n \"tag_color\": \"#3efa0e\", \n \"tag_description\": \"ops problem now...\"\n - \ }\n }, \n \"rank\": 831, \n \"status\": + \ }\n }, \n \"rank\": 841, \n \"status\": {\n \"bg_color\": \"#ffb300\", \n \"close\": false, \n \"close_status\": null, \n \"default\": true, \n \ \"name\": \"Backlog\"\n }\n }\n ], \n \"close_status\": - \"Fixed with Explanation\", \n \"closed_at\": \"1707440802\", \n \"closed_by\": - {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": - \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }, \n \"comments\": [\n {\n \"comment\": \"**Metadata - Update from @phsmoura**:\\n- Issue priority set to: Waiting on Assignee (was: - Needs Review)\\n- Issue tagged with: low-gain, low-trouble, ops\", \n \"date_created\": - \"1707246860\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894581, \n \"notification\": true, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/phsmoura\", \n \"fullname\": \"Pedro Moura\", - \n \"name\": \"phsmoura\", \n \"url_path\": \"user/phsmoura\"\n - \ }\n }, \n {\n \"comment\": \"**Metadata Update - from @kevin**:\\n- Issue assigned to kevin\", \n \"date_created\": - \"1707440799\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894972, \n \"notification\": true, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", - \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }\n }, \n {\n \"comment\": \"ok, done. The - old room is pointing to the fedoraproject.org one and I moved the #fedora-ci:fedora.im - alias over to it as well, so if anyone searches for that they will get the - new room. \\r\\n\\r\\nI don't think there's any way to default fedora.im homesever - users to searching fedoraproject.org. We usually just put aliases on all the - fedoraproject.org rooms so people can find them also in fedora.im. \\r\\n\\r\\n\", - \n \"date_created\": \"1707440804\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 894973, \n \"notification\": + null, \n \"closed_at\": null, \n \"closed_by\": null, \n \"comments\": + [\n {\n \"comment\": \"its in root.log...\\r\\n\\r\\nDEBUG + buildroot.py:802: kernel version == 6.6.9-100.fc38.x86_64\\r\\n\\r\\nyeah, + we can try... I can't right now, but later today or tomorrow possibly.\", + \n \"date_created\": \"1708030673\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 895775, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @kevin**:\\n- Issue close_status updated to: Fixed - with Explanation\\n- Issue status updated to: Closed (was: Open)\", \n \"date_created\": - \"1707440805\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894974, \n \"notification\": true, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", - \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }\n }, \n {\n \"comment\": \"Thanks! This - way at least people don't end up in abandoned rooms. \", \n \"date_created\": - \"1707467768\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894988, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/gui1ty\", \n \"fullname\": \"Sandro .\", - \n \"name\": \"gui1ty\", \n \"url_path\": \"user/gui1ty\"\n - \ }\n }\n ], \n \"content\": \"Today, I ended up - in the wrong room in Matrix searching for `fedora-ci`. It turned out the room - I was in, https://matrix.to/#/#fedora-ci:fedora.im, is no longer used. The - active room is at https://matrix.to/#/#fedora-ci:fedoraproject.org.\\r\\n\\r\\nCould - the `fedora.im` room be tombstoned, pointing to the active `fedoraproject.org` - room?\\r\\n\\r\\nThis issue also got me thinking if it's possible somehow - that `fedoraproject.org` rooms are shown in a simple search for users having - `fedora.im` as their home server? That's a separate request, which probably - deserves its own ticket, but I'm unsure where to report that. I'll gladly - take pointers.\", \n \"custom_fields\": [], \n \"date_created\": - \"1707229069\", \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11758\", - \n \"id\": 11758, \n \"last_updated\": \"1707467768\", \n \"milestone\": - null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Closed\", \n \"tags\": [\n \"low-gain\", - \n \"low-trouble\", \n \"ops\"\n ], \n \"title\": - \"Please tombstone stale fedora-ci Matrix room\", \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/gui1ty\", \n \"fullname\": \"Sandro .\", \n - \ \"name\": \"gui1ty\", \n \"url_path\": \"user/gui1ty\"\n }\n - \ }, \n {\n \"assignee\": null, \n \"blocks\": [], \n \"close_status\": - \"Fixed\", \n \"closed_at\": \"1707314338\", \n \"closed_by\": {\n - \ \"full_url\": \"https://pagure.io/user/dkirwan\", \n \"fullname\": - \"David Kirwan\", \n \"name\": \"dkirwan\", \n \"url_path\": - \"user/dkirwan\"\n }, \n \"comments\": [\n {\n \"comment\": - \"**Metadata Update from @dkirwan**:\\n- Issue assigned to dkirwan\", \n \"date_created\": - \"1707218124\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894495, \n \"notification\": true, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/dkirwan\", \n \"fullname\": \"David Kirwan\", - \n \"name\": \"dkirwan\", \n \"url_path\": \"user/dkirwan\"\n - \ }\n }, \n {\n \"comment\": \"**Metadata Update - from @dkirwan**:\\n- Issue tagged with: releng\", \n \"date_created\": - \"1707218173\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894496, \n \"notification\": true, \n \"parent\": + \"Ahh, I missed it in root.log - sure, whenever works for you, I don't think + there's any particular rush with it. Thanks!\", \n \"date_created\": + \"1708030883\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 895776, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/dkirwan\", \n \"fullname\": \"David Kirwan\", - \n \"name\": \"dkirwan\", \n \"url_path\": \"user/dkirwan\"\n + \"https://pagure.io/user/kalev\", \n \"fullname\": \"Kalev Lember\", + \n \"name\": \"kalev\", \n \"url_path\": \"user/kalev\"\n \ }\n }, \n {\n \"comment\": \"**Metadata Update from @phsmoura**:\\n- Issue priority set to: Waiting on Assignee (was: Needs - Review)\\n- Issue tagged with: low-trouble, medium-gain\", \n \"date_created\": - \"1707246645\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894580, \n \"notification\": true, \n \"parent\": + Review)\\n- Issue tagged with: low-gain, low-trouble, ops\", \n \"date_created\": + \"1708369623\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 896373, \n \"notification\": true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/phsmoura\", \n \"fullname\": \"Pedro Moura\", \n \"name\": \"phsmoura\", \n \"url_path\": \"user/phsmoura\"\n - \ }\n }, \n {\n \"comment\": \"I think you - mean sysadmin-noc sysadmin-web ?\\r\\n\\r\\n+1 \", \n \"date_created\": - \"1707260965\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894614, \n \"notification\": false, \n \"parent\": + \ }\n }, \n {\n \"comment\": \"yesterday opencv + have problems to build on i686 , https://src.fedoraproject.org/rpms/opencv/c/b645eac1f17dd2c587e0ccc4a9cac1aef5d70c30?branch=rawhide + , can we check if it is the kernel please ? \", \n \"date_created\": + \"1708903173\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 897796, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/sergiomb\", \n \"fullname\": \"S\\u00e9rgio + M. Basto\", \n \"name\": \"sergiomb\", \n \"url_path\": + \"user/sergiomb\"\n }\n }, \n {\n \"comment\": + \"Can you all try and duplicate the problem in staging? If we can see it there + we can more easily play with kernel versions, etc... \", \n \"date_created\": + \"1709067161\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 898323, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }\n }, \n {\n \"comment\": \"+1\", \n \"date_created\": - \"1707312555\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894691, \n \"notification\": false, \n \"parent\": + \ }\n }, \n {\n \"comment\": \"I sent a build\\r\\nhttps://koji.stg.fedoraproject.org/koji/taskinfo?taskID=120050383\\r\\n\\r\\nto + login in stg, we need to know the password of our user on https://accounts.stg.fedoraproject.org/ + which may be different of the accounts.fedora.org \", \n \"date_created\": + \"1709075491\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 898333, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", - \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n - \ }\n }, \n {\n \"comment\": \"**Metadata Update - from @dkirwan**:\\n- Assignee reset\\n- Issue **un**tagged with: low-trouble, - medium-gain, releng\\n- Issue close_status updated to: Fixed\\n- Issue status - updated to: Closed (was: Open)\", \n \"date_created\": \"1707314341\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 894712, \n \"notification\": true, \n \"parent\": null, - \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/dkirwan\", \n \"fullname\": \"David Kirwan\", - \n \"name\": \"dkirwan\", \n \"url_path\": \"user/dkirwan\"\n - \ }\n }\n ], \n \"content\": \"# Describe what you - would like us to do:\\r\\n----\\r\\n- `patrikp` should be added to `fedora-noc` - and `fedora-web` IPA groups\\r\\n- I am trying to finish a releng ticket [1] - and I also need the group membership for working on Zabbix monitoring\\r\\n# - When do you need this to be done by? (YYYY/MM/DD)\\r\\n----\\r\\nASAP\\r\\n\\r\\n[1] - https://pagure.io/releng/issue/11823\", \n \"custom_fields\": [], \n - \ \"date_created\": \"1707217973\", \n \"depends\": [], \n \"full_url\": - \"https://pagure.io/fedora-infrastructure/issue/11757\", \n \"id\": 11757, - \n \"last_updated\": \"1707314341\", \n \"milestone\": null, \n + \"https://pagure.io/user/sergiomb\", \n \"fullname\": \"S\\u00e9rgio + M. Basto\", \n \"name\": \"sergiomb\", \n \"url_path\": + \"user/sergiomb\"\n }\n }, \n {\n \"comment\": + \"i686 build failed \\r\\n\\r\\ncc1plus: out of memory allocating 11635488 + bytes after a total of 86609920 bytes\\r\\n\\r\\nDEBUG buildroot.py:803: kernel + version == 6.7.4-200.fc39.x86_64\", \n \"date_created\": \"1709080795\", + \n \"edited_on\": \"1709080874\", \n \"editor\": {\n \"full_url\": + \"https://pagure.io/user/sergiomb\", \n \"fullname\": \"S\\u00e9rgio + M. Basto\", \n \"name\": \"sergiomb\", \n \"url_path\": + \"user/sergiomb\"\n }, \n \"id\": 898342, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/sergiomb\", \n \"fullname\": + \"S\\u00e9rgio M. Basto\", \n \"name\": \"sergiomb\", \n \"url_path\": + \"user/sergiomb\"\n }\n }, \n {\n \"comment\": + \"Ok, I downgraded the x86 stg builders...\\r\\n\\r\\n```\\r\\nbuildvm-x86-02.stg.iad2.fedoraproject.org + | CHANGED | rc=0 | (stdout) 6.6.14-200.fc39.x86_64\\r\\nbuildvm-x86-03.stg.iad2.fedoraproject.org + | CHANGED | rc=0 | (stdout) 6.6.14-200.fc39.x86_64\\r\\nbuildvm-x86-04.stg.iad2.fedoraproject.org + | CHANGED | rc=0 | (stdout) 6.6.14-200.fc39.x86_64\\r\\nbuildvm-x86-05.stg.iad2.fedoraproject.org + | CHANGED | rc=0 | (stdout) 6.6.14-200.fc39.x86_64\\r\\nbuildvm-x86-01.stg.iad2.fedoraproject.org + | CHANGED | rc=0 | (stdout) 6.6.14-200.fc39.x86_64\\r\\n```\\r\\n\\r\\ncan + you try now?\", \n \"date_created\": \"1709162104\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 898527, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": + \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": + \"user/kevin\"\n }\n }, \n {\n \"comment\": + \"sure\\r\\n\", \n \"date_created\": \"1709162253\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 898528, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/sergiomb\", \n \"fullname\": + \"S\\u00e9rgio M. Basto\", \n \"name\": \"sergiomb\", \n \"url_path\": + \"user/sergiomb\"\n }\n }, \n {\n \"comment\": + \"https://koji.stg.fedoraproject.org/koji/taskinfo?taskID=120053756 build + started \", \n \"date_created\": \"1709167818\", \n \"edited_on\": + \"1709167839\", \n \"editor\": {\n \"full_url\": \"https://pagure.io/user/sergiomb\", + \n \"fullname\": \"S\\u00e9rgio M. Basto\", \n \"name\": + \"sergiomb\", \n \"url_path\": \"user/sergiomb\"\n }, + \n \"id\": 898537, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/sergiomb\", \n \"fullname\": \"S\\u00e9rgio + M. Basto\", \n \"name\": \"sergiomb\", \n \"url_path\": + \"user/sergiomb\"\n }\n }, \n {\n \"comment\": + \"i686 built without any debuginfo reduction or memory limitation . \\r\\n\\r\\nIt + is the kernel that makes the difference \\r\\n\", \n \"date_created\": + \"1709203300\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 898581, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/sergiomb\", \n \"fullname\": \"S\\u00e9rgio + M. Basto\", \n \"name\": \"sergiomb\", \n \"url_path\": + \"user/sergiomb\"\n }\n }\n ], \n \"content\": \"Would + it be possible to temporarily downgrade the kernel on one of the i686 builders? + I strongly suspect that webkitgtk build issues on i686 (see https://pagure.io/releng/issue/11952) + are somehow due to the builders getting a newer kernel and it would be good + to test the theory. I played around with the builds a bit locally and it seems + to point in that direction.\\r\\n\\r\\nLast build that went through was webkitgtk-2.43.4-3.fc40, + but I don't know how to check what version of kernel was on the build host + back then. Maybe we could pick one of the 6.6.x kernels if it's not clear + what version was installed back then?\", \n \"custom_fields\": [], \n + \ \"date_created\": \"1708029961\", \n \"depends\": [], \n \"full_url\": + \"https://pagure.io/fedora-infrastructure/issue/11775\", \n \"id\": 11775, + \n \"last_updated\": \"1709203300\", \n \"milestone\": null, \n \ \"priority\": 3, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": - \"`fedora-noc` and `fedora-web` IPA group membership\", \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/patrikp\", \n \"fullname\": - \"Patrik Polakovi\\u010d\", \n \"name\": \"patrikp\", \n \"url_path\": - \"user/patrikp\"\n }\n }, \n {\n \"assignee\": null, \n \"blocks\": - [], \n \"boards\": [\n {\n \"board\": {\n \"active\": + [], \n \"status\": \"Open\", \n \"tags\": [\n \"low-gain\", + \n \"low-trouble\", \n \"ops\"\n ], \n \"title\": + \"Test downgrade kernel on a i686 koji builder\", \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/kalev\", \n \"fullname\": \"Kalev Lember\", + \n \"name\": \"kalev\", \n \"url_path\": \"user/kalev\"\n }\n + \ }, \n {\n \"assignee\": {\n \"full_url\": \"https://pagure.io/user/kevin\", + \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n + \ \"url_path\": \"user/kevin\"\n }, \n \"blocks\": [], \n + \ \"boards\": [\n {\n \"board\": {\n \"active\": true, \n \"full_url\": \"https://pagure.io/fedora-infrastructure/boards/ops\", \n \"name\": \"ops\", \n \"status\": [\n {\n \ \"bg_color\": \"#ffb300\", \n \"close\": false, @@ -2735,416 +2600,250 @@ interactions: \n \"name\": \"Blocked\"\n }\n ], \n \ \"tag\": {\n \"tag\": \"ops\", \n \"tag_color\": \"#3efa0e\", \n \"tag_description\": \"ops problem now...\"\n - \ }\n }, \n \"rank\": 830, \n \"status\": + \ }\n }, \n \"rank\": 840, \n \"status\": {\n \"bg_color\": \"#ffb300\", \n \"close\": false, \n \"close_status\": null, \n \"default\": true, \n \ \"name\": \"Backlog\"\n }\n }\n ], \n \"close_status\": - null, \n \"closed_at\": null, \n \"closed_by\": null, \n \"comments\": - [\n {\n \"comment\": \"**Metadata Update from @phsmoura**:\\n- - Issue priority set to: Waiting on Assignee (was: Needs Review)\\n- Issue tagged - with: medium-gain, medium-trouble, ops\", \n \"date_created\": \"1707246436\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 894576, \n \"notification\": true, \n \"parent\": null, - \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/phsmoura\", \n \"fullname\": \"Pedro Moura\", - \n \"name\": \"phsmoura\", \n \"url_path\": \"user/phsmoura\"\n - \ }\n }, \n {\n \"comment\": \"What needs to - be done in here to automate this?\", \n \"date_created\": \"1707313520\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 894699, \n \"notification\": false, \n \"parent\": null, - \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", - \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n - \ }\n }, \n {\n \"comment\": \"Huh... this - shows to me as being renewed on jan 19th?\\r\\n\\r\\nAre you still showing - it as about to expire? \", \n \"date_created\": \"1707441327\", \n - \ \"edited_on\": null, \n \"editor\": null, \n \"id\": - 894977, \n \"notification\": false, \n \"parent\": null, - \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", - \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }\n }, \n {\n \"comment\": \"all good now - indeed. Can the renew+push to proxies part be automated somehow ? Just to - ensure I don't need to create similar ticket every ~90 days :)\\r\\n\", \n - \ \"date_created\": \"1707471947\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 894995, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/arrfab\", \n \"fullname\": - \"Fabian Arrotin\", \n \"name\": \"arrfab\", \n \"url_path\": - \"user/arrfab\"\n }\n }, \n {\n \"comment\": - \"Yes, we can... it's part of the ansible playbook. Normally we run it reasonably - often for other reasons, but in this case due to holidays and other fires - we hadn't \\r\\n\\r\\nI have an idea how to automate this, so will try and - put that in place. \\r\\n\\r\\nWhat exactly does your alert trigger on? How - many days to expire?\\r\\n\", \n \"date_created\": \"1707778456\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 895282, \n \"notification\": false, \n \"parent\": null, - \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", - \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }\n }, \n {\n \"comment\": \"we have multiple - warning level in zabbix for this, and we start getting notification when TLS - cert valididity is below 30 days, then escalate to next level when it's below - 14 days, then 7 days and up to \\\"disaster\\\" level when it's expired\", - \n \"date_created\": \"1707817974\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 895325, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/arrfab\", \n \"fullname\": - \"Fabian Arrotin\", \n \"name\": \"arrfab\", \n \"url_path\": - \"user/arrfab\"\n }\n }, \n {\n \"comment\": - \"ok, so if we renewed when there's say 35 days left, it should never alert - and be good enough?\\r\\n\", \n \"date_created\": \"1707860225\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 895416, \n \"notification\": false, \n \"parent\": null, - \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", - \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }\n }\n ], \n \"content\": \"Follow-up on ticket - #11659\\r\\nCan we have that automated and so not relying on me getting notification - from centos infra zabbix to ask you through ticket to [manually renew](https://docs.fedoraproject.org/en-US/infra/sysadmin_guide/ssl-certificates/#_renew_a_ssl_certificate) - and update cert ? I thought that it was automated but doesn't seem so ..\\r\\n\\r\\nTIA - :-)\", \n \"custom_fields\": [], \n \"date_created\": \"1707208128\", - \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11756\", - \n \"id\": 11756, \n \"last_updated\": \"1707860225\", \n \"milestone\": - null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Open\", \n \"tags\": [\n \"medium-gain\", - \n \"medium-trouble\", \n \"ops\"\n ], \n \"title\": - \"deploy renewed mirrors.centos.org TLS certs on mirrormanager proxies\", - \n \"user\": {\n \"full_url\": \"https://pagure.io/user/arrfab\", - \n \"fullname\": \"Fabian Arrotin\", \n \"name\": \"arrfab\", - \n \"url_path\": \"user/arrfab\"\n }\n }, \n {\n \"assignee\": - {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": + \"Fixed\", \n \"closed_at\": \"1709161311\", \n \"closed_by\": {\n + \ \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }, \n \"blocks\": [], \n \"boards\": [\n {\n \"board\": - {\n \"active\": true, \n \"full_url\": \"https://pagure.io/fedora-infrastructure/boards/ops\", - \n \"name\": \"ops\", \n \"status\": [\n {\n - \ \"bg_color\": \"#ffb300\", \n \"close\": false, - \n \"close_status\": null, \n \"default\": true, - \n \"name\": \"Backlog\"\n }, \n {\n - \ \"bg_color\": \"#f4ff64\", \n \"close\": false, - \n \"close_status\": null, \n \"default\": false, - \n \"name\": \"Triaged\"\n }, \n {\n - \ \"bg_color\": \"#99d200\", \n \"close\": false, - \n \"close_status\": null, \n \"default\": false, - \n \"name\": \"In Progress\"\n }, \n {\n - \ \"bg_color\": \"#3c7bff\", \n \"close\": false, - \n \"close_status\": null, \n \"default\": false, - \n \"name\": \"In Review\"\n }, \n {\n - \ \"bg_color\": \"#15d415\", \n \"close\": true, - \n \"close_status\": \"Fixed\", \n \"default\": - false, \n \"name\": \"Done\"\n }, \n {\n - \ \"bg_color\": \"#e80909\", \n \"close\": false, - \n \"close_status\": null, \n \"default\": false, - \n \"name\": \"Blocked\"\n }\n ], \n - \ \"tag\": {\n \"tag\": \"ops\", \n \"tag_color\": - \"#3efa0e\", \n \"tag_description\": \"ops problem now...\"\n - \ }\n }, \n \"rank\": 829, \n \"status\": - {\n \"bg_color\": \"#ffb300\", \n \"close\": false, - \n \"close_status\": null, \n \"default\": true, \n - \ \"name\": \"Backlog\"\n }\n }\n ], \n \"close_status\": - null, \n \"closed_at\": null, \n \"closed_by\": null, \n \"comments\": - [\n {\n \"comment\": \"**Metadata Update from @phsmoura**:\\n- - Issue priority set to: Waiting on Assignee (was: Needs Review)\\n- Issue tagged - with: medium-gain, medium-trouble, ops\", \n \"date_created\": \"1707160187\", + \ }, \n \"comments\": [\n {\n \"comment\": \"builds + are getting killed by OOM with every new toolchain release requiring to reduce + parallelism, see eg. https://koji.fedoraproject.org/koji/taskinfo?taskID=113539413\", + \n \"date_created\": \"1708020122\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 895741, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/sharkcz\", \n \"fullname\": + \"Dan Hor\\u00e1k\", \n \"name\": \"sharkcz\", \n \"url_path\": + \"user/sharkcz\"\n }\n }, \n {\n \"comment\": + \"So, this is not some kind of easy magic. I dislike that we have this channel + and really discourage adding more to it... but we can do it if needed. \\r\\n\\r\\nThe + downside is that if we add this then you will need to wait behind any builds + for the other things in the heavybuilder channel. ie, chromium and webkitgtk. + If those have a bunch of builds fired off (not upcommon for them to build + for all active branches), then your build will just wait until heavybuilder + resources are available. \\r\\n\\r\\nThat said, if you don't mind that it + could make builds a lot slower, but fail less we can try it. \\r\\n\", \n + \ \"date_created\": \"1708021135\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 895743, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": + \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": + \"user/kevin\"\n }\n }, \n {\n \"comment\": + \"**Metadata Update from @phsmoura**:\\n- Issue assigned to kevin\\n- Issue + priority set to: Waiting on Reporter (was: Needs Review)\\n- Issue tagged + with: low-trouble, medium-gain, ops\", \n \"date_created\": \"1708024031\", \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 894443, \n \"notification\": true, \n \"parent\": null, + 895750, \n \"notification\": true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/phsmoura\", \n \"fullname\": \"Pedro Moura\", \n \"name\": \"phsmoura\", \n \"url_path\": \"user/phsmoura\"\n - \ }\n }, \n {\n \"comment\": \"Thank you @kevin - for taking care of this.\", \n \"date_created\": \"1707212165\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 894484, \n \"notification\": false, \n \"parent\": null, - \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/praiskup\", \n \"fullname\": \"Pavel Raiskup\", - \n \"name\": \"praiskup\", \n \"url_path\": \"user/praiskup\"\n - \ }\n }, \n {\n \"comment\": \"I called dell - today since the support ticket I submitted via the chat thing 10 days ago - was not going anywhere. \\r\\n\\r\\nThey filed a new ticket for me, had me - gather debug info and try a few things. \\r\\n\\r\\nNext steps they want to - do a 'flea drain' on it and see if that helps, if not, they want us to try - and pull some memory banks that were showing errors in the past and see if - it boots. \\r\\n\\r\\nI've filed an internal ticket to get someone on site - at rdu2 to do that. \", \n \"date_created\": \"1707778546\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 895283, \n \"notification\": + \ }\n }, \n {\n \"comment\": \"a build finally + succeeded. If I could rely on normal builds not running out of memory every + time the wind changes direction I'd be happy to keep using the regular builders.\", + \n \"date_created\": \"1708088246\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 895844, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/kkeithle\", \n \"fullname\": + \"Kaleb S. KEITHLEY\", \n \"name\": \"kkeithle\", \n \"url_path\": + \"user/kkeithle\"\n }\n }, \n {\n \"comment\": + \"Is there any pattern to the failures? are they always on x84_64 / s390x? + \", \n \"date_created\": \"1708106316\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 895891, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @praiskup**:\\n- Issue tagged with: copr\", \n \"date_created\": - \"1708348907\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 896272, \n \"notification\": true, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/praiskup\", \n \"fullname\": \"Pavel Raiskup\", - \n \"name\": \"praiskup\", \n \"url_path\": \"user/praiskup\"\n - \ }\n }\n ], \n \"content\": \"vmhost-x86-copr02 - is currently down with hardware issues. \\r\\n\\r\\nI opened a ticket with - Dell on it on friday, but haven't heard back yet, will ping them again on - it. \\r\\n\\r\\nIt refuses to power up with a nasty sounding hardware message, - so I think it needs something replaced. \\r\\n\\r\\nFiling this ticket for - visibility.\\r\\n\\r\\nCC: @frostyx @praiskup \", \n \"custom_fields\": - [], \n \"date_created\": \"1707154819\", \n \"depends\": [], \n - \ \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11755\", - \n \"id\": 11755, \n \"last_updated\": \"1708348907\", \n \"milestone\": - null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Open\", \n \"tags\": [\n \"copr\", \n - \ \"medium-gain\", \n \"medium-trouble\", \n \"ops\"\n - \ ], \n \"title\": \"vmhost-x86-copr02 hardware issues\", \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": - \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }\n }, \n {\n \"assignee\": {\n \"full_url\": \"https://pagure.io/user/kevin\", - \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n - \ \"url_path\": \"user/kevin\"\n }, \n \"blocks\": [], \n - \ \"close_status\": \"Fixed\", \n \"closed_at\": \"1707419525\", - \n \"closed_by\": {\n \"full_url\": \"https://pagure.io/user/kevin\", - \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n - \ \"url_path\": \"user/kevin\"\n }, \n \"comments\": [\n {\n - \ \"comment\": \"Hackmd doc to track detailed progress: https://hackmd.io/zww5H2HJT8qKEz2-yPimqw\", - \n \"date_created\": \"1707157944\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 894432, \n \"notification\": + \"yes, AFAICR it's never happened on aarch64 or ppc64le.\", \n \"date_created\": + \"1708113705\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 895899, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/kkeithle\", \n \"fullname\": \"Kaleb S. + KEITHLEY\", \n \"name\": \"kkeithle\", \n \"url_path\": + \"user/kkeithle\"\n }\n }, \n {\n \"comment\": + \"How are things looking now?\\r\\n\\r\\nThe s390x builders have all been + replaced with new ones on a new mainframe with more memory and cpus... x86_64 + is the same however.\", \n \"date_created\": \"1709067099\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 898322, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @phsmoura**:\\n- Issue tagged with: medium-gain, - medium-trouble\", \n \"date_created\": \"1707160028\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 894441, \n \"notification\": - true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/phsmoura\", \n \"fullname\": - \"Pedro Moura\", \n \"name\": \"phsmoura\", \n \"url_path\": - \"user/phsmoura\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @phsmoura**:\\n- Issue priority set to: Waiting on - Assignee (was: Needs Review)\", \n \"date_created\": \"1707160034\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 894442, \n \"notification\": true, \n \"parent\": null, - \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/phsmoura\", \n \"fullname\": \"Pedro Moura\", - \n \"name\": \"phsmoura\", \n \"url_path\": \"user/phsmoura\"\n - \ }\n }, \n {\n \"comment\": \"This outage - was completed. \\r\\n\", \n \"date_created\": \"1707419527\", \n + \"I guess things are okay. I did a build for eln two weeks ago and I don't + remember that it had problems. jvanek did a side build the yesterday but + I don't know how it went.\\r\\n\\r\\nI guess leave it as it is for now. You + may close this issue.\", \n \"date_created\": \"1709124242\", \n \ \"edited_on\": null, \n \"editor\": null, \n \"id\": - 894950, \n \"notification\": false, \n \"parent\": null, - \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", - \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }\n }, \n {\n \"comment\": \"**Metadata Update - from @kevin**:\\n- Issue close_status updated to: Fixed\\n- Issue status updated - to: Closed (was: Open)\", \n \"date_created\": \"1707419527\", \n - \ \"edited_on\": null, \n \"editor\": null, \n \"id\": - 894951, \n \"notification\": true, \n \"parent\": null, + 898410, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/kkeithle\", \n \"fullname\": \"Kaleb S. + KEITHLEY\", \n \"name\": \"kkeithle\", \n \"url_path\": + \"user/kkeithle\"\n }\n }, \n {\n \"comment\": + \"ok. Please re-open or file a new one if you see it again... \\r\\n\\r\\n\", + \n \"date_created\": \"1709161314\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 898524, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": + \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": + \"user/kevin\"\n }\n }, \n {\n \"comment\": + \"**Metadata Update from @kevin**:\\n- Issue close_status updated to: Fixed\\n- + Issue status updated to: Closed (was: Open)\", \n \"date_created\": + \"1709161315\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 898525, \n \"notification\": true, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }\n }\n ], \n \"content\": \"Planned Outage - server - updates - 2024-02-07 22:00 UTC\\r\\n\\r\\nThere will be an outage starting - at 2024-02-07 22:00UTC, \\r\\nwhich will last approximately 6 hours.\\r\\n\\r\\nTo - convert UTC to your local time, take a look at\\r\\nhttp://fedoraproject.org/wiki/Infrastructure/UTCHowto\\r\\nor - run:\\r\\n\\r\\ndate -d '2024-02-07 22:00UTC'\\r\\n\\r\\nReason for outage: - \\r\\n\\r\\nWe will be applying updates and rebooting servers. No one service - should be down long, but may be up and down in the outage window.\\r\\nAdditionally, - as time permits we will be doing the following additional work:\\r\\n\\r\\n* - resizing disks on database servers\\r\\n\\r\\n* moving some database servers - to rhel9 and newer postgresql\\r\\n\\r\\n* applying some firmware updates\\r\\n\\r\\nAffected - Services:\\r\\n\\r\\nMost services will be affected for a short time, but - end user facing services (mirrorlists, websites) should not be affected.\\r\\n\\r\\nTicket - Link:\\r\\n\\r\\nhttps://pagure.io/fedora-infrastructure/issue/11752\\r\\n\\r\\nPlease - join #fedora-admin or #fedora-noc on irc.libera.chat\\r\\nor #admin:fedoraproject.org - / #noc:fedoraproject.org on matrix.\\r\\nPlease add comments to the ticket - for this outage above.\\r\\n\\r\\nUpdated status for this outage may be available - at\\r\\nhttps://www.fedorastatus.org/\\r\\n\", \n \"custom_fields\": - [], \n \"date_created\": \"1707149706\", \n \"depends\": [], \n - \ \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11754\", - \n \"id\": 11754, \n \"last_updated\": \"1707419527\", \n \"milestone\": - null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Closed\", \n \"tags\": [\n \"medium-gain\", - \n \"medium-trouble\", \n \"outage\"\n ], \n \"title\": - \"Planned Outage - server updates - 2024-02-07 22:00 UTC\", \n \"user\": + \ }\n }\n ], \n \"content\": \"**NOTE**\\r\\n\\r\\nIf + your issue is for security or deals with sensitive info please\\r\\nmark it + as private using the checkbox below.\\r\\n\\r\\n# Describe what you would + like us to do:\\r\\n----\\r\\n\\r\\nplease add ceph to the set of packages + that use the heavybuilder channel\\r\\n\\r\\n# When do you need this to be + done by? (YYYY/MM/DD)\\r\\n----\\r\\n\\r\\n2024/02/15\\r\\n\\r\\nThanks\", + \n \"custom_fields\": [], \n \"date_created\": \"1708019951\", \n + \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11774\", + \n \"id\": 11774, \n \"last_updated\": \"1709161315\", \n \"milestone\": + null, \n \"priority\": 4, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [\n \"low-trouble\", + \n \"medium-gain\", \n \"ops\"\n ], \n \"title\": + \"add ceph to the set of packages that use the heavybuilder channel\", \n + \ \"user\": {\n \"full_url\": \"https://pagure.io/user/kkeithle\", + \n \"fullname\": \"Kaleb S. KEITHLEY\", \n \"name\": \"kkeithle\", + \n \"url_path\": \"user/kkeithle\"\n }\n }, \n {\n \"assignee\": {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }\n }, \n {\n \"assignee\": null, \n \"blocks\": [], - \n \"close_status\": \"Upstream\", \n \"closed_at\": \"1706977595\", - \n \"closed_by\": {\n \"full_url\": \"https://pagure.io/user/kevin\", - \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n - \ \"url_path\": \"user/kevin\"\n }, \n \"comments\": [\n {\n - \ \"comment\": \"More weird errors: even logs are unavailable:\\r\\n\\r\\nhttps://koji.fedoraproject.org/koji/taskinfo?taskID=112847171\\r\\nhttps://koji.fedoraproject.org/koji/taskinfo?taskID=112847118\\r\\nhttps://koji.fedoraproject.org/koji/taskinfo?taskID=112843663\", - \n \"date_created\": \"1706968667\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 894272, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/mtasaka\", \n \"fullname\": - \"Mamoru TASAKA\", \n \"name\": \"mtasaka\", \n \"url_path\": - \"user/mtasaka\"\n }\n }, \n {\n \"comment\": - \"This seems to be a rpm and/or dnf5 bug. \\r\\n\\r\\nI filed:\\r\\n\\r\\nhttps://bugzilla.redhat.com/show_bug.cgi?id=2262344\\r\\n\\r\\non - it. \\r\\n\\r\\nCan you add your information there?\", \n \"date_created\": - \"1706977598\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894273, \n \"notification\": false, \n \"parent\": + \ }, \n \"blocks\": [], \n \"boards\": [\n {\n \"board\": + {\n \"active\": true, \n \"full_url\": \"https://pagure.io/fedora-infrastructure/boards/ops\", + \n \"name\": \"ops\", \n \"status\": [\n {\n + \ \"bg_color\": \"#ffb300\", \n \"close\": false, + \n \"close_status\": null, \n \"default\": true, + \n \"name\": \"Backlog\"\n }, \n {\n + \ \"bg_color\": \"#f4ff64\", \n \"close\": false, + \n \"close_status\": null, \n \"default\": false, + \n \"name\": \"Triaged\"\n }, \n {\n + \ \"bg_color\": \"#99d200\", \n \"close\": false, + \n \"close_status\": null, \n \"default\": false, + \n \"name\": \"In Progress\"\n }, \n {\n + \ \"bg_color\": \"#3c7bff\", \n \"close\": false, + \n \"close_status\": null, \n \"default\": false, + \n \"name\": \"In Review\"\n }, \n {\n + \ \"bg_color\": \"#15d415\", \n \"close\": true, + \n \"close_status\": \"Fixed\", \n \"default\": + false, \n \"name\": \"Done\"\n }, \n {\n + \ \"bg_color\": \"#e80909\", \n \"close\": false, + \n \"close_status\": null, \n \"default\": false, + \n \"name\": \"Blocked\"\n }\n ], \n + \ \"tag\": {\n \"tag\": \"ops\", \n \"tag_color\": + \"#3efa0e\", \n \"tag_description\": \"ops problem now...\"\n + \ }\n }, \n \"rank\": 839, \n \"status\": + {\n \"bg_color\": \"#ffb300\", \n \"close\": false, + \n \"close_status\": null, \n \"default\": true, \n + \ \"name\": \"Backlog\"\n }\n }\n ], \n \"close_status\": + null, \n \"closed_at\": null, \n \"closed_by\": null, \n \"comments\": + [\n {\n \"comment\": \"**Metadata Update from @kevin**:\\n- + Issue assigned to kevin\\n- Issue priority set to: Waiting on Assignee (was: + Needs Review)\\n- Issue tagged with: low-gain, low-trouble, ops\", \n \"date_created\": + \"1707937798\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 895594, \n \"notification\": true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }\n }, \n {\n \"comment\": \"**Metadata Update - from @kevin**:\\n- Issue close_status updated to: Upstream\\n- Issue status - updated to: Closed (was: Open)\", \n \"date_created\": \"1706977599\", + \ }\n }, \n {\n \"comment\": \"Can you make + my @kevin:fedoraproject.org account an admin there? I need that to add the + fedoraproject.org public address.\", \n \"date_created\": \"1709067017\", \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 894274, \n \"notification\": true, \n \"parent\": null, + 898321, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }\n }, \n {\n \"comment\": \"Oh, the non - log ones I think were because buildvm-s390x-18.s390.fedoraproject.org ran - out of space. (Due to dnf5 caching). \\r\\nhttps://pagure.io/releng/issue/11929\\r\\n(at - least from a quick glance all those were on 18)\\r\\n\", \n \"date_created\": - \"1706977716\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894275, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", - \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }\n }\n ], \n \"content\": \"Recently I see some - frequent koschei failure with failing to read package header, e.g.\\r\\n\\r\\nhttps://koji.fedoraproject.org/koji/taskinfo?taskID=112475224\\r\\nhttps://koji.fedoraproject.org/koji/taskinfo?taskID=112839582\\r\\nhttps://koji.fedoraproject.org/koji/taskinfo?taskID=112636082\\r\\n\\r\\nThese - show something like:\\r\\n\\r\\n```\\r\\nDEBUG util.py:463: [105/105] fedora-release-identity-basic - 100% | 900.0 KiB/s | 10.8 KiB | 00m00s\\r\\nDEBUG util.py:463: --------------------------------------------------------------------------------\\r\\nDEBUG - util.py:463: [105/105] Total 100% | 3.3 MiB/s | - \ 40.0 MiB | 00m12s\\r\\nDEBUG util.py:463: Running transaction\\r\\nDEBUG - util.py:461: Failed to read package header from file \\\"/var/cache/libdnf5/build-a089928214108df4/packages/libssh-config-0.10.6-4.fc40.noarch.rpm\\\"\\r\\nDEBUG - util.py:610: Child return code was: 1\\r\\nDEBUG util.py:185: kill orphans - in chroot /var/lib/mock/f40-build-48703068-5790430-bootstrap/root\\r\\n```\\r\\n\\r\\n(Packages - failing to read header seems random)\\r\\nI don't know if this is due to dnf5, - or koji network issue, or something else. Would you investigate this? Thank - you.\", \n \"custom_fields\": [], \n \"date_created\": \"1706968110\", - \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11753\", - \n \"id\": 11753, \n \"last_updated\": \"1706977716\", \n \"milestone\": + \ }\n }\n ], \n \"content\": \"# Describe what you + would like us to do:\\r\\n----\\r\\nI've created a Matrix room for the CentOS + Cloud SIG on behalf of @spotz as `#centos-cloud:fedora.im` and I'd like to + get it renamed to `#centos-cloud:fedoraproject.org` to make it official. Thanks!\\r\\n\\r\\n# + When do you need this to be done by? (YYYY/MM/DD)\\r\\n----\\r\\nnot urgent\", + \n \"custom_fields\": [], \n \"date_created\": \"1707931569\", \n + \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11773\", + \n \"id\": 11773, \n \"last_updated\": \"1709067017\", \n \"milestone\": + null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Open\", \n \"tags\": [\n \"low-gain\", + \n \"low-trouble\", \n \"ops\"\n ], \n \"title\": + \"Rename #centos-cloud:fedora.im to #centos-cloud:fedoraproject.org\", \n + \ \"user\": {\n \"full_url\": \"https://pagure.io/user/dcavalca\", + \n \"fullname\": \"Davide Cavalca\", \n \"name\": \"dcavalca\", + \n \"url_path\": \"user/dcavalca\"\n }\n }, \n {\n \"assignee\": + null, \n \"blocks\": [], \n \"close_status\": \"Fixed\", \n \"closed_at\": + \"1707918789\", \n \"closed_by\": {\n \"full_url\": \"https://pagure.io/user/darknao\", + \n \"fullname\": \"Francois Andrieu\", \n \"name\": \"darknao\", + \n \"url_path\": \"user/darknao\"\n }, \n \"comments\": [\n + \ {\n \"comment\": \"I restarted Mailman. Please check if you + still see that error and let us know.\", \n \"date_created\": \"1707918202\", + \n \"edited_on\": null, \n \"editor\": null, \n \"id\": + 895519, \n \"notification\": false, \n \"parent\": null, + \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/darknao\", \n \"fullname\": \"Francois + Andrieu\", \n \"name\": \"darknao\", \n \"url_path\": + \"user/darknao\"\n }\n }, \n {\n \"comment\": + \"That did the trick, thanks.\", \n \"date_created\": \"1707918733\", + \n \"edited_on\": null, \n \"editor\": null, \n \"id\": + 895521, \n \"notification\": false, \n \"parent\": null, + \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/rcritten\", \n \"fullname\": \"Rob Crittenden\", + \n \"name\": \"rcritten\", \n \"url_path\": \"user/rcritten\"\n + \ }\n }, \n {\n \"comment\": \"**Metadata Update + from @darknao**:\\n- Issue close_status updated to: Fixed\\n- Issue status + updated to: Closed (was: Open)\", \n \"date_created\": \"1707918790\", + \n \"edited_on\": null, \n \"editor\": null, \n \"id\": + 895522, \n \"notification\": true, \n \"parent\": null, + \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/darknao\", \n \"fullname\": \"Francois + Andrieu\", \n \"name\": \"darknao\", \n \"url_path\": + \"user/darknao\"\n }\n }\n ], \n \"content\": \"# + Describe what you would like us to do:\\r\\n\\r\\nI'm trying to moderate the + freeipa-users mailing list. Going to the moderation link, fails with the message:\\r\\nhttps://lists.fedoraproject.org/admin/lists/freeipa-users.lists.fedorahosted.org/held_messages\\r\\n```\\r\\nSomething + went wrong\\r\\n\\r\\nMailman REST API not available. Please start Mailman + core.\\r\\n```\\r\\n\\r\\n----\\r\\n\\r\\n# When do you need this to be done + by? (YYYY/MM/DD)\\r\\n\\r\\nI mean it's not super urgent but the queue is + building. It will become more urgent the longer mailman is not available.\\r\\n\\r\\n----\\r\\n\", + \n \"custom_fields\": [], \n \"date_created\": \"1707916008\", \n + \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11772\", + \n \"id\": 11772, \n \"last_updated\": \"1707918790\", \n \"milestone\": null, \n \"priority\": 1, \n \"private\": false, \n \"related_prs\": [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": - \"frequent koschei failure with failing to read package header\", \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/mtasaka\", \n \"fullname\": - \"Mamoru TASAKA\", \n \"name\": \"mtasaka\", \n \"url_path\": - \"user/mtasaka\"\n }\n }, \n {\n \"assignee\": null, \n \"blocks\": - [], \n \"close_status\": \"Fixed\", \n \"closed_at\": \"1706955013\", - \n \"closed_by\": {\n \"full_url\": \"https://pagure.io/user/aodaki\", - \n \"fullname\": \"Akihiko Odaki\", \n \"name\": \"aodaki\", - \n \"url_path\": \"user/aodaki\"\n }, \n \"comments\": [\n - \ {\n \"comment\": \"Try login out and back in, groups and - FPCA memberships are synced upon login :)\\n\", \n \"date_created\": - \"1706868038\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894195, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/pingou\", \n \"fullname\": \"Pierre-YvesChibon\", - \n \"name\": \"pingou\", \n \"url_path\": \"user/pingou\"\n - \ }\n }, \n {\n \"comment\": \"> Try login - out and back in, groups and FPCA memberships are synced upon login :)\\r\\n> - \\r\\n\\r\\nI did that, but had no luck.\", \n \"date_created\": - \"1706868094\", \n \"edited_on\": \"1706868106\", \n \"editor\": - {\n \"full_url\": \"https://pagure.io/user/aodaki\", \n \"fullname\": - \"Akihiko Odaki\", \n \"name\": \"aodaki\", \n \"url_path\": - \"user/aodaki\"\n }, \n \"id\": 894197, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/aodaki\", \n \"fullname\": - \"Akihiko Odaki\", \n \"name\": \"aodaki\", \n \"url_path\": - \"user/aodaki\"\n }\n }, \n {\n \"comment\": - \"@aodaki I can see that you have the correct groups in FAS. \\r\\n\\r\\nThe - sync should happen during login to src.fedoraproject.org. You could have something - cached on your side if this doesn't help. Could you try it in private window - of the browser? That should make it a clean login without anything hanging - in the caches.\", \n \"date_created\": \"1706870965\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 894198, \n \"notification\": + \"Mailman is not running?\", \n \"user\": {\n \"full_url\": \"https://pagure.io/user/rcritten\", + \n \"fullname\": \"Rob Crittenden\", \n \"name\": \"rcritten\", + \n \"url_path\": \"user/rcritten\"\n }\n }, \n {\n \"assignee\": + null, \n \"blocks\": [], \n \"close_status\": \"Duplicate\", \n + \ \"closed_at\": \"1707836951\", \n \"closed_by\": {\n \"full_url\": + \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", + \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n + \ }, \n \"comments\": [\n {\n \"comment\": \"Closing + as duplicate of https://pagure.io/fedora-infrastructure/issue/11769, but good + catch that status.fedoraproject.org is not changed. Thanks for pointing that + out.\", \n \"date_created\": \"1707836954\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 895369, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n }\n }, \n {\n \"comment\": - \"> @aodaki I can see that you have the correct groups in FAS.\\r\\n> \\r\\n> - The sync should happen during login to src.fedoraproject.org. You could have - something cached on your side if this doesn't help. Could you try it in private - window of the browser? That should make it a clean login without anything - hanging in the caches.\\r\\n\\r\\nIt worked! Thanks.\", \n \"date_created\": - \"1706955015\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894266, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/aodaki\", \n \"fullname\": \"Akihiko Odaki\", - \n \"name\": \"aodaki\", \n \"url_path\": \"user/aodaki\"\n - \ }\n }, \n {\n \"comment\": \"**Metadata Update - from @aodaki**:\\n- Issue close_status updated to: Fixed\\n- Issue status - updated to: Closed (was: Open)\", \n \"date_created\": \"1706955016\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 894267, \n \"notification\": true, \n \"parent\": null, - \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/aodaki\", \n \"fullname\": \"Akihiko Odaki\", - \n \"name\": \"aodaki\", \n \"url_path\": \"user/aodaki\"\n - \ }\n }\n ], \n \"content\": \"This issue is basically - the same with #7338, but I couldn't solve it by signing in and out src.fedoraproject.org - and pagure.io.\\r\\n\\r\\n# Describe what you would like us to do:\\r\\n\\r\\nPlease - synchronize my FPCA status. \\r\\n\\r\\n# When do you need this to be done - by? (YYYY/MM/DD)\\r\\n\\r\\nI have no strict deadline.\", \n \"custom_fields\": - [], \n \"date_created\": \"1706866815\", \n \"depends\": [], \n - \ \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11752\", - \n \"id\": 11752, \n \"last_updated\": \"1706955016\", \n \"milestone\": - null, \n \"priority\": 1, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": - \"Cannot fork on src.fedoraproject.org due to \\\"missing FPCA\\\" - but FPCA - is actually signed\", \n \"user\": {\n \"full_url\": \"https://pagure.io/user/aodaki\", - \n \"fullname\": \"Akihiko Odaki\", \n \"name\": \"aodaki\", - \n \"url_path\": \"user/aodaki\"\n }\n }, \n {\n \"assignee\": - {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": - \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }, \n \"blocks\": [], \n \"close_status\": \"Fixed with Explanation\", - \n \"closed_at\": \"1707419600\", \n \"closed_by\": {\n \"full_url\": - \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", - \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n }, - \n \"comments\": [\n {\n \"comment\": \"Current status:\\r\\n\\r\\nI - booted 01 in a 6.8.0rc2 kernel and it actually seemed to do pretty well overnight. - \\r\\nSo, I booted them all in that same kernel and will keep an eye out for - problems. \\r\\n\\r\\nThis new kernel seems to get load spikes, but it's still - actually processing fine and quite responsive. It does hit process alert limits - in nagios (Which I have silenced for now). \\r\\n\\r\\nThe bottleneck is really - the 7200rpm SATA drives. They just can't handle all the write seeking from - the guests very well. In all cases they are 100% utalized when the machines - are under heavy builds. I don't think this is related to raid or other higher - level items, since the drives themselves are being saturated. Perhaps we can - see if we can replace them with ssd/nvme drives.\", \n \"date_created\": - \"1706985356\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894301, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", - \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }\n }, \n {\n \"comment\": \"The 6.8.x kernel - seems to have made this much better... I am going to go ahead and close this - now, but if anyone notes super slow ppc64le builders please feel free to file - a new ticket or reopen this one. \\r\\n\", \n \"date_created\": \"1707419601\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 894952, \n \"notification\": false, \n \"parent\": null, - \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", - \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }\n }, \n {\n \"comment\": \"**Metadata Update - from @kevin**:\\n- Issue close_status updated to: Fixed with Explanation\\n- + \"**Metadata Update from @zlopez**:\\n- Issue close_status updated to: Duplicate\\n- Issue status updated to: Closed (was: Open)\", \n \"date_created\": - \"1707419602\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894953, \n \"notification\": true, \n \"parent\": + \"1707836955\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 895370, \n \"notification\": true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", - \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n - \ }\n }\n ], \n \"content\": \"Lately the buildvm-ppc64le - builders have been slow and causing build failures sometimes with network - timeouts. \\r\\n\\r\\nI have moved the createrepo channel off all of them - (and over to the much faster aarch64 buildvms). \\r\\n\\r\\nI've done a bunch - of investigating on bvmhost-p09-01 today and found: \\r\\n\\r\\n* 6.5.x kernel - seems to handle things better, 6.6.x and 6.7.x and 6.8.x all get really really - high load, but do keep running at least. \\r\\n* The problem seems to just - be disk i/o in the end. These machines have 7200rpm spinning sata drives and - they are just slow. ;( \\r\\n\\r\\nI'm not sure a good solution yet. I am - going to move them all back to 6.5.x kernels since that seems to handle things - best currently. \\r\\nPerhaps we can look at replacing the drives in them - with something better, or once we get new stotage in Q2, moving to iscsi. - \\r\\n\\r\\nThis is just a tracking ticket for trying to make them more performant.\", - \n \"custom_fields\": [], \n \"date_created\": \"1706831134\", \n - \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11751\", - \n \"id\": 11751, \n \"last_updated\": \"1707419602\", \n \"milestone\": - null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Closed\", \n \"tags\": [\n \"high-gain\", - \n \"high-trouble\"\n ], \n \"title\": \"power9 builders - slow\", \n \"user\": {\n \"full_url\": \"https://pagure.io/user/kevin\", - \n \"fullname\": \"Kevin Fenzi\", \n \"name\": \"kevin\", \n - \ \"url_path\": \"user/kevin\"\n }\n }, \n {\n \"assignee\": - {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": - \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": - \"user/zlopez\"\n }, \n \"blocks\": [], \n \"boards\": [\n + \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", + \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n + \ }\n }\n ], \n \"content\": \"Koji seems to be down + at the moment, returning \\\"The server is offline. Please try again later.\\\". + There is no relevant outage listed at https://status.fedoraproject.org/, so + I presume this is not planned.\\r\\n\\r\\nCould someone look into it?\", \n + \ \"custom_fields\": [], \n \"date_created\": \"1707836601\", \n + \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11771\", + \n \"id\": 11771, \n \"last_updated\": \"1707836955\", \n \"milestone\": + null, \n \"priority\": 1, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": + \"Koji is down\", \n \"user\": {\n \"full_url\": \"https://pagure.io/user/omos\", + \n \"fullname\": \"Ondrej Mosn\\u00e1\\u010dek\", \n \"name\": + \"omos\", \n \"url_path\": \"user/omos\"\n }\n }, \n {\n + \ \"assignee\": null, \n \"blocks\": [], \n \"boards\": [\n \ {\n \"board\": {\n \"active\": true, \n \"full_url\": \"https://pagure.io/fedora-infrastructure/boards/ops\", \n \"name\": \"ops\", \n \"status\": [\n {\n \"bg_color\": @@ -3168,135 +2867,58 @@ interactions: \ }\n ], \n \"tag\": {\n \"tag\": \"ops\", \n \"tag_color\": \"#3efa0e\", \n \"tag_description\": \"ops problem now...\"\n }\n }, \n \"rank\": - 827, \n \"status\": {\n \"bg_color\": \"#ffb300\", \n + 838, \n \"status\": {\n \"bg_color\": \"#ffb300\", \n \ \"close\": false, \n \"close_status\": null, \n \"default\": true, \n \"name\": \"Backlog\"\n }\n }\n ], - \n \"close_status\": \"Fixed\", \n \"closed_at\": \"1706871255\", - \n \"closed_by\": {\n \"full_url\": \"https://pagure.io/user/zlopez\", - \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", \n \"name\": - \"zlopez\", \n \"url_path\": \"user/zlopez\"\n }, \n \"comments\": - [\n {\n \"comment\": \"**Metadata Update from @zlopez**:\\n- - Issue priority set to: Waiting on Assignee (was: Needs Review)\\n- Issue tagged - with: low-gain, low-trouble, ops\", \n \"date_created\": \"1706871043\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 894199, \n \"notification\": true, \n \"parent\": null, - \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", - \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n - \ }\n }, \n {\n \"comment\": \"**Metadata Update - from @zlopez**:\\n- Issue assigned to zlopez\", \n \"date_created\": - \"1706871054\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894200, \n \"notification\": true, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", - \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n - \ }\n }, \n {\n \"comment\": \"Sorry for the - issue, this sometimes happens when the dist-git doesn't respond in time. I - gave the project back to you. Let me know if anything will still be set incorrectly.\", - \n \"date_created\": \"1706871260\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 894201, \n \"notification\": + \n \"close_status\": null, \n \"closed_at\": null, \n \"closed_by\": + null, \n \"comments\": [\n {\n \"comment\": \"This sounds + like something, that should be possible to do with [FMN](https://notifications.fedoraproject.org/). + Did you tried that?\", \n \"date_created\": \"1707834623\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 895363, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @zlopez**:\\n- Issue close_status updated to: Fixed\\n- - Issue status updated to: Closed (was: Open)\", \n \"date_created\": - \"1706871261\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894202, \n \"notification\": true, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", - \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n - \ }\n }, \n {\n \"comment\": \"Thank you!\", - \n \"date_created\": \"1706884434\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 894230, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/mikep\", \n \"fullname\": - \"W. Michael Petullo\", \n \"name\": \"mikep\", \n \"url_path\": - \"user/mikep\"\n }\n }\n ], \n \"content\": \"# - Describe what you would like us to do:\\r\\n----\\r\\n\\r\\nI requested a - repository corresponding to a recently-approved package request. This request - failed, and it left the repository owned by releng-bot. See https://pagure.io/releng/fedora-scm-requests/issue/60155.\\r\\n\\r\\n# - When do you need this to be done by? (YYYY/MM/DD)\\r\\n----\\r\\n\\r\\nModerate - priority, no hard date.\", \n \"custom_fields\": [], \n \"date_created\": - \"1706821842\", \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11750\", - \n \"id\": 11750, \n \"last_updated\": \"1706884434\", \n \"milestone\": - null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Closed\", \n \"tags\": [\n \"low-gain\", - \n \"low-trouble\", \n \"ops\"\n ], \n \"title\": - \"New repo request failed for rpms/golang-github-bep-clocks\", \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/mikep\", \n \"fullname\": - \"W. Michael Petullo\", \n \"name\": \"mikep\", \n \"url_path\": - \"user/mikep\"\n }\n }, \n {\n \"assignee\": {\n \"full_url\": - \"https://pagure.io/user/phsmoura\", \n \"fullname\": \"Pedro Moura\", - \n \"name\": \"phsmoura\", \n \"url_path\": \"user/phsmoura\"\n - \ }, \n \"blocks\": [], \n \"boards\": [\n {\n \"board\": - {\n \"active\": true, \n \"full_url\": \"https://pagure.io/fedora-infrastructure/boards/ops\", - \n \"name\": \"ops\", \n \"status\": [\n {\n - \ \"bg_color\": \"#ffb300\", \n \"close\": false, - \n \"close_status\": null, \n \"default\": true, - \n \"name\": \"Backlog\"\n }, \n {\n - \ \"bg_color\": \"#f4ff64\", \n \"close\": false, - \n \"close_status\": null, \n \"default\": false, - \n \"name\": \"Triaged\"\n }, \n {\n - \ \"bg_color\": \"#99d200\", \n \"close\": false, - \n \"close_status\": null, \n \"default\": false, - \n \"name\": \"In Progress\"\n }, \n {\n - \ \"bg_color\": \"#3c7bff\", \n \"close\": false, - \n \"close_status\": null, \n \"default\": false, - \n \"name\": \"In Review\"\n }, \n {\n - \ \"bg_color\": \"#15d415\", \n \"close\": true, - \n \"close_status\": \"Fixed\", \n \"default\": - false, \n \"name\": \"Done\"\n }, \n {\n - \ \"bg_color\": \"#e80909\", \n \"close\": false, - \n \"close_status\": null, \n \"default\": false, - \n \"name\": \"Blocked\"\n }\n ], \n - \ \"tag\": {\n \"tag\": \"ops\", \n \"tag_color\": - \"#3efa0e\", \n \"tag_description\": \"ops problem now...\"\n - \ }\n }, \n \"rank\": 826, \n \"status\": - {\n \"bg_color\": \"#ffb300\", \n \"close\": false, - \n \"close_status\": null, \n \"default\": true, \n - \ \"name\": \"Backlog\"\n }\n }\n ], \n \"close_status\": - \"Fixed\", \n \"closed_at\": \"1706815910\", \n \"closed_by\": {\n - \ \"full_url\": \"https://pagure.io/user/phsmoura\", \n \"fullname\": - \"Pedro Moura\", \n \"name\": \"phsmoura\", \n \"url_path\": - \"user/phsmoura\"\n }, \n \"comments\": [\n {\n \"comment\": - \"**Metadata Update from @phsmoura**:\\n- Issue priority set to: Waiting on - Assignee (was: Needs Review)\\n- Issue tagged with: high-gain, low-trouble, - ops\", \n \"date_created\": \"1706814689\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 894165, \n \"notification\": + \"For item one, yeah, FMN should do it hopefully?\\r\\n\\r\\nfor item 2, you + should be able to go into settings there and there's a place to send messages + to a address I think?\\r\\nCan look for the exact place later. \\r\\n\", \n + \ \"date_created\": \"1707851287\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 895392, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": + \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": + \"user/kevin\"\n }\n }, \n {\n \"comment\": + \"**Metadata Update from @kevin**:\\n- Issue tagged with: low-gain, low-trouble, + ops\", \n \"date_created\": \"1707851288\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 895393, \n \"notification\": true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/phsmoura\", \n \"fullname\": - \"Pedro Moura\", \n \"name\": \"phsmoura\", \n \"url_path\": - \"user/phsmoura\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @phsmoura**:\\n- Issue assigned to phsmoura\", \n - \ \"date_created\": \"1706815897\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 894166, \n \"notification\": + {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": + \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": + \"user/kevin\"\n }\n }, \n {\n \"comment\": + \"**Metadata Update from @kevin**:\\n- Issue priority set to: Waiting on Assignee + (was: Needs Review)\", \n \"date_created\": \"1707937839\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 895595, \n \"notification\": true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/phsmoura\", \n \"fullname\": - \"Pedro Moura\", \n \"name\": \"phsmoura\", \n \"url_path\": - \"user/phsmoura\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @phsmoura**:\\n- Issue close_status updated to: Fixed\\n- - Issue status updated to: Closed (was: Open)\", \n \"date_created\": - \"1706815912\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 894167, \n \"notification\": true, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/phsmoura\", \n \"fullname\": \"Pedro Moura\", - \n \"name\": \"phsmoura\", \n \"url_path\": \"user/phsmoura\"\n - \ }\n }\n ], \n \"content\": \"**NOTE**\\r\\n\\r\\nFrom: - \\\"Oceana Jade\\\" \\r\\nTo: users@lists.fedoraproject.org\\r\\nDate: - Thu, 01 Feb 2024 06:34:15 -0000\\r\\nMessage-ID: <20240201063415.21387.41176@mailman01.iad2.fedoraproject.org>\\r\\n\\r\\n\\r\\n# - Describe what you would like us to do:\\r\\nRemove spam and ban user\\r\\n----\\r\\n\\r\\n# - When do you need this to be done by? (YYYY/MM/DD)\\r\\nASAP\\r\\n----\\r\\n\", - \n \"custom_fields\": [], \n \"date_created\": \"1706787715\", \n - \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11749\", - \n \"id\": 11749, \n \"last_updated\": \"1706815912\", \n \"milestone\": + {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": + \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": + \"user/kevin\"\n }\n }\n ], \n \"content\": \"# + Describe what you would like us to do:\\r\\nI need to configure pagure.io/fedora-server + to send a notification\\r\\n\\r\\n1. to my fedoraproject account (pboy@fedoraproject.org) + when anything changes in the repo\\r\\n2. to server@lists.fedoraproject.org + when either an issue or a pr is created or modified.\\r\\n\\r\\nUnfortunately + I can't manage to get this working.\\r\\n\\r\\n# When do you need this to + be done by? (YYYY/MM/DD)\\r\\n\\r\\nIt is not that urgent, but would greatly + improve and support the Fedora Server Edition working group.\\r\\n\\r\\n\", + \n \"custom_fields\": [], \n \"date_created\": \"1707834078\", \n + \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11770\", + \n \"id\": 11770, \n \"last_updated\": \"1707937839\", \n \"milestone\": null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Closed\", \n \"tags\": [\n \"high-gain\", + [], \n \"status\": \"Open\", \n \"tags\": [\n \"low-gain\", \n \"low-trouble\", \n \"ops\"\n ], \n \"title\": - \"Spam on Fedora Users list\", \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/poc\", \n \"fullname\": \"Patrick O'Callaghan\", - \n \"name\": \"poc\", \n \"url_path\": \"user/poc\"\n }\n - \ }\n ], \n \"pagination\": {\n \"first\": \"https://pagure.io/api/0/fedora-infrastructure/issues?per_page=35&status=all&page=1\", + \"Need help to setup notification in Fedora Server pagure repo\", \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/pboy\", \n \"fullname\": + \"Peter Boy\", \n \"name\": \"pboy\", \n \"url_path\": \"user/pboy\"\n + \ }\n }\n ], \n \"pagination\": {\n \"first\": \"https://pagure.io/api/0/fedora-infrastructure/issues?per_page=35&status=all&page=1\", \n \"last\": \"https://pagure.io/api/0/fedora-infrastructure/issues?per_page=35&status=all&page=330\", \n \"next\": \"https://pagure.io/api/0/fedora-infrastructure/issues?per_page=35&status=all&page=2\", \n \"page\": 1, \n \"pages\": 330, \n \"per_page\": 35, \n \"prev\": @@ -3305,16 +2927,16 @@ interactions: Connection: - Upgrade, Keep-Alive Content-Length: - - '263233' + - '220575' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-DmXqxYjiwBYFwksVVLFqamsJA'; style-src - 'self' 'nonce-DmXqxYjiwBYFwksVVLFqamsJA'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-q3Nm4Xko9qlJz4s4MzzlRZA9k'; style-src + 'self' 'nonce-q3Nm4Xko9qlJz4s4MzzlRZA9k'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:36:18 GMT + - Mon, 04 Mar 2024 11:25:55 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -3358,6 +2980,831 @@ interactions: \"Mike McGrath\", \n \"name\": \"mmcgrath\", \n \"url_path\": \"user/mmcgrath\"\n }, \n \"blocks\": [], \n \"close_status\": \"Fixed\", \n \"closed_at\": null, \n \"closed_by\": null, \n \"comments\": + [\n {\n \"comment\": \"Does this have everything you're looking + for?\\r\\n\\r\\nhttp://fedoraproject.org/PackageReviewStatus/\", \n \"date_created\": + \"1184625344\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 16201, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/mmcgrath\", \n \"fullname\": \"Mike McGrath\", + \n \"name\": \"mmcgrath\", \n \"url_path\": \"user/mmcgrath\"\n + \ }\n }, \n {\n \"comment\": \"http://fedoraproject.org/PackageReviewStatus/ + \ Does this give you the information you need?\", \n \"date_created\": + \"1184988319\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 16200, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/mmcgrath\", \n \"fullname\": \"Mike McGrath\", + \n \"name\": \"mmcgrath\", \n \"url_path\": \"user/mmcgrath\"\n + \ }\n }, \n {\n \"comment\": \"Replying to + [comment:2 mmcgrath]:\\r\\nUnfortunately not: it misses the history of closed, + accepted tickets that block FE-ACCEPT\\r\\n(and maybe other things, I didn't + make a thorough investigation).\\r\\n\\r\\nThe things that puzzles me is: + why does the script that generates the files in http://fedoraproject.org/PackageReviewStatus/ + work (apparently) and mine gets stuck so often.\\r\\nThey basically do the + same thing wrt the BZ server...\", \n \"date_created\": \"1185411279\", + \n \"edited_on\": null, \n \"editor\": null, \n \"id\": + 16205, \n \"notification\": false, \n \"parent\": null, + \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/c4chris\", \n \"fullname\": \"Christian + Iseli\", \n \"name\": \"c4chris\", \n \"url_path\": + \"user/c4chris\"\n }\n }, \n {\n \"comment\": + \"Replying to [comment:4 c4chris]:\\r\\n> Replying to [comment:2 mmcgrath]:\\r\\n> + Unfortunately not: it misses the history of closed, accepted tickets that + block FE-ACCEPT\\r\\n> (and maybe other things, I didn't make a thorough investigation).\\r\\n> + \\r\\n> The things that puzzles me is: why does the script that generates + the files in http://fedoraproject.org/PackageReviewStatus/ work (apparently) + and mine gets stuck so often.\\r\\n> They basically do the same thing wrt + the BZ server...\\r\\n\\r\\n\\r\\nOurs actually fails quite regularly too, + but enough succeed that we can keep that page going.\", \n \"date_created\": + \"1185412554\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 16204, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/mmcgrath\", \n \"fullname\": \"Mike McGrath\", + \n \"name\": \"mmcgrath\", \n \"url_path\": \"user/mmcgrath\"\n + \ }\n }, \n {\n \"comment\": \"Replying to + [comment:5 mmcgrath]:\\r\\n> Ours actually fails quite regularly too, but + enough succeed that we can keep that page going.\\r\\n\\r\\nOh, ok. I put + the query in a loop. It seems to get the job done after some number of failures...\\r\\nI + guess this will be good enough until the BZ server can be improved...\\r\\n\\r\\nFeel + free to close this ticket, unless something else can be attempted.\\r\\n\", + \n \"date_created\": \"1185417271\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 16202, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/c4chris\", \n \"fullname\": + \"Christian Iseli\", \n \"name\": \"c4chris\", \n \"url_path\": + \"user/c4chris\"\n }\n }, \n {\n \"comment\": + \"We're kind of stuck with BZ for the time being, I'll close the ticket.\", + \n \"date_created\": \"1185872860\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 16203, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", \n \"fullname\": + \"Mike McGrath\", \n \"name\": \"mmcgrath\", \n \"url_path\": + \"user/mmcgrath\"\n }\n }\n ], \n \"content\": \"In + order to update the PackageStatus page, I need to retrieve the list of CLOSED + \\\"Package Review\\\" tickets from Bugzilla.\\r\\n\\r\\nTrying through XMLRPC + keeps returning 500 Internal Server Error\\r\\n\\r\\nTrying through a simple + search from the web interface just gets me the \\\"Bugzilla is pondering your + query\\\" and sits there (for over an hour now).\\r\\n\\r\\nHow can I grab + those tickets ?\", \n \"custom_fields\": [], \n \"date_created\": + \"1184186076\", \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/30\", + \n \"id\": 30, \n \"last_updated\": \"1185872860\", \n \"milestone\": + null, \n \"priority\": null, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": + \"Can't get list of closed package review tickets from bugzilla\", \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/c4chris\", \n \"fullname\": + \"Christian Iseli\", \n \"name\": \"c4chris\", \n \"url_path\": + \"user/c4chris\"\n }\n }, \n {\n \"assignee\": null, \n \"blocks\": + [], \n \"close_status\": \"Fixed\", \n \"closed_at\": null, \n \"closed_by\": + null, \n \"comments\": [\n {\n \"comment\": \"This is + done.\", \n \"date_created\": \"1187727663\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 12598, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", \n \"fullname\": + \"Mike McGrath\", \n \"name\": \"mmcgrath\", \n \"url_path\": + \"user/mmcgrath\"\n }\n }\n ], \n \"content\": \"I'd + like to rename app5 to releng1. I see the releng team as needing more services + in the future so I'd like to make them a class of machines now. Here's a + comment from notting from #fedora-admin:\\r\\n\\r\\n14:57 < notting> mmcgrath: + for jesse and me, just give us a few hours or a day warning to fix the rawhide + invocator\", \n \"custom_fields\": [], \n \"date_created\": \"1184122821\", + \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/29\", + \n \"id\": 29, \n \"last_updated\": \"1187727663\", \n \"milestone\": + null, \n \"priority\": null, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": + \"rename app5 to releng1\", \n \"user\": {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", + \n \"fullname\": \"Mike McGrath\", \n \"name\": \"mmcgrath\", + \n \"url_path\": \"user/mmcgrath\"\n }\n }, \n {\n \"assignee\": + {\n \"full_url\": \"https://pagure.io/user/damian\", \n \"fullname\": + \"Damian Myerscough\", \n \"name\": \"damian\", \n \"url_path\": + \"user/damian\"\n }, \n \"blocks\": [], \n \"close_status\": + \"Fixed\", \n \"closed_at\": null, \n \"closed_by\": null, \n \"comments\": + [\n {\n \"comment\": \"MySQL is now logging transactions of + on db1, the log file is located in the /var/log/mysqld\\r\\ndirectory.\\r\\n\\r\\nThe + logs within /var/log/mysqld will also be rotated daily.\", \n \"date_created\": + \"1184965526\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 11811, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/damian\", \n \"fullname\": \"Damian Myerscough\", + \n \"name\": \"damian\", \n \"url_path\": \"user/damian\"\n + \ }\n }, \n {\n \"comment\": \"We've had db1 + configured to do logging for a while on db1, but at some point the permissions + got messed up and this stopped happening (see ticket #1499). The transaction + logging did recently cause issues on an import of a very large table in the + smolt database, by the way, so that may be something to keep in mind when + doing large imports. \\r\\n\\r\\nWhere do we stand on logging with postgres + now?\", \n \"date_created\": \"1246449656\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 11810, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/ricky\", \n \"fullname\": + \"Ricky Zhou (\\u5468\\u5bb6\\u6770)\", \n \"name\": \"ricky\", + \n \"url_path\": \"user/ricky\"\n }\n }, \n {\n + \ \"comment\": \"postgres is now logging transactions, but it's keeping + infinity of them. ;) \\r\\n\\r\\nHow many should we keep? 30 days? \\r\\n\\r\\na + simple: \\r\\n\\r\\n-#log_filename = 'postgresql-%Y-%m-%d_%H%M%S.log' # + log file name pattern,\\r\\n+log_filename = 'postgresql-%d.log' # log + file name pattern,\\r\\n\\r\\nin postgresql.conf should do that. \\r\\n\\r\\nOr + do we need to keep more of them, or save them off to log* ?\\r\\n\", \n \"date_created\": + \"1301437746\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 11809, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", + \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n + \ }\n }, \n {\n \"comment\": \"This seems done + to me now, closing. \\r\\n\\r\\nWe are keeping 30 days of them. \\r\\n\", + \n \"date_created\": \"1318299260\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 11812, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": + \"Kevin Fenzi\", \n \"name\": \"kevin\", \n \"url_path\": + \"user/kevin\"\n }\n }\n ], \n \"content\": \"I'd + like the mysql and postgres db's to ouput transferlogs in a text file. I'm + not sure how much additional load and space that will take up but it would + be useful for us. Comments?\", \n \"custom_fields\": [], \n \"date_created\": + \"1184071024\", \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/28\", + \n \"id\": 28, \n \"last_updated\": \"1318299260\", \n \"milestone\": + null, \n \"priority\": null, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": + \"DBs and logging\", \n \"user\": {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", + \n \"fullname\": \"Mike McGrath\", \n \"name\": \"mmcgrath\", + \n \"url_path\": \"user/mmcgrath\"\n }\n }, \n {\n \"assignee\": + null, \n \"blocks\": [], \n \"close_status\": \"Fixed\", \n \"closed_at\": + null, \n \"closed_by\": null, \n \"comments\": [\n {\n \"comment\": + \"Ok, I think I've got this setup. Let me know if I've broken anything.\", + \n \"date_created\": \"1184639861\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 12581, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", \n \"fullname\": + \"Mike McGrath\", \n \"name\": \"mmcgrath\", \n \"url_path\": + \"user/mmcgrath\"\n }\n }\n ], \n \"content\": \"I + know that the script generating those pages has been failing often\\r\\nlately. + \ It hammers bugzilla pretty hard, and really isn't important\\r\\nenough + to need full redundancy. So running it once and saving to\\r\\nshared storage + should be sufficient, and perhaps would cause it to\\r\\nfail less as running + it only once would make bugzilla a bit happier.\\r\\n\", \n \"custom_fields\": + [], \n \"date_created\": \"1184043037\", \n \"depends\": [], \n + \ \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/27\", + \n \"id\": 27, \n \"last_updated\": \"1184639861\", \n \"milestone\": + null, \n \"priority\": null, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": + \"Transfer http://fedoraproject.org/PackageReviewStatus/ to shared storage\", + \n \"user\": {\n \"full_url\": \"https://pagure.io/user/tibbs\", + \n \"fullname\": \"Jason \\u30c6\\u30a3\\u30d3\\u30c4\", \n \"name\": + \"tibbs\", \n \"url_path\": \"user/tibbs\"\n }\n }, \n {\n + \ \"assignee\": {\n \"full_url\": \"https://pagure.io/user/ausil\", + \n \"fullname\": \"Dennis Gilmore\", \n \"name\": \"ausil\", + \n \"url_path\": \"user/ausil\"\n }, \n \"blocks\": [], \n + \ \"close_status\": \"Fixed\", \n \"closed_at\": null, \n \"closed_by\": + null, \n \"comments\": [\n {\n \"comment\": \"http://bodhi.fedoraproject.org/ + should work properly now. \", \n \"date_created\": \"1186016363\", + \n \"edited_on\": null, \n \"editor\": null, \n \"id\": + 22508, \n \"notification\": false, \n \"parent\": null, + \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/ricky\", \n \"fullname\": \"Ricky Zhou + (\\u5468\\u5bb6\\u6770)\", \n \"name\": \"ricky\", \n \"url_path\": + \"user/ricky\"\n }\n }, \n {\n \"comment\": + \"Thanks for taking care of this Ricky. However, https://bodhi.fedoraproject.org + seems to redirect to, http://fedoraproject.org/wiki/IndexAdmin, and http://bodhi.fedoraproject.org + should probably redirect to https.\", \n \"date_created\": \"1189115111\", + \n \"edited_on\": null, \n \"editor\": null, \n \"id\": + 22510, \n \"notification\": false, \n \"parent\": null, + \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/lmacken\", \n \"fullname\": \"Luke Macken\", + \n \"name\": \"lmacken\", \n \"url_path\": \"user/lmacken\"\n + \ }\n }, \n {\n \"comment\": \"This appears + to be working now, closing ticket (thanks ricky!)\", \n \"date_created\": + \"1190146315\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 22509, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/mmcgrath\", \n \"fullname\": \"Mike McGrath\", + \n \"name\": \"mmcgrath\", \n \"url_path\": \"user/mmcgrath\"\n + \ }\n }\n ], \n \"content\": \"Somebody think of + the children ('s fingers).\", \n \"custom_fields\": [], \n \"date_created\": + \"1184024321\", \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/26\", + \n \"id\": 26, \n \"last_updated\": \"1190146315\", \n \"milestone\": + null, \n \"priority\": null, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": + \"CNAME bodhi.fedoraproject.org to admin.fp.o/updates\", \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/ajax\", \n \"fullname\": + \"Adam Jackson\", \n \"name\": \"ajax\", \n \"url_path\": \"user/ajax\"\n + \ }\n }, \n {\n \"assignee\": {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", + \n \"fullname\": \"Mike McGrath\", \n \"name\": \"mmcgrath\", + \n \"url_path\": \"user/mmcgrath\"\n }, \n \"blocks\": [], + \n \"close_status\": \"Fixed\", \n \"closed_at\": null, \n \"closed_by\": + null, \n \"comments\": [\n {\n \"comment\": \"Ok, the + upgrade went off fairly well. We lost some accounting data (my fault). Here's + whats left\\r\\n{{{\\r\\n1) Wait a week for db2 so we know its fine\\r\\n2) + I have a few databases left on db1 that I don't *think* are in use. I'll + be sending those to the list soon for verification. If we're not I'll archive + and zip them up. They were not migrated to the new box.\\r\\n3) upgrade db1\\r\\n4) + move mysql services back to db1 (it has less ram then db2. postgresql is + hit much heavier so it gets more processors and ram.\\r\\n5) Setup a sync + from each db to the other. I'd think 4 times / day would be enough, maybe + 2 or 3. We'll have to see how much resources it actually takes.\\r\\n}}}\", + \n \"date_created\": \"1184070382\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 20717, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", \n \"fullname\": + \"Mike McGrath\", \n \"name\": \"mmcgrath\", \n \"url_path\": + \"user/mmcgrath\"\n }\n }, \n {\n \"comment\": + \"We're in good shape with this, db2 is done, db1 is rebuilt. Backups are + working. Puppet configs are working. Right now db2 is only running postgresql, + db1 is only running mysql. Both servers are backing eachothers mysql up. + \ All that is left is the postgres backups, and an SOP.\", \n \"date_created\": + \"1185655409\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 20719, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/mmcgrath\", \n \"fullname\": \"Mike McGrath\", + \n \"name\": \"mmcgrath\", \n \"url_path\": \"user/mmcgrath\"\n + \ }\n }, \n {\n \"comment\": \"This is finally + actually truely done. The servers are replicating to eachother, and db1 is + dedicated to mysql, db2 dedicated to postgres.\", \n \"date_created\": + \"1186180024\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 20718, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/mmcgrath\", \n \"fullname\": \"Mike McGrath\", + \n \"name\": \"mmcgrath\", \n \"url_path\": \"user/mmcgrath\"\n + \ }\n }\n ], \n \"content\": \"The outage will begin + tonight at 2007-07-10 03:00 UTC. See: https://www.redhat.com/archives/fedora-devel-announce/2007-July/msg00000.html + For more infromation.\", \n \"custom_fields\": [], \n \"date_created\": + \"1184015900\", \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/25\", + \n \"id\": 25, \n \"last_updated\": \"1186180024\", \n \"milestone\": + null, \n \"priority\": null, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": + \"db1 upgrade\", \n \"user\": {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", + \n \"fullname\": \"Mike McGrath\", \n \"name\": \"mmcgrath\", + \n \"url_path\": \"user/mmcgrath\"\n }\n }, \n {\n \"assignee\": + {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", \n \"fullname\": + \"Mike McGrath\", \n \"name\": \"mmcgrath\", \n \"url_path\": + \"user/mmcgrath\"\n }, \n \"blocks\": [], \n \"close_status\": + \"Fixed\", \n \"closed_at\": null, \n \"closed_by\": null, \n \"comments\": + [\n {\n \"comment\": \"Done\", \n \"date_created\": + \"1184625860\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 22663, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/mmcgrath\", \n \"fullname\": \"Mike McGrath\", + \n \"name\": \"mmcgrath\", \n \"url_path\": \"user/mmcgrath\"\n + \ }\n }, \n {\n \"comment\": \"This is done + - \\r\\n\\r\\nhttp://fedoraproject.org/wiki/Infrastructure/ProjectHosting/RequestingNewProject\", + \n \"date_created\": \"1185872734\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 22664, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", \n \"fullname\": + \"Mike McGrath\", \n \"name\": \"mmcgrath\", \n \"url_path\": + \"user/mmcgrath\"\n }\n }\n ], \n \"content\": \"Jesse + has gotten hosted.fedoraproject.org up and running on publictest3. Its been + working great and its time to move it to production hardware. Here's the + basic steps:[[BR]]\\r\\n[[BR]]\\r\\n1) Get it working on app1 and app2 (and + installed via puppet)[[BR]]\\r\\n\\r\\n2) setup the proxy servers to work + with hosted.fedoraproject.org (including ssl)[[BR]]\\r\\n\\r\\n3) put in a + request for a new external address and balancer setup for for the new ssl[[BR]]\\r\\n\\r\\n4) + test[[BR]]\\r\\n\\r\\n5) Make some guidelines on the wiki for how to request + hosted space (include rules for removal because of non FOSS software or lack + of activity)[[BR]]\\r\\n\\r\\n6) Announce\", \n \"custom_fields\": [], + \n \"date_created\": \"1184013527\", \n \"depends\": [], \n \"full_url\": + \"https://pagure.io/fedora-infrastructure/issue/24\", \n \"id\": 24, + \n \"last_updated\": \"1185872734\", \n \"milestone\": null, \n + \ \"priority\": null, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": + \"hosted.fedoraproject.org -> live\", \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/mmcgrath\", \n \"fullname\": \"Mike McGrath\", + \n \"name\": \"mmcgrath\", \n \"url_path\": \"user/mmcgrath\"\n + \ }\n }, \n {\n \"assignee\": {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", + \n \"fullname\": \"Mike McGrath\", \n \"name\": \"mmcgrath\", + \n \"url_path\": \"user/mmcgrath\"\n }, \n \"blocks\": [], + \n \"close_status\": \"Fixed\", \n \"closed_at\": null, \n \"closed_by\": + null, \n \"comments\": [\n {\n \"comment\": \"http://fedoraproject.org/wiki/Infrastructure/CommonProblems + \ All done.\", \n \"date_created\": \"1184117928\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 19045, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", \n \"fullname\": + \"Mike McGrath\", \n \"name\": \"mmcgrath\", \n \"url_path\": + \"user/mmcgrath\"\n }\n }\n ], \n \"content\": \"We + need a common issues page on the wiki for things like expired certs and things.\", + \n \"custom_fields\": [], \n \"date_created\": \"1183890022\", \n + \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/23\", + \n \"id\": 23, \n \"last_updated\": \"1184117928\", \n \"milestone\": + null, \n \"priority\": null, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": + \"Common Issues Page\", \n \"user\": {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", + \n \"fullname\": \"Mike McGrath\", \n \"name\": \"mmcgrath\", + \n \"url_path\": \"user/mmcgrath\"\n }\n }, \n {\n \"assignee\": + null, \n \"blocks\": [], \n \"close_status\": \"Fixed\", \n \"closed_at\": + null, \n \"closed_by\": null, \n \"comments\": [\n {\n \"comment\": + \"I've been giving some thoughts to this and I don't think its technically + feasible in our current environment. Our mailing system has no idea about + the accounts system other then the aliases that are set up. The improvements + that would need to be made to do moderation outweigh the final outcome. Perhaps + if our mailing system matures over the next year or two we can revisit.\\r\\n\\r\\nSorry + :-/\", \n \"date_created\": \"1185259800\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 9022, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", \n \"fullname\": + \"Mike McGrath\", \n \"name\": \"mmcgrath\", \n \"url_path\": + \"user/mmcgrath\"\n }\n }\n ], \n \"content\": \"Sending + an email to all the members of a FAS group is very convenient. For example, + for the FLP, all translators are in cvsl10n so quick announcements could be + sent there instead of creating a new mailing list for them.\\r\\n\\r\\nWhat + would be great would be to limit email sending to the members only to group + admins or sponsors, so that we won't worry about leaks.\", \n \"custom_fields\": + [], \n \"date_created\": \"1183881471\", \n \"depends\": [], \n + \ \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/22\", + \n \"id\": 22, \n \"last_updated\": \"1185259800\", \n \"milestone\": + null, \n \"priority\": null, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": + \"Moderate emails to a FAS group members\", \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/glezos\", \n \"fullname\": \"Dimitris Glezos\", + \n \"name\": \"glezos\", \n \"url_path\": \"user/glezos\"\n + \ }\n }, \n {\n \"assignee\": {\n \"full_url\": \"https://pagure.io/user/ricky\", + \n \"fullname\": \"Ricky Zhou (\\u5468\\u5bb6\\u6770)\", \n \"name\": + \"ricky\", \n \"url_path\": \"user/ricky\"\n }, \n \"blocks\": + [], \n \"close_status\": \"Fixed\", \n \"closed_at\": null, \n \"closed_by\": + null, \n \"comments\": [\n {\n \"comment\": \"There are + now test pages to integrate Roland's wiki pages at:\\r\\n * RickyZhou/DirectoryServer\\r\\n + * RickyZhou/PackageMaintainers/Anatomy\\r\\n * RickyZhou/PackageMaintainers/CvsAccess\\r\\n + * RickyZhou/PackageMaintainers/Makefile\\r\\n * RickyZhou/PackageMaintainers/UsingCvsFaq\\r\\n(The + docs group already has a page with CVS instructions)\", \n \"date_created\": + \"1184886904\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 20453, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/ricky\", \n \"fullname\": \"Ricky Zhou + (\\u5468\\u5bb6\\u6770)\", \n \"name\": \"ricky\", \n \"url_path\": + \"user/ricky\"\n }\n }, \n {\n \"comment\": + \"Sorry, messed up the links:\\r\\n * http://fedoraproject.org/wiki/RickyZhou/DirectoryServer\\r\\n + * http://fedoraproject.org/wiki/RickyZhou/PackageMaintainers/Anatomy\\r\\n + * http://fedoraproject.org/wiki/RickyZhou/PackageMaintainers/CvsAccess\\r\\n + * http://fedoraproject.org/wiki/RickyZhou/PackageMaintainers/Makefile\\r\\n + * http://fedoraproject.org/wiki/RickyZhou/PackageMaintainers/UsingCvsFaq\", + \n \"date_created\": \"1184887031\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 20448, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/ricky\", \n \"fullname\": + \"Ricky Zhou (\\u5468\\u5bb6\\u6770)\", \n \"name\": \"ricky\", + \n \"url_path\": \"user/ricky\"\n }\n }, \n {\n + \ \"comment\": \"The test pages were merged a while back, and cvs.fp.o + now redirects to https://fedoraproject.org/wiki/UsingCvs. \", \n \"date_created\": + \"1187041172\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 20450, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/ricky\", \n \"fullname\": \"Ricky Zhou + (\\u5468\\u5bb6\\u6770)\", \n \"name\": \"ricky\", \n \"url_path\": + \"user/ricky\"\n }\n }, \n {\n \"comment\": + \"Well, sorry to say that, but the way the bug is closed is absolutely not + what I wanted: the old interface gave you several information on how to access + the CVS also as anonymous. Especially the Web-interface can come in quite + handy.\\r\\n\\r\\nAnd all these information are now dropped. Why? There was + no need to drop these information, and there is no reason to not include these + things. :(\", \n \"date_created\": \"1187061518\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 20451, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/liquidat\", \n \"fullname\": + \"Roland Wolters\", \n \"name\": \"liquidat\", \n \"url_path\": + \"user/liquidat\"\n }\n }, \n {\n \"comment\": + \"If there is other information available please add it to the wiki. The + decision to remove the website from cvs.fp.o was made a while ago but took + a bit to integrate. It was considered legacy and had just been forgotten + about for a long time. The problem is there is no easy way to make changes + / update the site and as a result, no one had done it.\\r\\n\\r\\nregarding + accessing anonymous and web interface, they are still there:\\r\\n\\r\\nhttp://cvs.fedoraproject.org/viewcvs/\\r\\n\\r\\nhttp://fedoraproject.org/wiki/Infrastructure/CVS\", + \n \"date_created\": \"1187062802\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 20452, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", \n \"fullname\": + \"Mike McGrath\", \n \"name\": \"mmcgrath\", \n \"url_path\": + \"user/mmcgrath\"\n }\n }, \n {\n \"comment\": + \"Oh, I'm sorry if we misinterpreted what you were going for. The intention + was that the it would redirect to kind of a \\\"gateway page\\\" on the wiki + (!UsingCvs), which would link to the relevant information (which is now on + the wiki, merged with some existing pages). Anonymous CVS instructions are + still given at the pages linked from !UsingCvs. Also, the viewcvs interface + is still up at http://cvs.fedoraproject.org/viewcvs/ (maybe we should link + to this from !UsingCvs). \\r\\n\\r\\nBasically, when going through the sample + pages that you setup, I noticed that much of that information was already + duplicated (in a more up-to-date form) on the wiki, so I ended up just merging + some missing information onto the existing pages (while trying not to lose + any useful information). \\r\\n\\r\\nIf you notice that any information is + missing, we can easily edit it in, now that it's on a wiki :) (from what I + see, this was the main benefit/goal in moving off of cvs.fp.o as soon as possible). + \ \", \n \"date_created\": \"1187063285\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 20449, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/ricky\", \n \"fullname\": + \"Ricky Zhou (\\u5468\\u5bb6\\u6770)\", \n \"name\": \"ricky\", + \n \"url_path\": \"user/ricky\"\n }\n }, \n {\n + \ \"comment\": \"I know that there is still http://cvs.fedoraproject.org/viewcvs/ + but it is not linked anywhere now. And frankly, I have no idea where to link + it in the new structure:\\r\\nhttp://fedoraproject.org/wiki/PackageMaintainers/UsingCvsFaq + is written for contributors, and the other \\\"Using xyz CVS\\\" pages do + have another scope.\\r\\n\\r\\nAlso, for people who are not really used to + Fedora's internal structures http://cvs.fedoraproject.org/viewcvs/rpms/ should + be linked as well, clearly and explained, because that is the fastest way + to the package files (specs, patches, etc.).\\r\\n\\r\\nSo, how about adding + a page like \\\"Anonymous CVS access\\\" or similar to the three pages already + listed at http://fedoraproject.org/wiki/UsingCvs ?\", \n \"date_created\": + \"1187066160\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 20454, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/liquidat\", \n \"fullname\": \"Roland + Wolters\", \n \"name\": \"liquidat\", \n \"url_path\": + \"user/liquidat\"\n }\n }\n ], \n \"content\": \"http://cvs.fedoraproject.org/ + is currently out of date and not integrated into the fedoraproject wiki.\\r\\n\\r\\nIn + IRC jeremy mentioned that there is currently no one working at that issue + but that the plan is to first re-create/re-work these pages in the wiki and + afterwards move them so that cvs.fedoraproject.org points to them.\\r\\nSince + there was no on else I gave it a try. The pages can be found currently at:\\r\\nhttp://fedoraproject.org/wiki/RolandWolters/cvs-example\\r\\n\\r\\nSome + things are still missing:\\r\\n 1. Fedora Core/Extras information for FC6 + (I'm not sure if or how I should include it)\\r\\n 1. the links are all formatted + as external http and not as relative links (for the reason that I hate MoinMoin + and don't know how to properly with it)\\r\\n 1. I copied most parts from + the original pages and only altered some few lines, so someone should look + over it if the information are right\\r\\n\\r\\nAfter these issues are worked + out the pages should be ready to move.\", \n \"custom_fields\": [], \n + \ \"date_created\": \"1183879169\", \n \"depends\": [], \n \"full_url\": + \"https://pagure.io/fedora-infrastructure/issue/21\", \n \"id\": 21, + \n \"last_updated\": \"1187066160\", \n \"milestone\": null, \n + \ \"priority\": null, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": + \"Rework of cvs.fedoraproject.org\", \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/liquidat\", \n \"fullname\": \"Roland Wolters\", + \n \"name\": \"liquidat\", \n \"url_path\": \"user/liquidat\"\n + \ }\n }, \n {\n \"assignee\": {\n \"full_url\": \"https://pagure.io/user/ausil\", + \n \"fullname\": \"Dennis Gilmore\", \n \"name\": \"ausil\", + \n \"url_path\": \"user/ausil\"\n }, \n \"blocks\": [], \n + \ \"close_status\": \"Fixed\", \n \"closed_at\": null, \n \"closed_by\": + null, \n \"comments\": [\n {\n \"comment\": \"attachment\\n[Makefile.common.diff](/fedora-infrastructure/issue/raw/files/057f0f24aa18559016f1b0a04847c5acbfa5472c8759d72bd095db6d5897271e-Makefile.common.diff)\", + \n \"date_created\": \"1183819423\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 16271, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/static\", \n \"fullname\": + \"Brandon Holbrook\", \n \"name\": \"static\", \n \"url_path\": + \"user/static\"\n }\n }, \n {\n \"comment\": + \"Ive applied a fix\", \n \"date_created\": \"1183854323\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 16270, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/ausil\", \n \"fullname\": + \"Dennis Gilmore\", \n \"name\": \"ausil\", \n \"url_path\": + \"user/ausil\"\n }\n }\n ], \n \"content\": \"The + current Makefile.common in CVS is incorrectly configured for \\\"make mockbuild\\\" + in EPEL. Starting on line 44 it tries to figure out which mock.cfg file to + use to set up the mock environment.\\r\\n\\r\\nFirst it checks for epel and + correctly chooses the right .cfg file.\\r\\nImmediately after that, however, + it does a blunt check for version 4 (then 5 and 6) and then chooses the appropriate + FC mock.cfg file, overwriting any previous .cfg selection. The end result + is when running a \\\"make mockbuild\\\" for epel4 or epel5, mock tried to + use a .cfg file for fc4 or fc5, respectively.\\r\\n\\r\\nTo solve this, the + section of DISTVAL, [456] checks needs to be wrapped in a check for fedora + first. See attached patch for details.\", \n \"custom_fields\": [], + \n \"date_created\": \"1183819369\", \n \"depends\": [], \n \"full_url\": + \"https://pagure.io/fedora-infrastructure/issue/20\", \n \"id\": 20, + \n \"last_updated\": \"1183854323\", \n \"milestone\": null, \n + \ \"priority\": null, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": + \"Makefile.common wrecks mockbuild for epel\", \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/static\", \n \"fullname\": \"Brandon Holbrook\", + \n \"name\": \"static\", \n \"url_path\": \"user/static\"\n + \ }\n }, \n {\n \"assignee\": {\n \"full_url\": \"https://pagure.io/user/toshio\", + \n \"fullname\": \"Toshio \\u304f\\u3089\\u3068\\u307f\", \n \"name\": + \"toshio\", \n \"url_path\": \"user/toshio\"\n }, \n \"blocks\": + [], \n \"close_status\": \"Fixed\", \n \"closed_at\": null, \n \"closed_by\": + null, \n \"comments\": [\n {\n \"comment\": \"Short answer: + Yes and I'll do that now.\\r\\n\\r\\nLonger answer: There's an error in the + db schema. It allows role_domain to be null. It also sets a unique constraint + on (person_id, project_group_id, role_domain). Nulls in SQL have the strange + property of matching nothing, including other nulls. So I could potentially + enter (1,1, null) multiple times. We eventually need to move everyone who + has null for role_domain to '' and change the role_domain column to not null.\", + \n \"date_created\": \"1183788154\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 15973, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/toshio\", \n \"fullname\": + \"Toshio \\u304f\\u3089\\u3068\\u307f\", \n \"name\": \"toshio\", + \n \"url_path\": \"user/toshio\"\n }\n }, \n {\n + \ \"comment\": \"Okay. All duplicates have been taken care of. Just + in case I deleted someone's cla_done, there's a backup of the table saved + as role20070706. We can delete this after a week or so if no one notices.\\r\\n\\r\\nNobody + in the db currently has role_domain = ''. I didn't change the schema as I + have a feeling that will break some of our apps. If we're feeling ambitious, + after a few weeks we can take a look at what groups have a role_domain of + null and try to track down places in the code where that's happening.\", \n + \ \"date_created\": \"1183794298\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 15974, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/toshio\", \n \"fullname\": + \"Toshio \\u304f\\u3089\\u3068\\u307f\", \n \"name\": \"toshio\", + \n \"url_path\": \"user/toshio\"\n }\n }\n ], + \n \"content\": \"Some users in the account system have multiple CLA + done entries. Can we remove duplicate entries?\", \n \"custom_fields\": + [], \n \"date_created\": \"1183777271\", \n \"depends\": [], \n + \ \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/19\", + \n \"id\": 19, \n \"last_updated\": \"1183794298\", \n \"milestone\": + null, \n \"priority\": null, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": + \"Multiple CLA done entries\", \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/mmcgrath\", \n \"fullname\": \"Mike McGrath\", + \n \"name\": \"mmcgrath\", \n \"url_path\": \"user/mmcgrath\"\n + \ }\n }, \n {\n \"assignee\": {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", + \n \"fullname\": \"Mike McGrath\", \n \"name\": \"mmcgrath\", + \n \"url_path\": \"user/mmcgrath\"\n }, \n \"blocks\": [], + \n \"close_status\": \"Fixed\", \n \"closed_at\": null, \n \"closed_by\": + null, \n \"comments\": [\n {\n \"comment\": \"I think + I've got /etc/cron.hourly/sync-committers.sh sending nothing to stdout.\", + \n \"date_created\": \"1183933892\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 15725, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", \n \"fullname\": + \"Mike McGrath\", \n \"name\": \"mmcgrath\", \n \"url_path\": + \"user/mmcgrath\"\n }\n }, \n {\n \"comment\": + \"Which scripts need work/where would I find them? /cvs/fedora?\\r\\n\", \n + \ \"date_created\": \"1184874380\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 15723, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/jcollie\", \n \"fullname\": + \"Jeffrey C. Ollie\", \n \"name\": \"jcollie\", \n \"url_path\": + \"user/jcollie\"\n }\n }, \n {\n \"comment\": + \"I guess this ticket is 2 fold. We also need to get all of the scripts copied + over to:\\r\\n\\r\\nhttp://git.fedoraproject.org/hosted/fedora-infrastructure.git/\\r\\n\\r\\nExpect + them in the next few days.\", \n \"date_created\": \"1184874613\", + \n \"edited_on\": null, \n \"editor\": null, \n \"id\": + 15722, \n \"notification\": false, \n \"parent\": null, + \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/mmcgrath\", \n \"fullname\": \"Mike McGrath\", + \n \"name\": \"mmcgrath\", \n \"url_path\": \"user/mmcgrath\"\n + \ }\n }, \n {\n \"comment\": \"All of the output + being produced now is normal stuff, We now no longer have to ignore that mail + :)\", \n \"date_created\": \"1186180325\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 15724, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", \n \"fullname\": + \"Mike McGrath\", \n \"name\": \"mmcgrath\", \n \"url_path\": + \"user/mmcgrath\"\n }\n }\n ], \n \"content\": \"We + need to make sure that all of our scripts don't produce output unless there + is a warning or error. Even if this means sending output to a logfile or + /dev/null. Our admin mail contains too much noise.\", \n \"custom_fields\": + [], \n \"date_created\": \"1183770553\", \n \"depends\": [], \n + \ \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/18\", + \n \"id\": 18, \n \"last_updated\": \"1186180325\", \n \"milestone\": + null, \n \"priority\": null, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": + \"Scripts should produce no output\", \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/mmcgrath\", \n \"fullname\": \"Mike McGrath\", + \n \"name\": \"mmcgrath\", \n \"url_path\": \"user/mmcgrath\"\n + \ }\n }, \n {\n \"assignee\": {\n \"full_url\": \"https://pagure.io/user/ausil\", + \n \"fullname\": \"Dennis Gilmore\", \n \"name\": \"ausil\", + \n \"url_path\": \"user/ausil\"\n }, \n \"blocks\": [], \n + \ \"close_status\": \"Fixed\", \n \"closed_at\": null, \n \"closed_by\": + null, \n \"comments\": [\n {\n \"comment\": \"We do actually + have ia64 released right? Should we consider this a done deal now?\", \n + \ \"date_created\": \"1224143579\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 11119, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", \n \"fullname\": + \"Mike McGrath\", \n \"name\": \"mmcgrath\", \n \"url_path\": + \"user/mmcgrath\"\n }\n }, \n {\n \"comment\": + \"its still not done :(\\r\\n\\r\\nnot in a complete and automated fashion + \", \n \"date_created\": \"1224153348\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 11121, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/ausil\", \n \"fullname\": + \"Dennis Gilmore\", \n \"name\": \"ausil\", \n \"url_path\": + \"user/ausil\"\n }\n }, \n {\n \"comment\": + \"This is much closer to being phase 1 complete. automated builds happen + now. \", \n \"date_created\": \"1237261124\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 11122, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/ausil\", \n \"fullname\": + \"Dennis Gilmore\", \n \"name\": \"ausil\", \n \"url_path\": + \"user/ausil\"\n }\n }, \n {\n \"comment\": + \"still not 100% done and likely wont be for F-12, but progress has been made.\", + \n \"date_created\": \"1255142527\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 11120, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/ausil\", \n \"fullname\": + \"Dennis Gilmore\", \n \"name\": \"ausil\", \n \"url_path\": + \"user/ausil\"\n }\n }, \n {\n \"comment\": + \"I'm going to go ahead and close this one now. \\r\\n\\r\\nWe have made good + progress here and things are mostly set from a infrastructure point of view. + If there are other specific infrastructure tasks we can do to help out with + this, just file them as new tickets. \\r\\nThanks. \\r\\n\", \n \"date_created\": + \"1313789315\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 11118, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/kevin\", \n \"fullname\": \"Kevin Fenzi\", + \n \"name\": \"kevin\", \n \"url_path\": \"user/kevin\"\n + \ }\n }\n ], \n \"content\": \"Secondary arch support + will allow non-official arch's to integrate with Fedora.\", \n \"custom_fields\": + [], \n \"date_created\": \"1183757594\", \n \"depends\": [], \n + \ \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/17\", + \n \"id\": 17, \n \"last_updated\": \"1313789315\", \n \"milestone\": + null, \n \"priority\": null, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": + \"Secondary Arch Support\", \n \"user\": {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", + \n \"fullname\": \"Mike McGrath\", \n \"name\": \"mmcgrath\", + \n \"url_path\": \"user/mmcgrath\"\n }\n }, \n {\n \"assignee\": + {\n \"full_url\": \"https://pagure.io/user/skvidal\", \n \"fullname\": + \"Seth Vidal\", \n \"name\": \"skvidal\", \n \"url_path\": \"user/skvidal\"\n + \ }, \n \"blocks\": [], \n \"close_status\": \"Fixed\", \n \"closed_at\": + null, \n \"closed_by\": null, \n \"comments\": [\n {\n \"comment\": + \"items to remember:\\r\\n- automatic quota set\\r\\n- automatic quota check\\r\\n + \ - not mount -o ro\\r\\n- logs - apache and login logs\\r\\n- quota reports\\r\\n- + awstats on apache logs\\r\\n- tmpreaper\\r\\n- ulimits?\\r\\n\", \n \"date_created\": + \"1183778331\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 18757, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/skvidal\", \n \"fullname\": \"Seth Vidal\", + \n \"name\": \"skvidal\", \n \"url_path\": \"user/skvidal\"\n + \ }\n }, \n {\n \"comment\": \"http://www.fedorapeople.org + was deployed and announced.\", \n \"date_created\": \"1184874022\", + \n \"edited_on\": null, \n \"editor\": null, \n \"id\": + 18758, \n \"notification\": false, \n \"parent\": null, + \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/santosp\", \n \"fullname\": \"Paulo Andr\\u00e9 + Banon Cardoso Santos\", \n \"name\": \"santosp\", \n \"url_path\": + \"user/santosp\"\n }\n }\n ], \n \"content\": \"fedorapeople.org + will be a place for our users to host web content.\", \n \"custom_fields\": + [], \n \"date_created\": \"1183757534\", \n \"depends\": [], \n + \ \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/16\", + \n \"id\": 16, \n \"last_updated\": \"1184874022\", \n \"milestone\": + null, \n \"priority\": null, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": + \"fedorapeople.org\", \n \"user\": {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", + \n \"fullname\": \"Mike McGrath\", \n \"name\": \"mmcgrath\", + \n \"url_path\": \"user/mmcgrath\"\n }\n }, \n {\n \"assignee\": + {\n \"full_url\": \"https://pagure.io/user/toshio\", \n \"fullname\": + \"Toshio \\u304f\\u3089\\u3068\\u307f\", \n \"name\": \"toshio\", \n + \ \"url_path\": \"user/toshio\"\n }, \n \"blocks\": [], \n + \ \"close_status\": \"Fixed\", \n \"closed_at\": null, \n \"closed_by\": + null, \n \"comments\": [\n {\n \"comment\": \"See::\\r\\nhttp://hosted.fedoraproject.org/projects/packagedb/roadmap\\r\\n\\r\\nFor + details. We're getting close to 0.3 which will be deployed live.\", \n \"date_created\": + \"1184900013\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 12036, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/toshio\", \n \"fullname\": \"Toshio \\u304f\\u3089\\u3068\\u307f\", + \n \"name\": \"toshio\", \n \"url_path\": \"user/toshio\"\n + \ }\n }, \n {\n \"comment\": \"0.3 Has been + deployed and cvsadmins are working with it right now. We'll be announcing + it for users in a few weeks time.\\r\\n\\r\\nFurther progress is being tracked + on the [https://hosted.fedoraproject.org/projects/packagedb/roadmap PackageDB + Roadmap].\", \n \"date_created\": \"1186645761\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 12035, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/toshio\", \n \"fullname\": + \"Toshio \\u304f\\u3089\\u3068\\u307f\", \n \"name\": \"toshio\", + \n \"url_path\": \"user/toshio\"\n }\n }, \n {\n + \ \"comment\": \"The PackageDB has been deployed for production usage. + \ Further development is being tracked on the PakcageDB project pages: https://hosted.fedoraproject.org/projects/packagedb/\", + \n \"date_created\": \"1190765273\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 12034, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/toshio\", \n \"fullname\": + \"Toshio \\u304f\\u3089\\u3068\\u307f\", \n \"name\": \"toshio\", + \n \"url_path\": \"user/toshio\"\n }\n }\n ], + \n \"content\": \"The Fedora Package Database aims to consolidate the + information on the packages present in Fedora Package Collection. It will + allow us to perform queries on packages and their maintainers as well as some + of the administrative tasks associated with them (branch requests, etc.)\\r\\n\\r\\nMore + Info:\\r\\nhttp://fedoraproject.org/wiki/Infrastructure/PackageDatabase\", + \n \"custom_fields\": [], \n \"date_created\": \"1183757422\", \n + \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/15\", + \n \"id\": 15, \n \"last_updated\": \"1190765273\", \n \"milestone\": + null, \n \"priority\": null, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": + \"Package Database\", \n \"user\": {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", + \n \"fullname\": \"Mike McGrath\", \n \"name\": \"mmcgrath\", + \n \"url_path\": \"user/mmcgrath\"\n }\n }, \n {\n \"assignee\": + {\n \"full_url\": \"https://pagure.io/user/ausil\", \n \"fullname\": + \"Dennis Gilmore\", \n \"name\": \"ausil\", \n \"url_path\": + \"user/ausil\"\n }, \n \"blocks\": [], \n \"close_status\": + \"Fixed\", \n \"closed_at\": null, \n \"closed_by\": null, \n \"comments\": + [\n {\n \"comment\": \"No way to get this done for F9.\", + \n \"date_created\": \"1207967616\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 18400, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", \n \"fullname\": + \"Mike McGrath\", \n \"name\": \"mmcgrath\", \n \"url_path\": + \"user/mmcgrath\"\n }\n }, \n {\n \"comment\": + \"Do you think that this will ever get done at all? It seems to me that this + is one of those \\\"religious\\\" issues that can't be solved by rational + debate and we just need someone to just decide the issue and everyone will + just have to live with it.\", \n \"date_created\": \"1207967823\", + \n \"edited_on\": null, \n \"editor\": null, \n \"id\": + 18398, \n \"notification\": false, \n \"parent\": null, + \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/jcollie\", \n \"fullname\": \"Jeffrey + C. Ollie\", \n \"name\": \"jcollie\", \n \"url_path\": + \"user/jcollie\"\n }\n }, \n {\n \"comment\": + \"I'm going to close this and let someone else report and track it.\", \n + \ \"date_created\": \"1226629841\", \n \"edited_on\": null, + \n \"editor\": null, \n \"id\": 18399, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", \n \"fullname\": + \"Mike McGrath\", \n \"name\": \"mmcgrath\", \n \"url_path\": + \"user/mmcgrath\"\n }\n }\n ], \n \"content\": \"CVS + is [http://en.wiktionary.org/wiki/pass%C3%A9 pass\\u00e9], we need to choose + a new VCS for managing packages. See the Fedora Infrastructure [http://fedoraproject.org/wiki/Infrastructure/VersionControl + version control] wiki page.\", \n \"custom_fields\": [], \n \"date_created\": + \"1183757158\", \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/14\", + \n \"id\": 14, \n \"last_updated\": \"1226629841\", \n \"milestone\": + null, \n \"priority\": null, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": + \"Choose New VCS for Packages\", \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/jcollie\", \n \"fullname\": \"Jeffrey C. Ollie\", + \n \"name\": \"jcollie\", \n \"url_path\": \"user/jcollie\"\n + \ }\n }, \n {\n \"assignee\": {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", + \n \"fullname\": \"Mike McGrath\", \n \"name\": \"mmcgrath\", + \n \"url_path\": \"user/mmcgrath\"\n }, \n \"blocks\": [], + \n \"close_status\": \"Fixed\", \n \"closed_at\": null, \n \"closed_by\": + null, \n \"comments\": [\n {\n \"comment\": \"We're all + set. Backup pc has been removed and bacula is in place. I'm still working + out the right schedule.\", \n \"date_created\": \"1186519214\", \n + \ \"edited_on\": null, \n \"editor\": null, \n \"id\": + 6451, \n \"notification\": false, \n \"parent\": null, \n + \ \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/mmcgrath\", \n \"fullname\": \"Mike McGrath\", + \n \"name\": \"mmcgrath\", \n \"url_path\": \"user/mmcgrath\"\n + \ }\n }\n ], \n \"content\": \"Currently blocking + on: https://bugzilla.redhat.com/230344\", \n \"custom_fields\": [], \n + \ \"date_created\": \"1183756816\", \n \"depends\": [], \n \"full_url\": + \"https://pagure.io/fedora-infrastructure/issue/13\", \n \"id\": 13, + \n \"last_updated\": \"1186519214\", \n \"milestone\": null, \n + \ \"priority\": null, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": + \"Transition to Bacula\", \n \"user\": {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", + \n \"fullname\": \"Mike McGrath\", \n \"name\": \"mmcgrath\", + \n \"url_path\": \"user/mmcgrath\"\n }\n }, \n {\n \"assignee\": + {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", \n \"fullname\": + \"Mike McGrath\", \n \"name\": \"mmcgrath\", \n \"url_path\": + \"user/mmcgrath\"\n }, \n \"blocks\": [], \n \"close_status\": + \"Fixed\", \n \"closed_at\": null, \n \"closed_by\": null, \n \"comments\": + [\n {\n \"comment\": \"Same as 25\", \n \"date_created\": + \"1185851711\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 22076, \n \"notification\": false, \n \"parent\": + null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"https://pagure.io/user/mmcgrath\", \n \"fullname\": \"Mike McGrath\", + \n \"name\": \"mmcgrath\", \n \"url_path\": \"user/mmcgrath\"\n + \ }\n }\n ], \n \"content\": \"db1 and the creation + of db2 will occur on Monday July 9th. We'll be upgrading systems. All tests + show that this should go off without a hitch.\", \n \"custom_fields\": + [], \n \"date_created\": \"1183756660\", \n \"depends\": [], \n + \ \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/12\", + \n \"id\": 12, \n \"last_updated\": \"1185851711\", \n \"milestone\": + null, \n \"priority\": null, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": + \"db1 upgrade\", \n \"user\": {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", + \n \"fullname\": \"Mike McGrath\", \n \"name\": \"mmcgrath\", + \n \"url_path\": \"user/mmcgrath\"\n }\n }, \n {\n \"assignee\": + {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", \n \"fullname\": + \"Mike McGrath\", \n \"name\": \"mmcgrath\", \n \"url_path\": + \"user/mmcgrath\"\n }, \n \"blocks\": [], \n \"close_status\": + \"Fixed\", \n \"closed_at\": null, \n \"closed_by\": null, \n \"comments\": + [\n {\n \"comment\": \"This is picked. I'll be sending out + a notification soon.\", \n \"date_created\": \"1183756405\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 14342, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", \n \"fullname\": + \"Mike McGrath\", \n \"name\": \"mmcgrath\", \n \"url_path\": + \"user/mmcgrath\"\n }\n }\n ], \n \"content\": \"OTRS + just wasn't cutting it. Lets try trac!\", \n \"custom_fields\": [], + \n \"date_created\": \"1183756318\", \n \"depends\": [], \n \"full_url\": + \"https://pagure.io/fedora-infrastructure/issue/11\", \n \"id\": 11, + \n \"last_updated\": \"1183756405\", \n \"milestone\": null, \n + \ \"priority\": null, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": + \"New Ticketing system\", \n \"user\": {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", + \n \"fullname\": \"Mike McGrath\", \n \"name\": \"mmcgrath\", + \n \"url_path\": \"user/mmcgrath\"\n }\n }, \n {\n \"assignee\": + {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", \n \"fullname\": + \"Mike McGrath\", \n \"name\": \"mmcgrath\", \n \"url_path\": + \"user/mmcgrath\"\n }, \n \"blocks\": [], \n \"close_status\": + \"Fixed\", \n \"closed_at\": null, \n \"closed_by\": null, \n \"comments\": + [\n {\n \"comment\": \"I'm actually almost done with this + already.\", \n \"date_created\": \"1183757406\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 14785, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", \n \"fullname\": + \"Mike McGrath\", \n \"name\": \"mmcgrath\", \n \"url_path\": + \"user/mmcgrath\"\n }\n }, \n {\n \"comment\": + \"Its updated, there are currently 4 plugins that need to be installed with + our standard hosted install, git, mercurial, webadmin, and the toc macro.\\r\\n\\r\\nI'll + be shutting down publictest3 now but not deleting it (in case anything goes + wrong) \", \n \"date_created\": \"1184623484\", \n \"edited_on\": + null, \n \"editor\": null, \n \"id\": 14784, \n \"notification\": + false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", \n \"fullname\": + \"Mike McGrath\", \n \"name\": \"mmcgrath\", \n \"url_path\": + \"user/mmcgrath\"\n }\n }\n ], \n \"content\": \"Hosted + needs to be moved to our production environment.\\r\\n\\r\\nIt will be running + on RHEL5. Jesse just got the git and mercurial plugins built. It will be + stored on xen6 (though the image may be compressed)\", \n \"custom_fields\": + [], \n \"date_created\": \"1183755997\", \n \"depends\": [], \n + \ \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/10\", + \n \"id\": 10, \n \"last_updated\": \"1184623484\", \n \"milestone\": + null, \n \"priority\": null, \n \"private\": false, \n \"related_prs\": + [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": + \"Hosted Cluster\", \n \"user\": {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", + \n \"fullname\": \"Mike McGrath\", \n \"name\": \"mmcgrath\", + \n \"url_path\": \"user/mmcgrath\"\n }\n }, \n {\n \"assignee\": + {\n \"full_url\": \"https://pagure.io/user/mmcgrath\", \n \"fullname\": + \"Mike McGrath\", \n \"name\": \"mmcgrath\", \n \"url_path\": + \"user/mmcgrath\"\n }, \n \"blocks\": [], \n \"close_status\": + \"Fixed\", \n \"closed_at\": null, \n \"closed_by\": null, \n \"comments\": [\n {\n \"comment\": \"Moving this to Fedora 9. Its just too late in the cycle to implement (it was too late even months ago)\", \n \ \"date_created\": \"1193347621\", \n \"edited_on\": null, @@ -3611,21 +4058,21 @@ interactions: \n \"last\": \"https://pagure.io/api/0/fedora-infrastructure/issues?per_page=35&status=all&page=330\", \n \"next\": null, \n \"page\": 330, \n \"pages\": 330, \n \"per_page\": 35, \n \"prev\": \"https://pagure.io/api/0/fedora-infrastructure/issues?per_page=35&status=all&page=329\"\n - \ }, \n \"total_issues\": 9\n}\n" + \ }, \n \"total_issues\": 30\n}\n" headers: Connection: - Upgrade, Keep-Alive Content-Length: - - '19895' + - '82792' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-3PtxA1XgNMMAwBSgMLEOixW1Y'; style-src - 'self' 'nonce-3PtxA1XgNMMAwBSgMLEOixW1Y'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-1pA9HOlPmxikXeY5sgHS1Gxyq'; style-src + 'self' 'nonce-1pA9HOlPmxikXeY5sgHS1Gxyq'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:36:22 GMT + - Mon, 04 Mar 2024 11:26:02 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: diff --git a/test/cassettes/test_unit_tkts/test_unit_getcount[Attempting to count issue tickets from a valid issue tracker of smaller length].yaml b/test/cassettes/test_unit_tkts/test_unit_getcount[Attempting to count issue tickets from a valid issue tracker of smaller length].yaml index 7c874b5..3cf7aff 100644 --- a/test/cassettes/test_unit_tkts/test_unit_getcount[Attempting to count issue tickets from a valid issue tracker of smaller length].yaml +++ b/test/cassettes/test_unit_tkts/test_unit_getcount[Attempting to count issue tickets from a valid issue tracker of smaller length].yaml @@ -165,14 +165,14 @@ interactions: Content-Length: - '10774' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-rZvwa0cHb63OFfYerV3PXyJlE'; style-src - 'self' 'nonce-rZvwa0cHb63OFfYerV3PXyJlE'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-bvoL8NEfyilcY2egWjpsIr4GH'; style-src + 'self' 'nonce-bvoL8NEfyilcY2egWjpsIr4GH'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:36:17 GMT + - Mon, 04 Mar 2024 11:25:54 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: diff --git a/test/cassettes/test_unit_tkts/test_unit_getcount_expt[Attempting to count issue tickets from an existing issue tracker on an existing forge].yaml b/test/cassettes/test_unit_tkts/test_unit_getcount_expt[Attempting to count issue tickets from an existing issue tracker on an existing forge].yaml index 5383991..8b7322f 100644 --- a/test/cassettes/test_unit_tkts/test_unit_getcount_expt[Attempting to count issue tickets from an existing issue tracker on an existing forge].yaml +++ b/test/cassettes/test_unit_tkts/test_unit_getcount_expt[Attempting to count issue tickets from an existing issue tracker on an existing forge].yaml @@ -165,14 +165,14 @@ interactions: Content-Length: - '10774' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-gDpw3TROvHs2mWruTFdpHz87C'; style-src - 'self' 'nonce-gDpw3TROvHs2mWruTFdpHz87C'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-ZJIC7aw1EvncsHa1tgnxE2OJT'; style-src + 'self' 'nonce-ZJIC7aw1EvncsHa1tgnxE2OJT'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:36:24 GMT + - Mon, 04 Mar 2024 11:26:06 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: diff --git a/test/cassettes/test_unit_tkts/test_unit_getcount_expt[Attempting to count issue tickets from an invalid issue tracker on an existing forge].yaml b/test/cassettes/test_unit_tkts/test_unit_getcount_expt[Attempting to count issue tickets from an invalid issue tracker on an existing forge].yaml index 19a61df..c3cf9af 100644 --- a/test/cassettes/test_unit_tkts/test_unit_getcount_expt[Attempting to count issue tickets from an invalid issue tracker on an existing forge].yaml +++ b/test/cassettes/test_unit_tkts/test_unit_getcount_expt[Attempting to count issue tickets from an invalid issue tracker on an existing forge].yaml @@ -21,14 +21,14 @@ interactions: Content-Length: - '66' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-uPLT7g9mgNqL4IiN28fNTLXyc'; style-src - 'self' 'nonce-uPLT7g9mgNqL4IiN28fNTLXyc'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-UeANRaiv90WVRnl9eQELZlw2u'; style-src + 'self' 'nonce-UeANRaiv90WVRnl9eQELZlw2u'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:36:25 GMT + - Mon, 04 Mar 2024 11:26:07 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: diff --git a/test/cassettes/test_unit_tkts/test_unit_itercmts[Attempting to migrate an existing comment to an existing namespace].yaml b/test/cassettes/test_unit_tkts/test_unit_itercmts[Attempting to migrate an existing comment to an existing namespace].yaml deleted file mode 100644 index 434b5c0..0000000 --- a/test/cassettes/test_unit_tkts/test_unit_itercmts[Attempting to migrate an existing comment to an existing namespace].yaml +++ /dev/null @@ -1,167 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-type: - - application/json - Cookie: - - _cfuvid=vu8WFvYnYBoMr_rXlAqCO4OhQXmFXlp2D2FwLpYVZ7g-1708594478626-0.0-604800000 - User-Agent: - - python-gitlab/4.4.0 - method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/1 - response: - body: - string: '{"id":134663521,"iid":1,"project_id":42823949,"title":"[SN#5] Fedora - India Twitter account strategies","description":"\nWe came up with a few ideas - to promote Fedora India community and onboard more people.\n\n* Let different - community members handle twitter account and talk about their interest and - work. Share what they do in the community, their favorite projects etc\n\n* - One \"Meet X from Fedora\" and share contributors stories once a week\n\n_This - issue ticket was originally created on [here](https://pagure.io/fedora-india/Fedora-India/issue/5) - on a Pagure repository, [**fedora-india/Fedora-India**](https://pagure.io/fedora-india/Fedora-India) - by [**Vipul Siddharth**](https://pagure.io/user/siddharthvipul1) on [**Fri - May 7 13:52:53 2021**](https://savvytime.com/converter/utc/may-07-2021/13-52)._\n\n_This - issue ticket was automatically created by the [**Pagure2GitLab Importer Service**](https://github.com/gridhead/protop2g)._","state":"closed","created_at":"2023-09-14T10:11:53.592Z","updated_at":"2024-02-22T08:29:52.339Z","closed_at":"2023-10-16T09:23:56.514Z","closed_by":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"labels":[],"milestone":null,"assignees":[],"author":{"id":1243277,"username":"ghost1","name":"Ghost - User","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/79783106d88279c6c8f94f1f4dec22bdb9f90a8d14c9d6c6628a11430e236cbf?s=80\u0026d=identicon","web_url":"https://gitlab.com/ghost1"},"type":"ISSUE","assignee":null,"user_notes_count":131,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/1","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/1","notes":"https://gitlab.com/api/v4/projects/42823949/issues/1/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/1/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#1","relative":"#1","full":"gridhead/protop2g-test#1"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' - headers: - CF-Cache-Status: - - MISS - CF-RAY: - - 85963efa7e6f94b6-CCU - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 22 Feb 2024 09:36:40 GMT - NEL: - - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' - Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=VZz4Qsw0XedlQqfVYR8NB39T6ZpT0CceddiIxRbsrdkr93bTgbFgeng6uDd92UrqAfhW62spzCxy32CPCI8LgYTdXGSBUnh%2FulKoC7%2FM22Y9CVehvEuKo9aoF7NWqTpJkSbIZdKM9oI%3D"}],"group":"cf-nel","max_age":604800}' - Server: - - cloudflare - Set-Cookie: '' - Transfer-Encoding: - - chunked - cache-control: - - max-age=0, private, must-revalidate - content-security-policy: - - default-src 'none' - etag: - - W/"f201264613445d740b0e1f07af416b4f" - gitlab-lb: - - haproxy-main-29-lb-gprd - gitlab-sv: - - api-gke-us-east1-d - referrer-policy: - - strict-origin-when-cross-origin - strict-transport-security: - - max-age=31536000 - vary: - - Origin, Accept-Encoding - x-content-type-options: - - nosniff - x-frame-options: - - SAMEORIGIN - x-gitlab-meta: - - '{"correlation_id":"d1865e37eed1b86a3f2d06d8fa446489","version":"1"}' - x-request-id: - - d1865e37eed1b86a3f2d06d8fa446489 - x-runtime: - - '0.398772' - status: - code: 200 - message: OK -- request: - body: '{"body": "\nThis test comment with broken links was created on Thu Feb - 22 09:28:00 2024.\n\n_This comment was originally created [here](https://pagure.io/protop2g-test-srce/issue/1#comment-878473) - by [**Ordinary Engineer**](https://fedoraproject.org) under\n[this](https://pagure.io/protop2g-test-srce/issue/1) - issue ticket on a Pagure repository, [**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) - on\n[**Thu Feb 22 09:28:00 2024** UTC](https://savvytime.com/converter/utc/feb-22-2024/09-28)._\n\n_This - comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._\n"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '630' - Content-type: - - application/json - Cookie: - - _cfuvid=vu8WFvYnYBoMr_rXlAqCO4OhQXmFXlp2D2FwLpYVZ7g-1708594478626-0.0-604800000 - User-Agent: - - python-gitlab/4.4.0 - method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/1/discussions - response: - body: - string: '{"id":"292faac2f7776a87b5fd79551e2de3762d809f60","individual_note":false,"notes":[{"id":1784530784,"type":"DiscussionNote","body":"\nThis - test comment with broken links was created on Thu Feb 22 09:28:00 2024.\n\n_This - comment was originally created [here](https://pagure.io/protop2g-test-srce/issue/1#comment-878473) - by [**Ordinary Engineer**](https://fedoraproject.org) under\n[this](https://pagure.io/protop2g-test-srce/issue/1) - issue ticket on a Pagure repository, [**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) - on\n[**Thu Feb 22 09:28:00 2024** UTC](https://savvytime.com/converter/utc/feb-22-2024/09-28)._\n\n_This - comment was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","attachment":null,"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"****","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2024-02-22T09:36:41.529Z","updated_at":"2024-02-22T09:36:41.529Z","system":false,"noteable_id":134663521,"noteable_type":"Issue","project_id":42823949,"resolvable":true,"resolved":false,"resolved_by":null,"resolved_at":null,"confidential":false,"internal":false,"noteable_iid":1,"commands_changes":{}}]}' - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85963eff3cc993c2-CCU - Connection: - - keep-alive - Content-Length: - - '1444' - Content-Type: - - application/json - Date: - - Thu, 22 Feb 2024 09:36:42 GMT - NEL: - - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' - Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=bsKlFcHNRaDv0b2jPe1xz7YC%2B0j6avxrS0AsiQPiRn4CvOeI7j%2BofolSW3LngMWo40Q8Gk%2FU7X3%2FRXjVS8KWouiJx0LTa4Do%2BMceQdmY5coad2g9a71Wquwij%2FUtu1BLN%2BpRgLVLoSg%3D"}],"group":"cf-nel","max_age":604800}' - Server: - - cloudflare - Set-Cookie: '' - cache-control: - - max-age=0, private, must-revalidate - content-security-policy: - - default-src 'none' - etag: - - W/"9fe5fc9fd2be5022798f305a9adb0473" - gitlab-lb: - - haproxy-main-06-lb-gprd - gitlab-sv: - - api-gke-us-east1-b - referrer-policy: - - strict-origin-when-cross-origin - strict-transport-security: - - max-age=31536000 - vary: - - Origin - x-content-type-options: - - nosniff - x-frame-options: - - SAMEORIGIN - x-gitlab-meta: - - '{"correlation_id":"3f026980ab747fe14b05443d48aad0b0","version":"1"}' - x-request-id: - - 3f026980ab747fe14b05443d48aad0b0 - x-runtime: - - '1.693238' - status: - code: 201 - message: Created -version: 1 diff --git a/test/cassettes/test_unit_tkts/test_unit_iteriden[Attempting to probe the issue ticket with the existing identity with matching status].yaml b/test/cassettes/test_unit_tkts/test_unit_iteriden[Attempting to probe the issue ticket with the existing identity with matching status].yaml index 8b653bb..56ac969 100644 --- a/test/cassettes/test_unit_tkts/test_unit_iteriden[Attempting to probe the issue ticket with the existing identity with matching status].yaml +++ b/test/cassettes/test_unit_tkts/test_unit_iteriden[Attempting to probe the issue ticket with the existing identity with matching status].yaml @@ -51,14 +51,14 @@ interactions: Content-Length: - '2135' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-UFKLVktdbOn150JoFgopcFoyf'; style-src - 'self' 'nonce-UFKLVktdbOn150JoFgopcFoyf'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-0s7R3nYwof2ZZrlTmaRRzXLGm'; style-src + 'self' 'nonce-0s7R3nYwof2ZZrlTmaRRzXLGm'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:36:32 GMT + - Mon, 04 Mar 2024 11:26:17 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: diff --git a/test/cassettes/test_unit_tkts/test_unit_iteriden[Attempting to probe the issue ticket with the existing identity with mismatch status].yaml b/test/cassettes/test_unit_tkts/test_unit_iteriden[Attempting to probe the issue ticket with the existing identity with mismatch status].yaml index 677d7c9..9043c10 100644 --- a/test/cassettes/test_unit_tkts/test_unit_iteriden[Attempting to probe the issue ticket with the existing identity with mismatch status].yaml +++ b/test/cassettes/test_unit_tkts/test_unit_iteriden[Attempting to probe the issue ticket with the existing identity with mismatch status].yaml @@ -60,14 +60,14 @@ interactions: Content-Length: - '2784' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-BurQw5MrwQmEvU6vriKW9roLm'; style-src - 'self' 'nonce-BurQw5MrwQmEvU6vriKW9roLm'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-2B1OKSyDNXue8OXprlnkTbEeI'; style-src + 'self' 'nonce-2B1OKSyDNXue8OXprlnkTbEeI'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:36:33 GMT + - Mon, 04 Mar 2024 11:26:19 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: diff --git a/test/cassettes/test_unit_tkts/test_unit_iteriden[Attempting to probe the issue ticket with the invalid identity].yaml b/test/cassettes/test_unit_tkts/test_unit_iteriden[Attempting to probe the issue ticket with the invalid identity].yaml index 5f512b7..7d88f66 100644 --- a/test/cassettes/test_unit_tkts/test_unit_iteriden[Attempting to probe the issue ticket with the invalid identity].yaml +++ b/test/cassettes/test_unit_tkts/test_unit_iteriden[Attempting to probe the issue ticket with the invalid identity].yaml @@ -21,14 +21,14 @@ interactions: Content-Length: - '62' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-toz9WUtB5vU9o35iqkFhihzb3'; style-src - 'self' 'nonce-toz9WUtB5vU9o35iqkFhihzb3'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-wO7QmKe6f63LnxrsfEDNSOLRT'; style-src + 'self' 'nonce-wO7QmKe6f63LnxrsfEDNSOLRT'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:36:34 GMT + - Mon, 04 Mar 2024 11:26:20 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: diff --git a/test/cassettes/test_unit_tkts/test_unit_iteriden_expt[Attempting to iterate through the first page from an invalid issue tracker on an existing forge].yaml b/test/cassettes/test_unit_tkts/test_unit_iteriden_expt[Attempting to iterate through the first page from an invalid issue tracker on an existing forge].yaml index c760417..0d9053f 100644 --- a/test/cassettes/test_unit_tkts/test_unit_iteriden_expt[Attempting to iterate through the first page from an invalid issue tracker on an existing forge].yaml +++ b/test/cassettes/test_unit_tkts/test_unit_iteriden_expt[Attempting to iterate through the first page from an invalid issue tracker on an existing forge].yaml @@ -21,14 +21,14 @@ interactions: Content-Length: - '66' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-uOm0FBq6xE8SRRFWAbjbCJKp1'; style-src - 'self' 'nonce-uOm0FBq6xE8SRRFWAbjbCJKp1'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-HXFeZWbrQ7lpSk2sfakdh9wGb'; style-src + 'self' 'nonce-HXFeZWbrQ7lpSk2sfakdh9wGb'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:36:37 GMT + - Mon, 04 Mar 2024 11:26:22 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: diff --git a/test/cassettes/test_unit_tkts/test_unit_iteriden_expt[Attempting to probe the issue ticket with the existing identity on an existing issue tracker on an existing forge].yaml b/test/cassettes/test_unit_tkts/test_unit_iteriden_expt[Attempting to probe the issue ticket with the existing identity on an existing issue tracker on an existing forge].yaml index 8a4ceea..1c81c2c 100644 --- a/test/cassettes/test_unit_tkts/test_unit_iteriden_expt[Attempting to probe the issue ticket with the existing identity on an existing issue tracker on an existing forge].yaml +++ b/test/cassettes/test_unit_tkts/test_unit_iteriden_expt[Attempting to probe the issue ticket with the existing identity on an existing issue tracker on an existing forge].yaml @@ -51,14 +51,14 @@ interactions: Content-Length: - '2135' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-5wARXSdfECXG3lrTOyswzM4g5'; style-src - 'self' 'nonce-5wARXSdfECXG3lrTOyswzM4g5'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-vVErArvcNMz6QyfAMRCCxVqyS'; style-src + 'self' 'nonce-vVErArvcNMz6QyfAMRCCxVqyS'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:36:35 GMT + - Mon, 04 Mar 2024 11:26:21 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: diff --git a/test/cassettes/test_unit_tkts/test_unit_iterpage[Attempting to iterate through the first page from an existing issue tracker for OPEN tickets].yaml b/test/cassettes/test_unit_tkts/test_unit_iterpage[Attempting to iterate through the first page from an existing issue tracker for OPEN tickets].yaml index 117be0d..31dcbc6 100644 --- a/test/cassettes/test_unit_tkts/test_unit_iterpage[Attempting to iterate through the first page from an existing issue tracker for OPEN tickets].yaml +++ b/test/cassettes/test_unit_tkts/test_unit_iterpage[Attempting to iterate through the first page from an existing issue tracker for OPEN tickets].yaml @@ -55,14 +55,14 @@ interactions: Content-Length: - '2514' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-aX6Wcq3sfq2PEeBPHaDkvVDgs'; style-src - 'self' 'nonce-aX6Wcq3sfq2PEeBPHaDkvVDgs'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-7b7HFXKR3h2dCrfT7oVMaJ3I2'; style-src + 'self' 'nonce-7b7HFXKR3h2dCrfT7oVMaJ3I2'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:36:28 GMT + - Mon, 04 Mar 2024 11:26:10 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: diff --git a/test/cassettes/test_unit_tkts/test_unit_iterpage[Attempting to iterate through the first page from an existing issue tracker for SHUT tickets].yaml b/test/cassettes/test_unit_tkts/test_unit_iterpage[Attempting to iterate through the first page from an existing issue tracker for SHUT tickets].yaml index 5f85392..fc8dd3c 100644 --- a/test/cassettes/test_unit_tkts/test_unit_iterpage[Attempting to iterate through the first page from an existing issue tracker for SHUT tickets].yaml +++ b/test/cassettes/test_unit_tkts/test_unit_iterpage[Attempting to iterate through the first page from an existing issue tracker for SHUT tickets].yaml @@ -64,14 +64,14 @@ interactions: Content-Length: - '3295' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-QPFayHZQoVYHEvpwAtYt4lFOI'; style-src - 'self' 'nonce-QPFayHZQoVYHEvpwAtYt4lFOI'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-epsw33nkTbb2uOiwNpQAsbc1L'; style-src + 'self' 'nonce-epsw33nkTbb2uOiwNpQAsbc1L'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:36:29 GMT + - Mon, 04 Mar 2024 11:26:14 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: diff --git a/test/cassettes/test_unit_tkts/test_unit_iterpage[Setting an invalid `pagesize` value].yaml b/test/cassettes/test_unit_tkts/test_unit_iterpage[Setting an invalid `pagesize` value].yaml index bdcfe51..4d5e5cc 100644 --- a/test/cassettes/test_unit_tkts/test_unit_iterpage[Setting an invalid `pagesize` value].yaml +++ b/test/cassettes/test_unit_tkts/test_unit_iterpage[Setting an invalid `pagesize` value].yaml @@ -22,14 +22,14 @@ interactions: Content-Length: - '103' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-3XYwwdnkhWklgHyaNLtrPTMjA'; style-src - 'self' 'nonce-3XYwwdnkhWklgHyaNLtrPTMjA'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-b1NrdFuGci9CkBdnkH7q8Jbif'; style-src + 'self' 'nonce-b1NrdFuGci9CkBdnkH7q8Jbif'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:36:27 GMT + - Mon, 04 Mar 2024 11:26:08 GMT Referrer-Policy: - same-origin Server: diff --git a/test/cassettes/test_unit_tkts/test_unit_iterpage_expt[Attempting to iterate through the first page from an existing issue tracker on an existing forge].yaml b/test/cassettes/test_unit_tkts/test_unit_iterpage_expt[Attempting to iterate through the first page from an existing issue tracker on an existing forge].yaml index 49462cf..f74ebdc 100644 --- a/test/cassettes/test_unit_tkts/test_unit_iterpage_expt[Attempting to iterate through the first page from an existing issue tracker on an existing forge].yaml +++ b/test/cassettes/test_unit_tkts/test_unit_iterpage_expt[Attempting to iterate through the first page from an existing issue tracker on an existing forge].yaml @@ -64,14 +64,14 @@ interactions: Content-Length: - '3295' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-rpqeSAc0yVR3UYDlba3YaALkz'; style-src - 'self' 'nonce-rpqeSAc0yVR3UYDlba3YaALkz'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-rAhFCzGKQjo4vTp435ZtFr6BT'; style-src + 'self' 'nonce-rAhFCzGKQjo4vTp435ZtFr6BT'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:36:30 GMT + - Mon, 04 Mar 2024 11:26:15 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: diff --git a/test/cassettes/test_unit_tkts/test_unit_iterpage_expt[Attempting to iterate through the first page from an invalid issue tracker on an existing forge].yaml b/test/cassettes/test_unit_tkts/test_unit_iterpage_expt[Attempting to iterate through the first page from an invalid issue tracker on an existing forge].yaml index 5ac32b2..7fc89bf 100644 --- a/test/cassettes/test_unit_tkts/test_unit_iterpage_expt[Attempting to iterate through the first page from an invalid issue tracker on an existing forge].yaml +++ b/test/cassettes/test_unit_tkts/test_unit_iterpage_expt[Attempting to iterate through the first page from an invalid issue tracker on an existing forge].yaml @@ -21,14 +21,14 @@ interactions: Content-Length: - '66' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-uzuPcCpQA7tV8K6gI8fI0TcxK'; style-src - 'self' 'nonce-uzuPcCpQA7tV8K6gI8fI0TcxK'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-TB55mknZgHXayJW2vXp493bI9'; style-src + 'self' 'nonce-TB55mknZgHXayJW2vXp493bI9'; object-src 'none';base-uri 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src https://docs.pagure.org;frame-ancestors https://pagure.io; Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:36:31 GMT + - Mon, 04 Mar 2024 11:26:16 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: diff --git a/test/cassettes/test_unit_tkts/test_unit_iterstat[Attempting to migrate status of an existing issue ticket when requested on an existing namespace].yaml b/test/cassettes/test_unit_tkts/test_unit_iterstat[Attempting to migrate status of an existing issue ticket when requested on an existing namespace].yaml deleted file mode 100644 index c766d6d..0000000 --- a/test/cassettes/test_unit_tkts/test_unit_iterstat[Attempting to migrate status of an existing issue ticket when requested on an existing namespace].yaml +++ /dev/null @@ -1,170 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-type: - - application/json - Cookie: - - _cfuvid=vu8WFvYnYBoMr_rXlAqCO4OhQXmFXlp2D2FwLpYVZ7g-1708594478626-0.0-604800000 - User-Agent: - - python-gitlab/4.4.0 - method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/1 - response: - body: - string: '{"id":134663521,"iid":1,"project_id":42823949,"title":"[SN#5] Fedora - India Twitter account strategies","description":"\nWe came up with a few ideas - to promote Fedora India community and onboard more people.\n\n* Let different - community members handle twitter account and talk about their interest and - work. Share what they do in the community, their favorite projects etc\n\n* - One \"Meet X from Fedora\" and share contributors stories once a week\n\n_This - issue ticket was originally created on [here](https://pagure.io/fedora-india/Fedora-India/issue/5) - on a Pagure repository, [**fedora-india/Fedora-India**](https://pagure.io/fedora-india/Fedora-India) - by [**Vipul Siddharth**](https://pagure.io/user/siddharthvipul1) on [**Fri - May 7 13:52:53 2021**](https://savvytime.com/converter/utc/may-07-2021/13-52)._\n\n_This - issue ticket was automatically created by the [**Pagure2GitLab Importer Service**](https://github.com/gridhead/protop2g)._","state":"closed","created_at":"2023-09-14T10:11:53.592Z","updated_at":"2024-02-22T09:36:41.579Z","closed_at":"2023-10-16T09:23:56.514Z","closed_by":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"labels":[],"milestone":null,"assignees":[],"author":{"id":1243277,"username":"ghost1","name":"Ghost - User","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/79783106d88279c6c8f94f1f4dec22bdb9f90a8d14c9d6c6628a11430e236cbf?s=80\u0026d=identicon","web_url":"https://gitlab.com/ghost1"},"type":"ISSUE","assignee":null,"user_notes_count":132,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/1","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/1","notes":"https://gitlab.com/api/v4/projects/42823949/issues/1/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/1/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#1","relative":"#1","full":"gridhead/protop2g-test#1"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' - headers: - CF-Cache-Status: - - MISS - CF-RAY: - - 85963f0c4aaf93c5-CCU - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 22 Feb 2024 09:36:43 GMT - NEL: - - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' - Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=d7iKaYVlfyCN6yDyM%2FZJEGGK9dEthWznxY59BwWe98yJx81I45RupWBgUZF9YrEanr9bFDWCwJEK0VDAw5ucjjA%2F92Kws4afjUL7rDQCGiNb3T4St%2BRO7NO2MV0Ubn%2FLJMC9ONwFPcw%3D"}],"group":"cf-nel","max_age":604800}' - Server: - - cloudflare - Set-Cookie: '' - Transfer-Encoding: - - chunked - cache-control: - - max-age=0, private, must-revalidate - content-security-policy: - - default-src 'none' - etag: - - W/"f708edd8cba6b3c5fb164970473a3b39" - gitlab-lb: - - haproxy-main-13-lb-gprd - gitlab-sv: - - api-gke-us-east1-c - referrer-policy: - - strict-origin-when-cross-origin - strict-transport-security: - - max-age=31536000 - vary: - - Origin, Accept-Encoding - x-content-type-options: - - nosniff - x-frame-options: - - SAMEORIGIN - x-gitlab-meta: - - '{"correlation_id":"908814f60375fed63e238d6fdc2c9279","version":"1"}' - x-request-id: - - 908814f60375fed63e238d6fdc2c9279 - x-runtime: - - '0.412968' - status: - code: 200 - message: OK -- request: - body: '{"state_event": "close"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '24' - Content-type: - - application/json - Cookie: - - _cfuvid=vu8WFvYnYBoMr_rXlAqCO4OhQXmFXlp2D2FwLpYVZ7g-1708594478626-0.0-604800000 - User-Agent: - - python-gitlab/4.4.0 - method: PUT - uri: https://gitlab.com/api/v4/projects/42823949/issues/1 - response: - body: - string: '{"id":134663521,"iid":1,"project_id":42823949,"title":"[SN#5] Fedora - India Twitter account strategies","description":"\nWe came up with a few ideas - to promote Fedora India community and onboard more people.\n\n* Let different - community members handle twitter account and talk about their interest and - work. Share what they do in the community, their favorite projects etc\n\n* - One \"Meet X from Fedora\" and share contributors stories once a week\n\n_This - issue ticket was originally created on [here](https://pagure.io/fedora-india/Fedora-India/issue/5) - on a Pagure repository, [**fedora-india/Fedora-India**](https://pagure.io/fedora-india/Fedora-India) - by [**Vipul Siddharth**](https://pagure.io/user/siddharthvipul1) on [**Fri - May 7 13:52:53 2021**](https://savvytime.com/converter/utc/may-07-2021/13-52)._\n\n_This - issue ticket was automatically created by the [**Pagure2GitLab Importer Service**](https://github.com/gridhead/protop2g)._","state":"closed","created_at":"2023-09-14T10:11:53.592Z","updated_at":"2024-02-22T09:36:41.579Z","closed_at":"2023-10-16T09:23:56.514Z","closed_by":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"labels":[],"milestone":null,"assignees":[],"author":{"id":1243277,"username":"ghost1","name":"Ghost - User","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/79783106d88279c6c8f94f1f4dec22bdb9f90a8d14c9d6c6628a11430e236cbf?s=80\u0026d=identicon","web_url":"https://gitlab.com/ghost1"},"type":"ISSUE","assignee":null,"user_notes_count":132,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/1","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/1","notes":"https://gitlab.com/api/v4/projects/42823949/issues/1/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/1/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#1","relative":"#1","full":"gridhead/protop2g-test#1"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85963f113de493cb-CCU - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 22 Feb 2024 09:36:44 GMT - NEL: - - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' - Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=z0PZD%2BiPdHlIIJG3LYW0beWP4Cnpk7xygaNDjfCP7NIxWS1yF6aC9PBGAnyR3ldhvpJ4LL7nsQNVt1QSiiHtVr%2FD%2BD4wyZzoY2o0QiwnjDZvoDesau0aiWDvRCFlomfgo0%2B8anRWsY8%3D"}],"group":"cf-nel","max_age":604800}' - Server: - - cloudflare - Set-Cookie: '' - Transfer-Encoding: - - chunked - cache-control: - - max-age=0, private, must-revalidate - content-security-policy: - - default-src 'none' - etag: - - W/"f708edd8cba6b3c5fb164970473a3b39" - gitlab-lb: - - haproxy-main-13-lb-gprd - gitlab-sv: - - api-gke-us-east1-c - referrer-policy: - - strict-origin-when-cross-origin - strict-transport-security: - - max-age=31536000 - vary: - - Origin, Accept-Encoding - x-content-type-options: - - nosniff - x-frame-options: - - SAMEORIGIN - x-gitlab-meta: - - '{"correlation_id":"2b5f358f480ef2be3561396baaffb8ce","version":"1"}' - x-request-id: - - 2b5f358f480ef2be3561396baaffb8ce - x-runtime: - - '0.380498' - status: - code: 200 - message: OK -version: 1 diff --git a/test/cassettes/test_unit_tkts/test_unit_iterstat[Attempting to migrate status of an invalid issue ticket when requested on an existing namespace].yaml b/test/cassettes/test_unit_tkts/test_unit_iterstat[Attempting to migrate status of an invalid issue ticket when requested on an existing namespace].yaml deleted file mode 100644 index 53ef709..0000000 --- a/test/cassettes/test_unit_tkts/test_unit_iterstat[Attempting to migrate status of an invalid issue ticket when requested on an existing namespace].yaml +++ /dev/null @@ -1,67 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-type: - - application/json - Cookie: - - _cfuvid=vu8WFvYnYBoMr_rXlAqCO4OhQXmFXlp2D2FwLpYVZ7g-1708594478626-0.0-604800000 - User-Agent: - - python-gitlab/4.4.0 - method: GET - uri: https://gitlab.com/api/v4/projects/42823949/issues/0 - response: - body: - string: '{"message":"404 Not found"}' - headers: - CF-Cache-Status: - - MISS - CF-RAY: - - 85963f194d3b93cb-CCU - Connection: - - keep-alive - Content-Length: - - '27' - Content-Type: - - application/json - Date: - - Thu, 22 Feb 2024 09:36:45 GMT - NEL: - - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' - Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=gt90hgaEc7yd0FH8DHcJRH%2F5Y%2BsUG8lCXr68qapR%2FRtfaSxZfgf6dEtfBG8XPycpCW5KEKDVEQKwitVOkOYXEf29r3lJS%2Fwe6Ihb0RfwpYRjR28tKnzCPGLP416c1vnYi%2BvzK70u7MU%3D"}],"group":"cf-nel","max_age":604800}' - Server: - - cloudflare - Set-Cookie: '' - X-Content-Type-Options: - - nosniff - cache-control: - - no-cache - content-security-policy: - - default-src 'none' - gitlab-lb: - - haproxy-main-36-lb-gprd - gitlab-sv: - - api-gke-us-east1-b - referrer-policy: - - strict-origin-when-cross-origin - strict-transport-security: - - max-age=31536000 - vary: - - Origin, Accept-Encoding - x-gitlab-meta: - - '{"correlation_id":"b8841305080dbf4112a0575722b8a9b8","version":"1"}' - x-request-id: - - b8841305080dbf4112a0575722b8a9b8 - x-runtime: - - '0.056521' - status: - code: 404 - message: Not Found -version: 1 diff --git a/test/cassettes/test_unit_tkts/test_unit_itertkts[Attempting to migrate an existing issue ticket with tags to an existing namespace].yaml b/test/cassettes/test_unit_tkts/test_unit_itertkts[Attempting to migrate an existing issue ticket with tags to an existing namespace].yaml index 4545602..82ee614 100644 --- a/test/cassettes/test_unit_tkts/test_unit_itertkts[Attempting to migrate an existing issue ticket with tags to an existing namespace].yaml +++ b/test/cassettes/test_unit_tkts/test_unit_itertkts[Attempting to migrate an existing issue ticket with tags to an existing namespace].yaml @@ -1,4 +1,76 @@ interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-type: + - application/json + User-Agent: + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949 + response: + body: + string: '{"id":42823949,"description":null,"name":"protop2g-test","name_with_namespace":"Akashdeep + Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-03-04T11:20:52.799Z","namespace":{"id":13984834,"name":"Akashdeep + Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"container_registry_image_prefix":"registry.gitlab.com/gridhead/protop2g-test","_links":{"self":"https://gitlab.com/api/v4/projects/42823949","issues":"https://gitlab.com/api/v4/projects/42823949/issues","merge_requests":"https://gitlab.com/api/v4/projects/42823949/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/42823949/repository/branches","labels":"https://gitlab.com/api/v4/projects/42823949/labels","events":"https://gitlab.com/api/v4/projects/42823949/events","members":"https://gitlab.com/api/v4/projects/42823949/members","cluster_agents":"https://gitlab.com/api/v4/projects/42823949/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"public","owner":{"id":10115999,"username":"gridhead","name":"Akashdeep + Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":40,"description_html":"","updated_at":"2024-03-04T11:20:52.799Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":50,"notification_level":3},"group_access":null}}' + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 85f182de2aee94b9-CCU + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Mon, 04 Mar 2024 11:26:25 GMT + NEL: + - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=ofHYY5G89gdq7X9GGOt%2FWefswgB8bgdBdNwYATJ%2FT6kMYO%2BfGvSQ82CAvx297AW7Oz75E1h1Uk8zCgngzHsvW3usVVD2VRnSFDHWA%2FrH2EBlk2wew3XUwEiqSgWFZYkOVj2Pj77NSBM%3D"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Set-Cookie: '' + Transfer-Encoding: + - chunked + cache-control: + - max-age=0, private, must-revalidate + content-security-policy: + - default-src 'none' + etag: + - W/"eadf8d1e7416208611734acb4591ac75" + gitlab-lb: + - haproxy-main-04-lb-gprd + gitlab-sv: + - api-gke-us-east1-c + referrer-policy: + - strict-origin-when-cross-origin + strict-transport-security: + - max-age=31536000 + vary: + - Origin, Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-gitlab-meta: + - '{"correlation_id":"a8d3b5a0961b78c3f66d5d1e3a9e67d8","version":"1"}' + x-request-id: + - a8d3b5a0961b78c3f66d5d1e3a9e67d8 + x-runtime: + - '0.140598' + status: + code: 200 + message: OK - request: body: '{"title": "[SN#1] This is the title of the first test issue", "description": "\nThis is the body of the first test issue\n\n_This issue ticket was originally @@ -19,38 +91,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=vu8WFvYnYBoMr_rXlAqCO4OhQXmFXlp2D2FwLpYVZ7g-1708594478626-0.0-604800000 + - _cfuvid=d0oiNo2bykfHzwFBeR60ThOhcag_LTXWE0HnQQtza3g-1709551585440-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497685,"iid":13170,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142912582,"iid":13552,"project_id":42823949,"title":"[SN#1] This is the title of the first test issue","description":"\nThis is the body of the first test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/1) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Ordinary Engineer**](https://fedoraproject.org) on\n[**Fri Oct 13 03:57:42 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/03-57)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:36:38.943Z","updated_at":"2024-02-22T09:36:38.943Z","closed_at":null,"closed_by":null,"labels":["aaaa","bbbb"],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13170","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13170","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13170/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13170/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13170","relative":"#13170","full":"gridhead/protop2g-test#13170"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:26:26.202Z","updated_at":"2024-03-04T11:26:26.202Z","closed_at":null,"closed_by":null,"labels":["aaaa","bbbb"],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13552","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13552","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13552/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13552/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13552","relative":"#13552","full":"gridhead/protop2g-test#13552"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963eeffeec94bf-CCU + - 85f182e29c9d93c2-CCU Connection: - keep-alive Content-Length: - - '2199' + - '2231' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:36:39 GMT + - Mon, 04 Mar 2024 11:26:26 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=TBfUHfZ%2Bvx7B%2FCcIc4AhUVMrzmfEa2cRGJBv2BSRmQesExTawOEsG4bidqpsQjttfVphPyds5ADl4es%2F3BpcM%2FxI%2BIMbL%2FlAoHkpnZtV0xRCjFgcCHK82YFOxCDyoisJ0CLnD6hKOVo%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=99foadxRuoUqvEoBIYLTtJQGfLqsz7W0Mxds93VQEQzVHOjQzC5cbIZc9Al8ZVaYxEJCrcQqyi69sIwRxCfbS5hG%2Blwe9IUEce8dy2xa62Ddh0HR2GPuwKLGP8iZMrmIa8nwwUDR5b8%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -59,11 +132,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"27df68c77c315fa65c04450abd12ddec" + - W/"23974b746674d5ccb90dc999755937eb" gitlab-lb: - - haproxy-main-06-lb-gprd + - haproxy-main-41-lb-gprd gitlab-sv: - - api-gke-us-east1-b + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -75,11 +148,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"b6f13e893ffeebf8e51aabede5e06b07","version":"1"}' + - '{"correlation_id":"454fcdcdc136c9a0d157e0aa4effff68","version":"1"}' x-request-id: - - b6f13e893ffeebf8e51aabede5e06b07 + - 454fcdcdc136c9a0d157e0aa4effff68 x-runtime: - - '1.237991' + - '0.995826' status: code: 201 message: Created diff --git a/test/cassettes/test_unit_tkts/test_unit_itertkts[Attempting to migrate an existing issue ticket without tags to an existing namespace].yaml b/test/cassettes/test_unit_tkts/test_unit_itertkts[Attempting to migrate an existing issue ticket without tags to an existing namespace].yaml index 8efb390..44e632b 100644 --- a/test/cassettes/test_unit_tkts/test_unit_itertkts[Attempting to migrate an existing issue ticket without tags to an existing namespace].yaml +++ b/test/cassettes/test_unit_tkts/test_unit_itertkts[Attempting to migrate an existing issue ticket without tags to an existing namespace].yaml @@ -1,4 +1,76 @@ interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-type: + - application/json + User-Agent: + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949 + response: + body: + string: '{"id":42823949,"description":null,"name":"protop2g-test","name_with_namespace":"Akashdeep + Dhar / protop2g-test","path":"protop2g-test","path_with_namespace":"gridhead/protop2g-test","created_at":"2023-01-23T16:18:30.217Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:gridhead/protop2g-test.git","http_url_to_repo":"https://gitlab.com/gridhead/protop2g-test.git","web_url":"https://gitlab.com/gridhead/protop2g-test","readme_url":"https://gitlab.com/gridhead/protop2g-test/-/blob/main/README.md","forks_count":0,"avatar_url":null,"star_count":0,"last_activity_at":"2024-03-04T11:20:52.799Z","namespace":{"id":13984834,"name":"Akashdeep + Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"container_registry_image_prefix":"registry.gitlab.com/gridhead/protop2g-test","_links":{"self":"https://gitlab.com/api/v4/projects/42823949","issues":"https://gitlab.com/api/v4/projects/42823949/issues","merge_requests":"https://gitlab.com/api/v4/projects/42823949/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/42823949/repository/branches","labels":"https://gitlab.com/api/v4/projects/42823949/labels","events":"https://gitlab.com/api/v4/projects/42823949/events","members":"https://gitlab.com/api/v4/projects/42823949/members","cluster_agents":"https://gitlab.com/api/v4/projects/42823949/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"public","owner":{"id":10115999,"username":"gridhead","name":"Akashdeep + Dhar","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/e412343841597e2fb1e952dd2b1077fc95537604ce04a27c5bfb94bdb0dc3da8?s=80\u0026d=identicon","web_url":"https://gitlab.com/gridhead"},"resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2023-01-24T16:18:30.271Z"},"repository_object_format":"sha1","issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+gridhead-protop2g-test-42823949-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"private","environments_access_level":"enabled","feature_flags_access_level":"private","infrastructure_access_level":"private","monitor_access_level":"enabled","model_experiments_access_level":"enabled","model_registry_access_level":"enabled","emails_disabled":false,"emails_enabled":true,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":10115999,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":39,"description_html":"","updated_at":"2024-03-04T11:20:52.799Z","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_forward_deployment_rollback_allowed":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"build_git_strategy":"fetch","keep_latest_artifact":true,"restrict_user_defined_variables":false,"runners_token":"GR1348941S11UuXmU2P9KZ9wAZhCB","runner_token_expiration_interval":null,"group_runners_enabled":true,"auto_cancel_pending_pipelines":"enabled","build_timeout":3600,"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","ci_config_path":"","public_jobs":true,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"warn_about_potentially_unwanted_characters":true,"autoclose_referenced_issues":true,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":50,"notification_level":3},"group_access":null}}' + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 85f182d399ef94b0-CCU + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Mon, 04 Mar 2024 11:26:23 GMT + NEL: + - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' + Report-To: + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=WLfEFb1R8QmkaGn%2BJJcpGWEK0Q0cdcRahlJ8ApHvwGY46UOcvEzGGRe5TDx0KXCRUhilZuwARBfyo5PznoUaNT1McizJNHWL57LebPU2a3mPgUVufx2JOl1JSyr7brVefvY20kNcZUo%3D"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Set-Cookie: '' + Transfer-Encoding: + - chunked + cache-control: + - max-age=0, private, must-revalidate + content-security-policy: + - default-src 'none' + etag: + - W/"4eb9c2ca59c971aab1c11d0dc0358c0d" + gitlab-lb: + - haproxy-main-24-lb-gprd + gitlab-sv: + - api-gke-us-east1-b + referrer-policy: + - strict-origin-when-cross-origin + strict-transport-security: + - max-age=31536000 + vary: + - Origin, Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-gitlab-meta: + - '{"correlation_id":"24bd7e24ea615b235e0243c409486b02","version":"1"}' + x-request-id: + - 24bd7e24ea615b235e0243c409486b02 + x-runtime: + - '0.264087' + status: + code: 200 + message: OK - request: body: '{"title": "[SN#1] This is the title of the first test issue", "description": "\nThis is the body of the first test issue\n\n_This issue ticket was originally @@ -18,38 +90,39 @@ interactions: Content-type: - application/json Cookie: - - _cfuvid=vu8WFvYnYBoMr_rXlAqCO4OhQXmFXlp2D2FwLpYVZ7g-1708594478626-0.0-604800000 + - _cfuvid=a4DcRXOXVj4WE4nSQdyhpKL9TvFkN31jsSP51N8rUuE-1709551583886-0.0.1.1-604800000 User-Agent: - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":142497683,"iid":13169,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142912581,"iid":13551,"project_id":42823949,"title":"[SN#1] This is the title of the first test issue","description":"\nThis is the body of the first test issue\n\n_This issue ticket was originally created [here](https://pagure.io/protop2g-test-srce/issue/1) on a Pagure repository,\n[**protop2g-test-srce**](https://pagure.io/protop2g-test-srce) by [**Ordinary Engineer**](https://fedoraproject.org) on\n[**Fri Oct 13 03:57:42 2023** UTC](https://savvytime.com/converter/utc/oct-13-2023/03-57)._\n\n_This - issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-02-22T09:36:37.864Z","updated_at":"2024-02-22T09:36:37.864Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/d05ca08df001326fd4089761821e15d906b1315eceace144e831979f3d83379e?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13169","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 - of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13169","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13169/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13169/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13169","relative":"#13169","full":"gridhead/protop2g-test#13169"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + issue ticket was automatically created by the\n[**Pagure Exporter**](https://github.com/gridhead/pagure-exporter)._","state":"opened","created_at":"2024-03-04T11:26:24.531Z","updated_at":"2024-03-04T11:26:24.531Z","closed_at":null,"closed_by":null,"labels":[],"milestone":null,"assignees":[],"author":{"id":20210877,"username":"project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40","name":"python-gitlab + testing token for protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/af058ecaa20884749a3ce04c609cf7bcfc97ae3df418b9bab81d027921a138cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_23a338f5a77ff65fbe998fe3b9b3be40"},"type":"ISSUE","assignee":null,"user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/gridhead/protop2g-test/-/issues/13551","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":true,"task_status":"0 + of 0 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/42823949/issues/13551","notes":"https://gitlab.com/api/v4/projects/42823949/issues/13551/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/13551/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#13551","relative":"#13551","full":"gridhead/protop2g-test#13551"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85963ee9bba394d0-CCU + - 85f182d85d8e93c5-CCU Connection: - keep-alive Content-Length: - - '2186' + - '2218' Content-Type: - application/json Date: - - Thu, 22 Feb 2024 09:36:38 GMT + - Mon, 04 Mar 2024 11:26:24 GMT NEL: - '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' Report-To: - - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=v59DiVpIapudlXr8Sb1b6p6UAZuixh2FYibXqxx%2FJwkGakqujauZOqNYKistIxYfKXUynKfdI%2BZuRY5xycYwxWW%2FBBOvUSR3XVuH4W20LcdNY0LorhQ0pRUCNlrFHblUl1eX2wORlqo%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=iiXZtTHU%2B7G%2BnY0HGLa5WrukyxK0dReYnYANLGnMyH5xkZ31JRkQDuRa%2B162tjAmtcVXJ%2FDYLr3RipGTYuUAqXRWq09KfH2Gku4Fjccuy64DWa8rrHh5Ukk3ES8LHk5BZCCNpwvvaxI%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -58,11 +131,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"ee02f7bcbdccbeee09b43f5ab4b63ba6" + - W/"ee1498958781801198be40d12637634e" gitlab-lb: - - haproxy-main-46-lb-gprd + - haproxy-main-18-lb-gprd gitlab-sv: - - api-gke-us-east1-c + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -74,11 +147,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"af4d1d65268b3f9cc5c0477e5870f932","version":"1"}' + - '{"correlation_id":"41a9eeccc742136a69dbb9024a945851","version":"1"}' x-request-id: - - af4d1d65268b3f9cc5c0477e5870f932 + - 41a9eeccc742136a69dbb9024a945851 x-runtime: - - '0.585994' + - '0.551150' status: code: 201 message: Created