diff --git a/pagure_exporter/conf/standard.py b/pagure_exporter/conf/standard.py index 65a1c85..1db905f 100644 --- a/pagure_exporter/conf/standard.py +++ b/pagure_exporter/conf/standard.py @@ -114,6 +114,12 @@ srcecloc = "UNAVAILABLE" destcloc = "UNAVAILABLE" +# GitLab client object to be used while interacting with the destination namespace +gobj = None + +# Project object of the destination namespace type of the GitLab client class +gpro = None + rateindx = 0 # Time in seconds to wait for when the rate limit for API requests is reached diff --git a/pagure_exporter/work/keep.py b/pagure_exporter/work/keep.py index 19e53ac..70faa8e 100644 --- a/pagure_exporter/work/keep.py +++ b/pagure_exporter/work/keep.py @@ -66,3 +66,4 @@ def keeptkts(status, tktgroup, comments, labels, commit, secret): # Vote if the privacy associated with the issue tickets are to be moved # Default False standard.movehush = secret + diff --git a/pagure_exporter/work/stat.py b/pagure_exporter/work/stat.py index c7de051..8d4a3cb 100644 --- a/pagure_exporter/work/stat.py +++ b/pagure_exporter/work/stat.py @@ -21,7 +21,10 @@ """ + import requests +from gitlab import Gitlab as gtlb +from gitlab import GitlabAuthenticationError, GitlabGetError from pagure_exporter.conf import standard from pagure_exporter.view.dcrt import conceal @@ -73,12 +76,18 @@ def __init__(self): self.loca = standard.gtlblink self.code = standard.gtlbcode self.head = {"Authorization": "Bearer %s" % self.code} + standard.gobj = gtlb( + session=requests.Session(), + url="https://gitlab.com", + private_token=self.code, + retry_transient_errors=True, + timeout=standard.rqsttime, + ) def obtninfo(self): - rqstloca = f"{self.loca}/{self.repo}" - response = requests.get(rqstloca, headers=self.head, timeout=standard.rqsttime) - if response.status_code == 200: - jsondict = response.json() + try: + standard.gpro = standard.gobj.projects.get(id=standard.destname) + jsondict = standard.gpro.asdict() standard.destdict = { "makedate": jsondict["created_at"], "lastmode": jsondict["last_activity_at"], @@ -88,8 +97,8 @@ def obtninfo(self): "identity": jsondict["id"], "tagslist": jsondict["tag_list"], "maintain": { - "username": jsondict["namespace"]["name"], - "fullname": jsondict["namespace"]["path"], + "username": jsondict["namespace"]["path"], + "fullname": jsondict["namespace"]["name"], }, } standard.desthuto = jsondict["http_url_to_repo"] @@ -105,4 +114,6 @@ def obtninfo(self): standard.frgedest, standard.destdict["reponame"], ) - return response.status_code, response.reason + return 200, "OK" + except (GitlabAuthenticationError, GitlabGetError, Exception) as expt: + return 0, str(expt) diff --git a/pagure_exporter/work/tkts.py b/pagure_exporter/work/tkts.py index ed71868..1866d54 100644 --- a/pagure_exporter/work/tkts.py +++ b/pagure_exporter/work/tkts.py @@ -25,6 +25,7 @@ from datetime import datetime import requests +from gitlab import GitlabCreateError, GitlabGetError, GitlabUpdateError from pagure_exporter.conf import standard @@ -128,7 +129,6 @@ def iteriden(self, tkid): def itertkts(self, dictobjc): try: strttime = time.time() - standard.rateindx += 1 standard.issuname = dictobjc["title"] standard.issuiden = dictobjc["id"] standard.isclosed = True if dictobjc["status"] == "Closed" else False @@ -167,30 +167,22 @@ def itertkts(self, dictobjc): """ rqstdata = {"title": headdata, "description": bodydata.replace("@", "&")} if standard.movetags: - rqstdata["labels"] = ",".join(standard.issutags) + rqstdata["labels"] = standard.issutags if standard.movehush: rqstdata["confidential"] = standard.issecret - response = requests.post( - url=f"{self.gurl}/issues", - data=rqstdata, - headers=self.ghed, - timeout=standard.rqsttime, - ) - respcode, respresn = response.status_code, response.reason - if respcode == 201: - respresn = response.json()["web_url"] - standard.gtlbtkid = response.json()["iid"] - standard.issutnfs += 1 + rslt = standard.gpro.issues.create(data=rqstdata) + respcode, respresn = 201, rslt.web_url + standard.gtlbtkid = rslt.iid + standard.issutnfs += 1 stoptime = time.time() timereqd = "%.2f" % (stoptime - strttime) return respcode, respresn, timereqd - except Exception as expt: + except (GitlabCreateError, Exception) as expt: return False, expt, "0" def itercmts(self, dictobjc): try: strttime = time.time() - standard.rateindx += 1 standard.cmtsiden = dictobjc["id"] standard.cmtslink = f"{standard.issulink}#comment-{standard.cmtsiden}" standard.cmtsauth = dictobjc["user"]["fullname"] @@ -219,39 +211,29 @@ def itercmts(self, dictobjc): the problem """ rqstdata = {"body": bodydata.replace("@", "&")} - response = requests.post( - url=f"{self.gurl}/issues/{standard.gtlbtkid}/notes", - data=rqstdata, - headers=self.ghed, - timeout=standard.rqsttime, + rslt = standard.gpro.issues.get(id=standard.gtlbtkid).discussions.create(data=rqstdata) + respcode, respresn = ( + 201, f"{standard.destdict['repolink']}/-/issues/{standard.gtlbtkid}#note_{rslt.id}" ) - respcode, respresn = response.status_code, response.reason - if respcode == 201: - respresn = f"{standard.destdict['repolink']}/-/issues/{standard.gtlbtkid}#note_{response.json()['id']}" # noqa: E501 - standard.cmtsqant += 1 + standard.cmtsqant += 1 stoptime = time.time() timereqd = "%.2f" % (stoptime - strttime) return respcode, respresn, timereqd - except Exception as expt: + except (GitlabCreateError, Exception) as expt: return False, expt, "0" def iterstat(self): try: strttime, respcode, respresn = time.time(), 0, "" - standard.rateindx += 1 if standard.isclosed: - rqstdata = {"state_event": "close"} - response = requests.put( - url=f"{self.gurl}/issues/{standard.gtlbtkid}", - data=rqstdata, - headers=self.ghed, - timeout=standard.rqsttime, - ) - respcode, respresn = response.status_code, response.reason + tkto = standard.gpro.issues.get(id=standard.gtlbtkid) + tkto.state_event = "close" + tkto.save() + respcode, respresn = 200, "0" else: respcode, respresn = 0, "0" stoptime = time.time() timereqd = "%.2f" % (stoptime - strttime) return respcode, respresn, timereqd - except Exception as expt: - return False, expt, "0" + except (GitlabUpdateError, GitlabGetError, Exception) as expt: + return False, str(expt), "0" diff --git a/poetry.lock b/poetry.lock index 4826d28..1e45cba 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,9 +1,10 @@ -# This file is automatically @generated by Poetry 1.7.0 and should not be changed by hand. +# This file is automatically @generated by Poetry and should not be changed by hand. [[package]] name = "black" version = "24.2.0" description = "The uncompromising code formatter." +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -48,6 +49,7 @@ uvloop = ["uvloop (>=0.15.2)"] name = "cachetools" version = "5.3.2" description = "Extensible memoizing collections and decorators" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -59,6 +61,7 @@ files = [ name = "certifi" version = "2024.2.2" description = "Python package for providing Mozilla's CA Bundle." +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -70,6 +73,7 @@ files = [ name = "cfgv" version = "3.4.0" description = "Validate configuration and produce human readable error messages." +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -81,6 +85,7 @@ files = [ name = "chardet" version = "5.2.0" description = "Universal encoding detector for Python 3" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -92,6 +97,7 @@ files = [ name = "charset-normalizer" version = "3.3.2" description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +category = "main" optional = false python-versions = ">=3.7.0" files = [ @@ -191,6 +197,7 @@ files = [ name = "click" version = "8.1.7" description = "Composable command line interface toolkit" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -205,6 +212,7 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""} name = "colorama" version = "0.4.6" description = "Cross-platform colored terminal text." +category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" files = [ @@ -216,6 +224,7 @@ files = [ name = "coverage" version = "7.4.3" description = "Code coverage measurement for Python" +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -280,6 +289,7 @@ toml = ["tomli"] name = "distlib" version = "0.3.8" description = "Distribution utilities" +category = "dev" optional = false python-versions = "*" files = [ @@ -291,6 +301,7 @@ files = [ name = "filelock" version = "3.13.1" description = "A platform independent file lock." +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -307,6 +318,7 @@ typing = ["typing-extensions (>=4.8)"] name = "gitdb" version = "4.0.11" description = "Git Object Database" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -321,6 +333,7 @@ smmap = ">=3.0.1,<6" name = "gitpython" version = "3.1.42" description = "GitPython is a Python library used to interact with Git repositories" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -338,6 +351,7 @@ test = ["black", "coverage[toml]", "ddt (>=1.1.1,!=1.4.3)", "mock", "mypy", "pre name = "identify" version = "2.5.35" description = "File identification library for Python" +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -352,6 +366,7 @@ license = ["ukkonen"] name = "idna" version = "3.6" description = "Internationalized Domain Names in Applications (IDNA)" +category = "main" optional = false python-versions = ">=3.5" files = [ @@ -363,6 +378,7 @@ files = [ name = "iniconfig" version = "2.0.0" description = "brain-dead simple config-ini parsing" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -374,6 +390,7 @@ files = [ name = "multidict" version = "6.0.5" description = "multidict implementation" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -473,6 +490,7 @@ files = [ name = "mypy-extensions" version = "1.0.0" description = "Type system extensions for programs checked with the mypy type checker." +category = "dev" optional = false python-versions = ">=3.5" files = [ @@ -484,6 +502,7 @@ files = [ name = "nodeenv" version = "1.8.0" description = "Node.js virtual environment builder" +category = "dev" optional = false python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*" files = [ @@ -498,6 +517,7 @@ setuptools = "*" name = "packaging" version = "23.2" description = "Core utilities for Python packages" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -509,6 +529,7 @@ files = [ name = "pathspec" version = "0.12.1" description = "Utility library for gitignore style pattern matching of file paths." +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -520,6 +541,7 @@ files = [ name = "platformdirs" version = "4.2.0" description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -535,6 +557,7 @@ test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4.3)", "pytest- name = "pluggy" version = "1.4.0" description = "plugin and hook calling mechanisms for python" +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -550,6 +573,7 @@ testing = ["pytest", "pytest-benchmark"] name = "pre-commit" version = "3.6.2" description = "A framework for managing and maintaining multi-language pre-commit hooks." +category = "dev" optional = false python-versions = ">=3.9" files = [ @@ -568,6 +592,7 @@ virtualenv = ">=20.10.0" name = "pyproject-api" version = "1.6.1" description = "API to interact with the python pyproject.toml based projects" +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -586,6 +611,7 @@ testing = ["covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytes name = "pytest" version = "8.0.2" description = "pytest: simple powerful testing with Python" +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -606,6 +632,7 @@ testing = ["argcomplete", "attrs (>=19.2.0)", "hypothesis (>=3.56)", "mock", "no name = "pytest-cov" version = "4.1.0" description = "Pytest plugin for measuring coverage." +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -624,6 +651,7 @@ testing = ["fields", "hunter", "process-tests", "pytest-xdist", "six", "virtuale name = "pytest-recording" version = "0.13.1" description = "A pytest plugin that allows you recording of network interactions via VCR.py" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -639,10 +667,31 @@ vcrpy = ">=2.0.1" dev = ["pytest-recording[tests]"] tests = ["pytest-httpbin", "pytest-mock", "requests", "werkzeug (==3.0.1)"] +[[package]] +name = "python-gitlab" +version = "4.4.0" +description = "A python wrapper for the GitLab API" +category = "main" +optional = false +python-versions = ">=3.8.0" +files = [ + {file = "python-gitlab-4.4.0.tar.gz", hash = "sha256:1d117bf7b433ae8255e5d74e72c660978f50ee85eb62248c9fb52ef43c3e3814"}, + {file = "python_gitlab-4.4.0-py3-none-any.whl", hash = "sha256:cdad39d016f59664cdaad0f878f194c79cb4357630776caa9a92c1da25c8d986"}, +] + +[package.dependencies] +requests = ">=2.25.0" +requests-toolbelt = ">=0.10.1" + +[package.extras] +autocompletion = ["argcomplete (>=1.10.0,<3)"] +yaml = ["PyYaml (>=6.0.1)"] + [[package]] name = "pyyaml" version = "6.0.1" description = "YAML parser and emitter for Python" +category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -651,7 +700,6 @@ files = [ {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, - {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, @@ -659,16 +707,8 @@ files = [ {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, - {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, - {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, - {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, - {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a08c6f0fe150303c1c6b71ebcd7213c2858041a7e01975da3a99aed1e7a378ef"}, - {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, - {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, - {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, - {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, @@ -685,7 +725,6 @@ files = [ {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, - {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, @@ -693,7 +732,6 @@ files = [ {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, - {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, @@ -703,6 +741,7 @@ files = [ name = "requests" version = "2.31.0" description = "Python HTTP for Humans." +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -720,10 +759,26 @@ urllib3 = ">=1.21.1,<3" socks = ["PySocks (>=1.5.6,!=1.5.7)"] use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] +[[package]] +name = "requests-toolbelt" +version = "1.0.0" +description = "A utility belt for advanced users of python-requests" +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "requests-toolbelt-1.0.0.tar.gz", hash = "sha256:7681a0a3d047012b5bdc0ee37d7f8f07ebe76ab08caeccfc3921ce23c88d5bc6"}, + {file = "requests_toolbelt-1.0.0-py2.py3-none-any.whl", hash = "sha256:cccfdd665f0a24fcf4726e690f65639d272bb0637b9b92dfd91a5568ccf6bd06"}, +] + +[package.dependencies] +requests = ">=2.0.1,<3.0.0" + [[package]] name = "ruff" version = "0.2.2" description = "An extremely fast Python linter and code formatter, written in Rust." +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -750,6 +805,7 @@ files = [ name = "setuptools" version = "69.1.1" description = "Easily download, build, install, upgrade, and uninstall Python packages" +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -766,6 +822,7 @@ testing-integration = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "jar name = "smmap" version = "5.0.1" description = "A pure Python implementation of a sliding window memory map manager" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -777,6 +834,7 @@ files = [ name = "tox" version = "4.13.0" description = "tox is a generic virtualenv management and test command line tool" +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -803,6 +861,7 @@ testing = ["build[virtualenv] (>=1.0.3)", "covdefaults (>=2.3)", "detect-test-po name = "urllib3" version = "2.2.1" description = "HTTP library with thread-safe connection pooling, file post, and more." +category = "main" optional = false python-versions = ">=3.8" files = [ @@ -820,6 +879,7 @@ zstd = ["zstandard (>=0.18.0)"] name = "vcrpy" version = "5.1.0" description = "Automatically mock your HTTP interactions to simplify and speed up testing" +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -836,6 +896,7 @@ yarl = "*" name = "virtualenv" version = "20.25.1" description = "Virtual Python Environment builder" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -856,6 +917,7 @@ test = ["covdefaults (>=2.3)", "coverage (>=7.2.7)", "coverage-enable-subprocess name = "wrapt" version = "1.16.0" description = "Module for decorators, wrappers and monkey patching." +category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -935,6 +997,7 @@ files = [ name = "yarl" version = "1.9.4" description = "Yet another URL library" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -1037,4 +1100,4 @@ multidict = ">=4.0" [metadata] lock-version = "2.0" python-versions = "^3.11" -content-hash = "d1df2e147ae32500437c186d8b8b4a318a1ecf381c915515514c9274b7424cf7" +content-hash = "22ce560be1275e0359ab75420549ff94009a98296c0b8bb0d834d2793ac3747a" diff --git a/pyproject.toml b/pyproject.toml index 90a767e..58c6a8d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,6 +40,7 @@ python = "^3.11" requests = "^2.28.0" click = "^8.1.3" GitPython = "^3.1.0" +python-gitlab = "^4.4.0" [tool.poetry.group.dev.dependencies] pre-commit = "^3.4.0" @@ -52,10 +53,12 @@ vcrpy = "^5.1.0" pytest-recording = "^0.13.0" [tool.ruff] -select = ["E", "F", "W", "I", "S", "B", "UP"] line-length = 100 fix = true +[tool.ruff.lint] +select = ["E", "F", "W", "I", "S", "B", "UP"] + [tool.black] line-length = 100 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 new file mode 100644 index 0000000..356824f --- /dev/null +++ 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 @@ -0,0 +1,130 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.31.0 + method: GET + uri: https://pagure.io/api/0/protop2g-test-srce + response: + body: + string: "{\n \"access_groups\": {\n \"admin\": [], \n \"collaborator\": + [], \n \"commit\": [], \n \"ticket\": []\n }, \n \"access_users\": + {\n \"admin\": [], \n \"collaborator\": [], \n \"commit\": [], \n + \ \"owner\": [\n \"t0xic0der\"\n ], \n \"ticket\": []\n }, \n + \ \"close_status\": [], \n \"custom_keys\": [], \n \"date_created\": \"1697168063\", + \n \"date_modified\": \"1697168063\", \n \"description\": \"The source namespace + for the Pagure Exporter project to run tests against\", \n \"full_url\": + \"https://pagure.io/protop2g-test-srce\", \n \"fullname\": \"protop2g-test-srce\", + \n \"id\": 17042, \n \"milestones\": {}, \n \"name\": \"protop2g-test-srce\", + \n \"namespace\": null, \n \"parent\": null, \n \"priorities\": {}, \n + \ \"tags\": [], \n \"url_path\": \"protop2g-test-srce\", \n \"user\": {\n + \ \"full_url\": \"https://pagure.io/user/t0xic0der\", \n \"fullname\": + \"Akashdeep Dhar\", \n \"name\": \"t0xic0der\", \n \"url_path\": \"user/t0xic0der\"\n + \ }\n}\n" + headers: + Connection: + - Upgrade, Keep-Alive + 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 + '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 + Keep-Alive: + - timeout=5, max=100 + Referrer-Policy: + - same-origin + Server: + - Apache/2.4.37 (Red Hat Enterprise Linux) OpenSSL/1.1.1k mod_wsgi/4.6.4 Python/3.6 + Set-Cookie: '' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + Upgrade: + - h2,h2c + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - ALLOW-FROM https://pagure.io/ + X-Xss-Protection: + - 1; mode=block + status: + code: 200 + message: OK +- 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: '{"message":"401 Unauthorized"}' + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 859636be2a8f94bf-CCU + Connection: + - keep-alive + Content-Length: + - '30' + Content-Type: + - application/json + Date: + - Thu, 22 Feb 2024 09:31: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=%2BYbUf%2BqttsXwZSTmmhMzV6BQUPxhUTdOHWhguzRe7l9CsqDuLrrOr4ZVLjy2ZajD5NEkuapDoBQKSJ1vmx4i%2Fvxl65wdyFEqGH1lOf6b718CZyShUB%2F81oPkIl1JUBbKuf3KMqDq%2Bxs%3D"}],"group":"cf-nel","max_age":604800}' + Server: + - cloudflare + Set-Cookie: '' + cache-control: + - no-cache + content-security-policy: + - default-src 'none' + gitlab-lb: + - haproxy-main-33-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":"197a17051210f1a341629ee0271ca983","version":"1"}' + x-request-id: + - 197a17051210f1a341629ee0271ca983 + x-runtime: + - '0.019982' + status: + code: 401 + message: Unauthorized +version: 1 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 bbf7671..5071ad6 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-dz4vrJwg2KH0vELaT0thOXs92'; style-src - 'self' 'nonce-dz4vrJwg2KH0vELaT0thOXs92'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-1cPl45KPL1XljMh6HeTWqtX1f'; style-src + 'self' 'nonce-1cPl45KPL1XljMh6HeTWqtX1f'; 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: - - Mon, 11 Dec 2023 06:23:17 GMT + - Thu, 22 Feb 2024 09:31:25 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 4ec47c8..bdd6a8e 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-7451ZtmqIzXvQ7xzj7qtFRm6W'; style-src - 'self' 'nonce-7451ZtmqIzXvQ7xzj7qtFRm6W'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-yT5SVeHoBnIMuKGJTYFJbnvIP'; style-src + 'self' 'nonce-yT5SVeHoBnIMuKGJTYFJbnvIP'; 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: - - Mon, 11 Dec 2023 06:23:18 GMT + - Thu, 22 Feb 2024 09:31:26 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -71,8 +71,10 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-type: + - application/json User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: GET uri: https://gitlab.com/api/v4/projects/ZEROEXISTENT response: @@ -82,7 +84,7 @@ interactions: CF-Cache-Status: - MISS CF-RAY: - - 833ba35dbc5284e3-BOM + - 859637569bf594be-CCU Connection: - keep-alive Content-Length: @@ -90,11 +92,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:23:19 GMT + - Thu, 22 Feb 2024 09:31: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=bnZjN0t7KVZ6epjghahzq7uB%2F8HxTJkvZ2TO1WyWEU7y0QAXMPpANCnbsdltyw0Y9dwvTUsRzymVCWV2wT4%2F%2BueikVX45bkl0Q61B9Oczz5hM8lZ1NnHJYT0nns%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=H80VxgDn4kpKGhUHBDs3gCiuUS6E6IndHiUCGTsyvLjUMVe2S8qgRjYh2ueRiHdPtVVl9eXJalSCU%2F5sZ%2BSYWuGGcXroBxRFY7K3%2FM4s9LwwnnvFpYHe4Rj74oO9QhE9uk2LdkTsZqw%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -103,19 +105,9 @@ interactions: content-security-policy: - default-src 'none' gitlab-lb: - - haproxy-main-24-lb-gprd + - haproxy-main-39-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '15' - ratelimit-remaining: - - '1985' - ratelimit-reset: - - '1702275858' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:24:18 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -127,11 +119,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"77d755e15ec6302bb838ae7d985d7de8","version":"1"}' + - '{"correlation_id":"8d0db6fcfc55f80560df54fd9392fab8","version":"1"}' x-request-id: - - 77d755e15ec6302bb838ae7d985d7de8 + - 8d0db6fcfc55f80560df54fd9392fab8 x-runtime: - - '0.050146' + - '0.044481' 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 19b550a..62a5628 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-mlRi2dAjRFGCIu86K7IWmTHPS'; style-src - 'self' 'nonce-mlRi2dAjRFGCIu86K7IWmTHPS'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-s7CbAwwwoccdb2Ct7Dsln1xBO'; style-src + 'self' 'nonce-s7CbAwwwoccdb2Ct7Dsln1xBO'; 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: - - Mon, 11 Dec 2023 06:25:07 GMT + - Thu, 22 Feb 2024 09:33:40 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -71,21 +71,23 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-type: + - application/json User-Agent: - - python-requests/2.31.0 + - 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":"2023-12-11T05:36:06.620Z","namespace":{"id":13984834,"name":"Akashdeep - Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/eba3058f529195e3b87d3383ada41661?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/eba3058f529195e3b87d3383ada41661?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"},"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","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":5091,"description_html":"","updated_at":"2023-12-11T05:36:06.620Z","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":"REMOVED","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,"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 / 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","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}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 833ba6078e3231dc-BOM + - 85963a9addc594b9-CCU Connection: - keep-alive Content-Encoding: @@ -93,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:08 GMT + - Thu, 22 Feb 2024 09:33: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=dsxgGmGIxM%2B2QUAW3bsFfcIpkfYK6BwscURWTgQ7gx9aQAVhYgAaioT9oRr73623jSqoiyuETt%2BKNzc370aQbEPlPvprzP92aSgjRn4l6moMN3twons3%2Fvh6MQA%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=TFcD9%2BV8yMtZqvt3um0%2B8W0wAWYExxhOqVs4GYB4%2BipgfiSx6qMHGvWABNoHeUT%2Fid0%2BtRY4S1VQC2p6BYKkExoEFd9N1k5JJ9nhk7fdAwSMS8vbTDXxlIkHQduE5nZWol5B1QmNHDE%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -108,21 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"11ddcf618f788958b0110ad0ff6296ea" + - W/"cdc8c07e99aa75fceef79fcd4ffc6eab" gitlab-lb: - - haproxy-main-19-lb-gprd + - haproxy-main-15-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '35' - ratelimit-remaining: - - '1964' - ratelimit-reset: - - '1702275968' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:08 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -134,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"fd21aa5b67ca00b2253fd0b7dc8627d4","version":"1"}' + - '{"correlation_id":"c09becb645a08e728289a87805bf25f4","version":"1"}' x-request-id: - - fd21aa5b67ca00b2253fd0b7dc8627d4 + - c09becb645a08e728289a87805bf25f4 x-runtime: - - '0.205945' + - '0.210302' status: code: 200 message: OK @@ -308,14 +300,14 @@ interactions: Content-Length: - '10774' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-ERX08qCwvBs3gIuPA5wDTtoeY'; style-src - 'self' 'nonce-ERX08qCwvBs3gIuPA5wDTtoeY'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-B4NNsZ96XNzSRhCGUeK2Gw8ZE'; style-src + 'self' 'nonce-B4NNsZ96XNzSRhCGUeK2Gw8ZE'; 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: - - Mon, 11 Dec 2023 06:25:09 GMT + - Thu, 22 Feb 2024 09:33:42 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -502,14 +494,14 @@ interactions: Content-Length: - '10774' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-eAEZSjP7mjDYX6z2afwrnOiIL'; style-src - 'self' 'nonce-eAEZSjP7mjDYX6z2afwrnOiIL'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-1tJjPteZzt5pyscsLBghdQQJF'; style-src + 'self' 'nonce-1tJjPteZzt5pyscsLBghdQQJF'; 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: - - Mon, 11 Dec 2023 06:25:10 GMT + - Thu, 22 Feb 2024 09:33:43 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -531,7 +523,12 @@ interactions: code: 200 message: OK - request: - body: title=%5BSN%234%5D+This+is+the+title+of+the+fourth+test+issue&description=%0AThis+is+the+body+of+the+fourth+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F4%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2ATue+Nov+21+08%3A06%3A56+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Fnov-21-2023%2F08-06%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: '{"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)._\n"}' headers: Accept: - '*/*' @@ -540,40 +537,42 @@ interactions: Connection: - keep-alive Content-Length: - - '725' - Content-Type: - - application/x-www-form-urlencoded + - '591' + Content-type: + - application/json + Cookie: + - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467143,"iid":6101,"project_id":42823949,"title":"[SN#4] This + string: '{"id":142497593,"iid":13157,"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":"2023-12-11T06:25:11.738Z","updated_at":"2023-12-11T06:25:11.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/1b6289f6c729f1ba694aa2bc296a7277?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/6101","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/6101","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6101/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6101/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6101","relative":"#6101","full":"gridhead/protop2g-test#6101"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba61d8d5a1bde-BOM + - 85963aae7ad293c1-CCU Connection: - keep-alive Content-Length: - - '2152' + - '2192' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:12 GMT + - Thu, 22 Feb 2024 09:33: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=vfCkdJUIuwfA2Kv7HFgG8RwreP192vV3M1PvFmLi3ZsiEGRqY7qJn482Vz9FgrQoPpykvjvQ5ewjYXzUlfYmZRk6oTTcvfdINYhHOMri5kUwDSEzB1My6fOSTq8%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Kq2oF2IQ1Qfa8Y5Lissl1DM7To0g4YhuIpkbDoCw9j1wHTiFeuMRYaJy%2BKTJuTo6YWcppKSlWFKBfhH4ml2pLlXR3M8eEo2L1FQqQqWmn0L1G3rVd%2F9wNm7MiL6pSp%2Fcbv0Lx0g5cTk%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -582,21 +581,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"dfb5b96be733af550ef0b048163d0a85" + - W/"c1f2ba9008664932db00fa972f7dc30f" gitlab-lb: - - haproxy-main-59-lb-gprd + - haproxy-main-58-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '34' - ratelimit-remaining: - - '1965' - ratelimit-reset: - - '1702275971' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:11 GMT + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -608,16 +597,16 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"748653e3d128337f4c649d69ac571ce8","version":"1"}' + - '{"correlation_id":"027e9aaf2a121c3c3a9be972e88002bc","version":"1"}' x-request-id: - - 748653e3d128337f4c649d69ac571ce8 + - 027e9aaf2a121c3c3a9be972e88002bc x-runtime: - - '0.551807' + - '0.612520' status: code: 201 message: Created - request: - body: body=%0AThis+is+the+first+comment+under+the+fourth+test+issue%0A%0A_This+comment+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F4%23comment-885231%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+under%0A%5Bthis%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F4%29+issue+ticket+on+a+Pagure+repository%2C+%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+on%0A%5B%2A%2ATue+Nov+21+08%3A07%3A25+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Fnov-21-2023%2F08-07%29._%0A%0A_This+comment+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: null headers: Accept: - '*/*' @@ -625,83 +614,82 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '767' - Content-Type: - - application/x-www-form-urlencoded + Content-type: + - application/json + Cookie: + - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 User-Agent: - - python-requests/2.31.0 - method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/6101/notes + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13157 response: body: - string: '{"id":1687901714,"type":null,"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/1b6289f6c729f1ba694aa2bc296a7277?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2023-12-11T06:25:12.778Z","updated_at":"2023-12-11T06:25:12.778Z","system":false,"noteable_id":139467143,"noteable_type":"Issue","project_id":42823949,"resolvable":false,"confidential":false,"internal":false,"noteable_iid":6101,"commands_changes":{}}' + string: '{"id":142497593,"iid":13157,"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}' headers: CF-Cache-Status: - - DYNAMIC + - MISS CF-RAY: - - 833ba623bc88f4c6-BOM + - 85963ab4a9cb93bb-CCU Connection: - keep-alive - Content-Length: - - '1246' + Content-Encoding: + - gzip Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:13 GMT + - Thu, 22 Feb 2024 09:33: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=smcLj%2BwZw6tzAxqs4RwLkGl%2F0UD%2ByapVe%2BSh7xCa1o8iow9RgAYOZNmSBoEghnfWViQJLF2MVPSvow6R3DyiVaxfj7o0dA4ZJwHoBTkKZF8YGzIK2dDiHcXqjnc%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=t3XTgIy4iTs%2BGpiNp%2FqnaiZMeVrUoKu98%2BVZBlH%2FSfX1wHnYZBEj29lmWQ0POX1zZO8LdfAqRQOk9npJNXXpwDHeuVrlBYG3s2QDuQ6MSf3VWtRSxPGcttAtX7PKE0FbpOnhJncFCFk%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/"e11367754cf6e6459f6bc5b8d8b7804b" + - W/"c1f2ba9008664932db00fa972f7dc30f" gitlab-lb: - - haproxy-main-33-lb-gprd + - haproxy-main-18-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '34' - ratelimit-remaining: - - '1965' - ratelimit-reset: - - '1702275973' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:13 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: - max-age=31536000 vary: - - Origin + - Origin, Accept-Encoding x-content-type-options: - nosniff x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"e88d292cb3de5eed87237d083973eded","version":"1"}' + - '{"correlation_id":"a50aae8a2ac7794b9b08978214e6cea7","version":"1"}' x-request-id: - - e88d292cb3de5eed87237d083973eded + - a50aae8a2ac7794b9b08978214e6cea7 x-runtime: - - '0.818852' + - '0.195151' status: - code: 201 - message: Created + code: 200 + message: OK - request: - body: body=%0AThis+is+the+second+comment+under+the+fourth+test+issue%0A%0A_This+comment+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F4%23comment-885232%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+under%0A%5Bthis%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F4%29+issue+ticket+on+a+Pagure+repository%2C+%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+on%0A%5B%2A%2ATue+Nov+21+08%3A07%3A34+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Fnov-21-2023%2F08-07%29._%0A%0A_This+comment+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: '{"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)._\n"}' headers: Accept: - '*/*' @@ -710,38 +698,41 @@ interactions: Connection: - keep-alive Content-Length: - - '768' - Content-Type: - - application/x-www-form-urlencoded + - '611' + Content-type: + - application/json + Cookie: + - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/6101/notes + uri: https://gitlab.com/api/v4/projects/42823949/issues/13157/discussions response: body: - string: '{"id":1687901734,"type":null,"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) + string: '{"id":"9ca857c7d810324f68accb1d70f87641b2186b25","individual_note":false,"notes":[{"id":1784525781,"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: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/1b6289f6c729f1ba694aa2bc296a7277?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2023-12-11T06:25:13.997Z","updated_at":"2023-12-11T06:25:13.997Z","system":false,"noteable_id":139467143,"noteable_type":"Issue","project_id":42823949,"resolvable":false,"confidential":false,"internal":false,"noteable_iid":6101,"commands_changes":{}}' + 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":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba62b594c8555-BOM + - 85963ab83a7693c1-CCU Connection: - keep-alive Content-Length: - - '1247' + - '1429' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:14 GMT + - Thu, 22 Feb 2024 09:33: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=OPtpBzzm7xK5afUy3%2FavKDQA1SRl4fHdI1Cmi1Au8Ku7B19VH1UcYJmK6YZkFAcoF7zbt42ufGDpWWL8ivi5wMnL4ZMqcTeZQ%2BAVE8jYH1Gy6L%2FY3eb6hCpL%2Bp8%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=itn%2F9xVKE7qE6l9UiVRtZKTx3Z27TFHZIbwZAjS4cb83GayGI8tjyDOeFb4qx9%2FTcDAKPv49aQgORhDyew9u0PhXipGrKBe%2BdO6fmCbyrX6mUpyldNb9L49Lj2u4wjjUXJAZ%2BWRuGh8%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -750,21 +741,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"96442b4ad1fe0ae6d9f031911d61773d" + - W/"fe1dfb8e7e60e309c5ab62874e86497b" gitlab-lb: - - haproxy-main-24-lb-gprd + - haproxy-main-22-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '35' - ratelimit-remaining: - - '1965' - ratelimit-reset: - - '1702275974' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:14 GMT + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -776,16 +757,16 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"25a4de020432599f7b79dcacbef46445","version":"1"}' + - '{"correlation_id":"1b9e88c1698067cc4564b89b46e3680d","version":"1"}' x-request-id: - - 25a4de020432599f7b79dcacbef46445 + - 1b9e88c1698067cc4564b89b46e3680d x-runtime: - - '0.504967' + - '0.672392' status: code: 201 message: Created - request: - body: body=%0A%2A%2AMetadata+Update+from+%26t0xic0der%2A%2A%3A%0A-+Issue+status+updated+to%3A+Closed+%28was%3A+Open%29%0A%0A_This+comment+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F4%23comment-885233%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+under%0A%5Bthis%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F4%29+issue+ticket+on+a+Pagure+repository%2C+%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+on%0A%5B%2A%2ATue+Nov+21+08%3A08%3A01+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Fnov-21-2023%2F08-08%29._%0A%0A_This+comment+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: null headers: Accept: - '*/*' @@ -793,84 +774,82 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '818' - Content-Type: - - application/x-www-form-urlencoded + Content-type: + - application/json + Cookie: + - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 User-Agent: - - python-requests/2.31.0 - method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/6101/notes + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13157 response: body: - string: '{"id":1687901751,"type":null,"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/1b6289f6c729f1ba694aa2bc296a7277?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2023-12-11T06:25:15.011Z","updated_at":"2023-12-11T06:25:15.011Z","system":false,"noteable_id":139467143,"noteable_type":"Issue","project_id":42823949,"resolvable":false,"confidential":false,"internal":false,"noteable_iid":6101,"commands_changes":{}}' + string: '{"id":142497593,"iid":13157,"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}' headers: CF-Cache-Status: - - DYNAMIC + - MISS CF-RAY: - - 833ba6311ebb85b4-BOM + - 85963abeeb3894bc-CCU Connection: - keep-alive - Content-Length: - - '1281' + Content-Encoding: + - gzip Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:15 GMT + - Thu, 22 Feb 2024 09:33: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=J9FKch%2Bijzil1qhtHm5iTpvC3safPN%2Bi0gYAx0ktVQ3Q0kM9kJ%2BJwmJdDOtAVnXI%2F1%2BJ87D5aNDaB4vq9mm%2FGv%2BSmCteT905NI4ydzPraD3rmiuS5%2BS4urvcd6M%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=iL%2BKlSIpzAxzRgMebII7ey31pFLUHtwv9YzLQeT4f1qocJ1qrnFwV6SfytDfCMVnl43GcMwXhtMCCfHEJWzqgnw9BQq0OCERUH7QohwcFV1dzsxeXVDyS3e8Cll0X0Ggp6FfWPxDyVk%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/"10e6a12e8b5f169480a167f5b1addbcd" + - W/"e6ab3e8a3a4bf75a914b5fd15ec1094c" gitlab-lb: - - haproxy-main-54-lb-gprd + - haproxy-main-14-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '35' - ratelimit-remaining: - - '1964' - ratelimit-reset: - - '1702275975' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:15 GMT + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: - max-age=31536000 vary: - - Origin + - Origin, Accept-Encoding x-content-type-options: - nosniff x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"779bd9d7fc04d2f2f77a654414d0d96a","version":"1"}' + - '{"correlation_id":"38ea755512ed909c5fcecad9da7ed1b1","version":"1"}' x-request-id: - - 779bd9d7fc04d2f2f77a654414d0d96a + - 38ea755512ed909c5fcecad9da7ed1b1 x-runtime: - - '0.719860' + - '0.192858' status: - code: 201 - message: Created + code: 200 + message: OK - request: - body: title=%5BSN%233%5D+This+is+the+title+of+the+third+test+issue&description=%0AThis+is+the+body+of+the+third+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F3%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2ATue+Nov+21+08%3A03%3A57+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Fnov-21-2023%2F08-03%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: '{"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)._\n"}' headers: Accept: - '*/*' @@ -879,40 +858,41 @@ interactions: Connection: - keep-alive Content-Length: - - '723' - Content-Type: - - application/x-www-form-urlencoded + - '612' + Content-type: + - application/json + Cookie: + - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues + uri: https://gitlab.com/api/v4/projects/42823949/issues/13157/discussions response: body: - string: '{"id":139467145,"iid":6102,"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":"2023-12-11T06:25:16.006Z","updated_at":"2023-12-11T06:25:16.006Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6102","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/6102","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6102/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6102/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6102","relative":"#6102","full":"gridhead/protop2g-test#6102"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + string: '{"id":"ed484097c9b95f5f751466b4abcc364f5c8c59a1","individual_note":false,"notes":[{"id":1784525854,"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":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba6383e59f4b0-BOM + - 85963ac3584b94b0-CCU Connection: - keep-alive Content-Length: - - '2150' + - '1430' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:16 GMT + - Thu, 22 Feb 2024 09:33: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=4FQ5lMdWgdIH1j2jhPSk0UhK2f2huwfGFg7wtnkrxp%2FPNaEaP%2FbHnjqwMyV4PE0MydrtaT59dcHxLdHTdSVYo2v9UusBuHgEvnSQDxQODzX7IQ2L55FpPjXN2oI%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=w2xrkv0XSvqwH%2F4V5EBGpPyrGD4lHj%2BSu5dGia1%2BqreDomNgPvkVD3Jf4XlK4HaJco9v%2FMcFZwY%2FjqVl8CZxkfKgTTyzKJPNJyFl1aPz0zob1MBxC44gt5sYLn77DvVK%2FJhcS76xQto%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -921,21 +901,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"c30d03271115cd42394f77dce08e9f53" + - W/"2c396fdc4ab0f2ef4db9c6852b8a9b05" gitlab-lb: - - haproxy-main-43-lb-gprd + - haproxy-main-07-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '36' - ratelimit-remaining: - - '1964' - ratelimit-reset: - - '1702275976' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:16 GMT + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -947,16 +917,16 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"cf78e86b896d1676583f895ed5ea3c9b","version":"1"}' + - '{"correlation_id":"af3928ab87fd888891a106ddd986811a","version":"1"}' x-request-id: - - cf78e86b896d1676583f895ed5ea3c9b + - af3928ab87fd888891a106ddd986811a x-runtime: - - '0.572731' + - '0.802789' status: code: 201 message: Created - request: - body: body=%0AThis+is+the+first+comment+under+the+third+test+issue%0A%0A_This+comment+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F3%23comment-885229%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+under%0A%5Bthis%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F3%29+issue+ticket+on+a+Pagure+repository%2C+%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+on%0A%5B%2A%2ATue+Nov+21+08%3A04%3A40+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Fnov-21-2023%2F08-04%29._%0A%0A_This+comment+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: null headers: Accept: - '*/*' @@ -964,83 +934,82 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '766' - Content-Type: - - application/x-www-form-urlencoded + Content-type: + - application/json + Cookie: + - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 User-Agent: - - python-requests/2.31.0 - method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/6102/notes + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13157 response: body: - string: '{"id":1687901773,"type":null,"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/1b6289f6c729f1ba694aa2bc296a7277?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2023-12-11T06:25:17.014Z","updated_at":"2023-12-11T06:25:17.014Z","system":false,"noteable_id":139467145,"noteable_type":"Issue","project_id":42823949,"resolvable":false,"confidential":false,"internal":false,"noteable_iid":6102,"commands_changes":{}}' + string: '{"id":142497593,"iid":13157,"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}' headers: CF-Cache-Status: - - DYNAMIC + - MISS CF-RAY: - - 833ba63e9c96f415-BOM + - 85963acaadb593bb-CCU Connection: - keep-alive - Content-Length: - - '1245' + Content-Encoding: + - gzip Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:17 GMT + - Thu, 22 Feb 2024 09:33: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=ls3c6BasilIJeD0FqfV7eeuvkAR%2BAM6dczdkku2dhXisUeZo6vB9W2p5mwlnIYFyT7ALkUOcWAKr%2BIPdMQGNKPrupClZTLF6YAI%2FwZPCBFYf7MSvoSnYTKq0xtQ%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=AdfSZ5onsUYtT%2FNCE9ibbGtPhY8NNw6XWNl%2FEPvzliPCjHHbnWF5dLeHpvFDDt04iYLbJOXu56Hiplj0s8Kyqiah030wAo0LW%2BZn8BSVQ%2BkwPrlyULrG6CeR9FdYE66tk4Ng2ApAGvI%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/"749c3a58f7f8d1ac3949a138521c71d5" + - W/"72d1858236924a1f700507d84b858c0b" gitlab-lb: - - haproxy-main-19-lb-gprd + - haproxy-main-20-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '36' - ratelimit-remaining: - - '1964' - ratelimit-reset: - - '1702275977' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:17 GMT + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: - max-age=31536000 vary: - - Origin + - Origin, Accept-Encoding x-content-type-options: - nosniff x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"90ef83ef97ba7f4b43933999c32c77be","version":"1"}' + - '{"correlation_id":"63ba8ad6d9948f5cb91bf5329aea2877","version":"1"}' x-request-id: - - 90ef83ef97ba7f4b43933999c32c77be + - 63ba8ad6d9948f5cb91bf5329aea2877 x-runtime: - - '0.407863' + - '0.212735' status: - code: 201 - message: Created + code: 200 + message: OK - request: - body: body=%0AThis+is+the+second+comment+under+the+third+test+issue%0A%0A_This+comment+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F3%23comment-885230%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+under%0A%5Bthis%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F3%29+issue+ticket+on+a+Pagure+repository%2C+%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+on%0A%5B%2A%2ATue+Nov+21+08%3A04%3A52+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Fnov-21-2023%2F08-04%29._%0A%0A_This+comment+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: '{"body": "\n**Metadata Update from &t0xic0der**:\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)._\n"}' headers: Accept: - '*/*' @@ -1049,38 +1018,41 @@ interactions: Connection: - keep-alive Content-Length: - - '767' - Content-Type: - - application/x-www-form-urlencoded + - '641' + Content-type: + - application/json + Cookie: + - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/6102/notes + uri: https://gitlab.com/api/v4/projects/42823949/issues/13157/discussions response: body: - string: '{"id":1687901783,"type":null,"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) + string: '{"id":"a267602e567f7b118a2bb67b80ef7e2ad99ba332","individual_note":false,"notes":[{"id":1784525892,"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: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/1b6289f6c729f1ba694aa2bc296a7277?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2023-12-11T06:25:17.881Z","updated_at":"2023-12-11T06:25:17.881Z","system":false,"noteable_id":139467145,"noteable_type":"Issue","project_id":42823949,"resolvable":false,"confidential":false,"internal":false,"noteable_iid":6102,"commands_changes":{}}' + 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":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba6439f92f390-BOM + - 85963acede5c93c5-CCU Connection: - keep-alive Content-Length: - - '1246' + - '1464' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:18 GMT + - Thu, 22 Feb 2024 09:33: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=%2FzJD4X7n2CxTSlajsj3Bg2l1OwXgWgEybmPxFi%2F88IeJlJ3%2BFN1gv6jf0mvH0NOqK8%2FZpTVLbdm0vEGGdJtsjT1BaxaQH%2Br4gvXqgTg6xbzs2WA0lYHx1gowjLQ%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=UPAqiYazazXXU4U06jbVASLV4sYPrDCK8QPhuhMtDGTkYlmRTqIePwuNGxSK2qqbdWkklKjDP6fkmWel7tuKu8oFrS4K8gicWXhDE3plnIqOpmWY99z7XCenwhr9pCooEc67Vzy1Cn4%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1089,21 +1061,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"37d0856365020aa46da97a71ef696fc1" + - W/"4a393d1a11e9787543832577185c440d" gitlab-lb: - - haproxy-main-20-lb-gprd + - haproxy-main-38-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '37' - ratelimit-remaining: - - '1963' - ratelimit-reset: - - '1702275978' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:18 GMT + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -1115,16 +1077,21 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"7a8804c9cd05dc351995d9c50456b835","version":"1"}' + - '{"correlation_id":"82ea9b3ff72b4a8fad8f67100298df11","version":"1"}' x-request-id: - - 7a8804c9cd05dc351995d9c50456b835 + - 82ea9b3ff72b4a8fad8f67100298df11 x-runtime: - - '0.578037' + - '0.454727' status: code: 201 message: Created - request: - body: title=%5BSN%232%5D+This+is+the+title+of+the+second+test+issue&description=%0AThis+is+the+body+of+the+second+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2AFri+Oct+13+04%3A01%3A16+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-01%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: '{"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)._\n"}' headers: Accept: - '*/*' @@ -1133,40 +1100,42 @@ interactions: Connection: - keep-alive Content-Length: - - '725' - Content-Type: - - application/x-www-form-urlencoded + - '589' + Content-type: + - application/json + Cookie: + - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467146,"iid":6103,"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) + string: '{"id":142497600,"iid":13158,"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[**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":"2023-12-11T06:25:18.742Z","updated_at":"2023-12-11T06:25:18.742Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6103","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/6103","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6103/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6103/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6103","relative":"#6103","full":"gridhead/protop2g-test#6103"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + 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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba6495cb83226-BOM + - 85963ad3f87294b0-CCU Connection: - keep-alive Content-Length: - - '2152' + - '2190' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:19 GMT + - Thu, 22 Feb 2024 09:33: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=1Fw7kQbouogiXlfEJKGB%2FPG8oCNjwa0i%2FzbbZ08Kv9zwag%2BpdlSV%2BIfu53%2BPVSP66gBLg38rK%2BU29eTEjl1aUeQdMyKQCkjUFJB%2BcIZeTuQwbp%2BQHhI2WsBy9Rg%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Dh%2FEbCmALfG0bWqTMLQA8NP39gyxQRfUxsCGN8hWnMGASfElUPB3onB1LvZtgMM05pFc5Rc%2BDGXn9iiC%2B4M%2Fqkd1inuyTSMSJYK84e55myr1HDM%2BvGS68qWGD1N2XrYSeF%2FIwRWjqSA%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1175,21 +1144,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"208f8b3780d916b3732172a1b15a3e3d" + - W/"b418d45a5855445926a97e22cb4d7d86" gitlab-lb: - - haproxy-main-49-lb-gprd + - haproxy-main-11-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '37' - ratelimit-remaining: - - '1963' - ratelimit-reset: - - '1702275978' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:18 GMT + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -1201,16 +1160,16 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"010ceb02c344a6b9bbb45f340368132a","version":"1"}' + - '{"correlation_id":"3ebca48085fb6b34b7cd3012cbca94b5","version":"1"}' x-request-id: - - 010ceb02c344a6b9bbb45f340368132a + - 3ebca48085fb6b34b7cd3012cbca94b5 x-runtime: - - '0.539222' + - '0.585485' status: code: 201 message: Created - request: - body: body=%0A%2A%2AMetadata+Update+from+%26t0xic0der%2A%2A%3A%0A-+Issue+tagged+with%3A+cccc%2C+dddd%0A%0A_This+comment+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%23comment-878472%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+under%0A%5Bthis%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%29+issue+ticket+on+a+Pagure+repository%2C+%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+on%0A%5B%2A%2AFri+Oct+13+04%3A03%3A30+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-03%29._%0A%0A_This+comment+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: null headers: Accept: - '*/*' @@ -1218,83 +1177,82 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '800' - Content-Type: - - application/x-www-form-urlencoded + Content-type: + - application/json + Cookie: + - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 User-Agent: - - python-requests/2.31.0 - method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/6103/notes + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13158 response: body: - string: '{"id":1687901797,"type":null,"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/1b6289f6c729f1ba694aa2bc296a7277?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2023-12-11T06:25:19.653Z","updated_at":"2023-12-11T06:25:19.653Z","system":false,"noteable_id":139467146,"noteable_type":"Issue","project_id":42823949,"resolvable":false,"confidential":false,"internal":false,"noteable_iid":6103,"commands_changes":{}}' + string: '{"id":142497600,"iid":13158,"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}' headers: CF-Cache-Status: - - DYNAMIC + - MISS CF-RAY: - - 833ba64f2e216ec8-BOM + - 85963ada0efd94ce-CCU Connection: - keep-alive - Content-Length: - - '1267' + Content-Encoding: + - gzip Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:20 GMT + - Thu, 22 Feb 2024 09:33: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=0km4LNsPjseZ9%2FMzqRpwhrrbnWoGtOSx3n6%2BGDC3qD%2BI%2FnE46FIgBfHiHEKAEYW%2BiJB9K%2BLdgGPrvzrfrvpDWRsm6DY4OR%2B5OXW8RNLQZ%2F87G%2FStDGT9B62en4M%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=mop06CGxpeTLu5CrFewKaEvcTcVfRGwPKvgh6HQPUsJSVncGEcAudki%2BVOp3XAAhiIvwp0gGRJYJxXaUHLevzhvjl6hhCa%2BTV2q%2F9B2lw31qFd006xFx6Z%2BPMHHAeXNyTtFWWsbNjZg%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/"23faf8527e46acae3faf5225033b1adc" + - W/"b418d45a5855445926a97e22cb4d7d86" gitlab-lb: - - haproxy-main-37-lb-gprd + - haproxy-main-39-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '37' - ratelimit-remaining: - - '1962' - ratelimit-reset: - - '1702275980' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:20 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: - max-age=31536000 vary: - - Origin + - Origin, Accept-Encoding x-content-type-options: - nosniff x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"e00646d18481abc2927847a19e1eb1fd","version":"1"}' + - '{"correlation_id":"546dfd2e0b2a55df4bbbadf8136f0760","version":"1"}' x-request-id: - - e00646d18481abc2927847a19e1eb1fd + - 546dfd2e0b2a55df4bbbadf8136f0760 x-runtime: - - '0.692083' + - '0.172908' status: - code: 201 - message: Created + code: 200 + message: OK - request: - body: body=%0AThe+is+the+first+comment+under+the+second+test+issue%0A%0A_This+comment+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%23comment-878475%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+under%0A%5Bthis%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%29+issue+ticket+on+a+Pagure+repository%2C+%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+on%0A%5B%2A%2AFri+Oct+13+04%3A06%3A04+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-06%29._%0A%0A_This+comment+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: '{"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)._\n"}' headers: Accept: - '*/*' @@ -1303,38 +1261,41 @@ interactions: Connection: - keep-alive Content-Length: - - '766' - Content-Type: - - application/x-www-form-urlencoded + - '610' + Content-type: + - application/json + Cookie: + - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/6103/notes + uri: https://gitlab.com/api/v4/projects/42823949/issues/13158/discussions response: body: - string: '{"id":1687901807,"type":null,"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) + string: '{"id":"b5c9c8a70de6774c05859af6dff27992f95e249c","individual_note":false,"notes":[{"id":1784525993,"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[**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/1b6289f6c729f1ba694aa2bc296a7277?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2023-12-11T06:25:20.804Z","updated_at":"2023-12-11T06:25:20.804Z","system":false,"noteable_id":139467146,"noteable_type":"Issue","project_id":42823949,"resolvable":false,"confidential":false,"internal":false,"noteable_iid":6103,"commands_changes":{}}' + 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":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba6563b8af4c6-BOM + - 85963add59a494ce-CCU Connection: - keep-alive Content-Length: - - '1245' + - '1428' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:21 GMT + - Thu, 22 Feb 2024 09:33: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=Uozc%2Fg4N0e8Afp50%2BuWvItmCbd%2Fs4DOaMZcRJRAWdqsmDISQfZj%2Bm4yr2cKPDT5GJaPgtr%2FCazUpCmeNeEv0c9R5WLDtkQQXIAeEXeOcYF6SJN35%2F9mWoSjNcsE%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Krbuo3hID5vcEd7OBt4Gve0YwNwcHQGpe454WTYUbQM1AUVOAEhebkdBmbZ6teo2%2FqUG3By07X%2FBBAZrwAK7gLo4pbOAKDZvWY4Pjd2546YmW7v0QV78kdHguqb2hY%2BXcJoeg4Vg4iY%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1343,21 +1304,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"39ec96263b07edd4f0c4e9c705dad3ca" + - W/"14df41d3ce95edaf8bde606265c0ad8e" gitlab-lb: - - haproxy-main-56-lb-gprd + - haproxy-main-58-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '38' - ratelimit-remaining: - - '1962' - ratelimit-reset: - - '1702275981' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:21 GMT + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -1369,16 +1320,16 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"c574720451ae3aee32201d4b6f63e84b","version":"1"}' + - '{"correlation_id":"1b9d24e58d8ba5c927182361536c7498","version":"1"}' x-request-id: - - c574720451ae3aee32201d4b6f63e84b + - 1b9d24e58d8ba5c927182361536c7498 x-runtime: - - '0.729033' + - '0.807079' status: code: 201 message: Created - request: - body: body=%0AThe+is+the+second+comment+under+the+second+test+issue%0A%0A_This+comment+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%23comment-878476%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+under%0A%5Bthis%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%29+issue+ticket+on+a+Pagure+repository%2C+%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+on%0A%5B%2A%2AFri+Oct+13+04%3A06%3A16+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-06%29._%0A%0A_This+comment+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: null headers: Accept: - '*/*' @@ -1386,83 +1337,82 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '767' - Content-Type: - - application/x-www-form-urlencoded + Content-type: + - application/json + Cookie: + - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 User-Agent: - - python-requests/2.31.0 - method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/6103/notes + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13158 response: body: - string: '{"id":1687901820,"type":null,"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/1b6289f6c729f1ba694aa2bc296a7277?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2023-12-11T06:25:21.941Z","updated_at":"2023-12-11T06:25:21.941Z","system":false,"noteable_id":139467146,"noteable_type":"Issue","project_id":42823949,"resolvable":false,"confidential":false,"internal":false,"noteable_iid":6103,"commands_changes":{}}' + string: '{"id":142497600,"iid":13158,"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}' headers: CF-Cache-Status: - - DYNAMIC + - MISS CF-RAY: - - 833ba65d3d082e59-BOM + - 85963ae4af5194c4-CCU Connection: - keep-alive - Content-Length: - - '1246' + Content-Encoding: + - gzip Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:22 GMT + - Thu, 22 Feb 2024 09:33: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=Hzl%2B3w4dev04ps6hgSY3EQEymVU3ENnBk0EckwAJSjSJL7hBPCZKX5A0ZvNWp68nHfsDS79LWG7MoUX0qW8j1CZCdanPnZjQyFTy35SWyo46y6%2B0NH3YiUwhsYU%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=XqzYYQjg1fdv7RyvxbbhA5JKrkzAg81Aoymnvo6cOsWJxG%2BBt2VQxGba8ySPkuE%2BT8WT6JFoBN49rh1GICakNKy4ahKGAnOMgjJWoo3S2h9cHksHtesI7LVCOkGENuoGgDA%2BwFqHDFU%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/"b0b1b92ac6e769938890105e9710a9f5" + - W/"12872323f5c7a70ea8e4706cf3996604" gitlab-lb: - - haproxy-main-20-lb-gprd + - haproxy-main-28-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '38' - ratelimit-remaining: - - '1961' - ratelimit-reset: - - '1702275982' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:22 GMT + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: - max-age=31536000 vary: - - Origin + - Origin, Accept-Encoding x-content-type-options: - nosniff x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"ce4bcac30af55f899eae63f29434893f","version":"1"}' + - '{"correlation_id":"85d414ecd44a8441b23d9a1e890635bd","version":"1"}' x-request-id: - - ce4bcac30af55f899eae63f29434893f + - 85d414ecd44a8441b23d9a1e890635bd x-runtime: - - '0.416219' + - '0.167205' status: - code: 201 - message: Created + code: 200 + message: OK - request: - body: body=%0A%2A%2AMetadata+Update+from+%26t0xic0der%2A%2A%3A%0A-+Issue+status+updated+to%3A+Closed+%28was%3A+Open%29%0A%0A_This+comment+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%23comment-878477%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+under%0A%5Bthis%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%29+issue+ticket+on+a+Pagure+repository%2C+%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+on%0A%5B%2A%2AFri+Oct+13+04%3A07%3A12+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-07%29._%0A%0A_This+comment+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: '{"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)._\n"}' headers: Accept: - '*/*' @@ -1471,39 +1421,41 @@ interactions: Connection: - keep-alive Content-Length: - - '818' - Content-Type: - - application/x-www-form-urlencoded + - '611' + Content-type: + - application/json + Cookie: + - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/6103/notes + uri: https://gitlab.com/api/v4/projects/42823949/issues/13158/discussions response: body: - string: '{"id":1687901831,"type":null,"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) + string: '{"id":"bfb4298193215af35796c3a5879147e04afab2bf","individual_note":false,"notes":[{"id":1784526040,"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[**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/1b6289f6c729f1ba694aa2bc296a7277?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2023-12-11T06:25:22.784Z","updated_at":"2023-12-11T06:25:22.784Z","system":false,"noteable_id":139467146,"noteable_type":"Issue","project_id":42823949,"resolvable":false,"confidential":false,"internal":false,"noteable_iid":6103,"commands_changes":{}}' + 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":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba6626db6f45a-BOM + - 85963ae7e90794d0-CCU Connection: - keep-alive Content-Length: - - '1281' + - '1429' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:23 GMT + - Thu, 22 Feb 2024 09:33: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=v6IJMJLK0ydyS91TCBgs5N%2Bx12sadq0CrQkYF2VJ156AkfuU%2BPTC6wqwa30PMjv13Z6Y%2FoGYZb6R75KcLkoGObZo1gwtsjyNQzAMtWTvnqW3ef4nK2eSBYKB%2Fnw%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=BMQwcgnp3t4oUmqdxqweH82vpJbTlgUOSBDPsQGz6Dw3hKR93hyfr33qMuy7IE6B%2F27t7Ud7ukBaeQTtjF%2BWkA%2BWBEcY1Y2WhwIDFSBw2%2FtFLFO7e4JMtdVAEndeoSsq6oxjOLXPC04%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1512,21 +1464,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"ed0b3927c70bbd13faa2548d1e633696" + - W/"362f60deecb3eb9f109bce4241c8b03a" gitlab-lb: - - haproxy-main-01-lb-gprd + - haproxy-main-07-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '40' - ratelimit-remaining: - - '1960' - ratelimit-reset: - - '1702275982' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:22 GMT + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -1538,16 +1480,21 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"1be8344910f0fbe46a1893d59775a025","version":"1"}' + - '{"correlation_id":"bafc391f91220272801e39022b9c0df3","version":"1"}' x-request-id: - - 1be8344910f0fbe46a1893d59775a025 + - bafc391f91220272801e39022b9c0df3 x-runtime: - - '0.482926' + - '0.426835' status: code: 201 message: Created - request: - body: title=%5BSN%231%5D+This+is+the+title+of+the+first+test+issue&description=%0AThis+is+the+body+of+the+first+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2AFri+Oct+13+03%3A57%3A42+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F03-57%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: '{"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)._\n"}' headers: Accept: - '*/*' @@ -1556,40 +1503,42 @@ interactions: Connection: - keep-alive Content-Length: - - '723' - Content-Type: - - application/x-www-form-urlencoded + - '591' + Content-type: + - application/json + Cookie: + - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467149,"iid":6104,"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) + string: '{"id":142497601,"iid":13159,"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 - 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":"2023-12-11T06:25:23.798Z","updated_at":"2023-12-11T06:25:23.798Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6104","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/6104","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6104/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6104/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6104","relative":"#6104","full":"gridhead/protop2g-test#6104"},"severity":"UNKNOWN","subscribed":true,"moved_to_id":null,"service_desk_reply_to":null}' + 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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba66829d5f425-BOM + - 85963aecdce694bc-CCU Connection: - keep-alive Content-Length: - - '2150' + - '2192' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:24 GMT + - Thu, 22 Feb 2024 09:33: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=dLVw%2B37PImJodS9jaWLPN4%2BNouv50%2BQ3DtVHc%2FPKLoBXKTU4z0Bc7%2FEScRuxTXmHF7VY6RorkNCMjjkN3dt5C4%2FJn5l4NrOw1qZJD23UowT6t%2B5ZpN1U%2BYID%2Bi0%3D"}],"group":"cf-nel","max_age":604800}' + - '{"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}' Server: - cloudflare Set-Cookie: '' @@ -1598,21 +1547,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"d2913da36d89671151ae81b64ec149df" + - W/"63b4694f0d68de921fb4abb46999250f" gitlab-lb: - - haproxy-main-56-lb-gprd + - haproxy-main-09-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '40' - ratelimit-remaining: - - '1959' - ratelimit-reset: - - '1702275984' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:24 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -1624,16 +1563,16 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"15fb607f0a18e7b8b60c0b996d29ab96","version":"1"}' + - '{"correlation_id":"24ec3de9e6cfcc3e7c3cde40f7fca434","version":"1"}' x-request-id: - - 15fb607f0a18e7b8b60c0b996d29ab96 + - 24ec3de9e6cfcc3e7c3cde40f7fca434 x-runtime: - - '0.836761' + - '1.159478' status: code: 201 message: Created - request: - body: body=%0A%2A%2AMetadata+Update+from+%26t0xic0der%2A%2A%3A%0A-+Issue+tagged+with%3A+aaaa%2C+bbbb%0A%0A_This+comment+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%23comment-878471%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+under%0A%5Bthis%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%29+issue+ticket+on+a+Pagure+repository%2C+%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+on%0A%5B%2A%2AFri+Oct+13+04%3A01%3A39+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-01%29._%0A%0A_This+comment+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: null headers: Accept: - '*/*' @@ -1641,83 +1580,82 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '800' - Content-Type: - - application/x-www-form-urlencoded + Content-type: + - application/json + Cookie: + - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 User-Agent: - - python-requests/2.31.0 - method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/6104/notes + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13159 response: body: - string: '{"id":1687901853,"type":null,"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/1b6289f6c729f1ba694aa2bc296a7277?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2023-12-11T06:25:24.906Z","updated_at":"2023-12-11T06:25:24.906Z","system":false,"noteable_id":139467149,"noteable_type":"Issue","project_id":42823949,"resolvable":false,"confidential":false,"internal":false,"noteable_iid":6104,"commands_changes":{}}' + string: '{"id":142497601,"iid":13159,"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}' headers: CF-Cache-Status: - - DYNAMIC + - MISS CF-RAY: - - 833ba66fc9edf395-BOM + - 85963af6bace93c8-CCU Connection: - keep-alive - Content-Length: - - '1267' + Content-Encoding: + - gzip Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:25 GMT + - Thu, 22 Feb 2024 09:33: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=UkitzXOPwfb9GFEg3aknU1uLGb0gaHGtT8xifrnhxc1vrb%2FXBi7tn1u68kmnFqKFZEHsi39KveoBauugL4hl1%2FaN%2Fx7jPptHXhilmuyICXuCrdPm7qLsCtJoRF8%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=FDya%2BOPWClSkkC1EqWLHtXovUsUDvkUR5bO4wOl7COJRI%2Fg1vy%2FQc7sbnvyTJ9rDqk6j2eCfmqwKoszFdxEJrkF%2BrbGWhfynxI8ZUnapH7ULcQ9UzZHXoyhe3y79ejYtbdQOqhE7Jn0%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/"8f902679e0f18a0fa527cc05f415f2e4" + - W/"63b4694f0d68de921fb4abb46999250f" gitlab-lb: - - haproxy-main-56-lb-gprd + - haproxy-main-46-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '41' - ratelimit-remaining: - - '1959' - ratelimit-reset: - - '1702275985' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:25 GMT + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: - max-age=31536000 vary: - - Origin + - Origin, Accept-Encoding x-content-type-options: - nosniff x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"b713c48d616beb011655708d50c15497","version":"1"}' + - '{"correlation_id":"76ca95f921246d97829f49bfca1ab55c","version":"1"}' x-request-id: - - b713c48d616beb011655708d50c15497 + - 76ca95f921246d97829f49bfca1ab55c x-runtime: - - '0.437369' + - '0.161446' status: - code: 201 - message: Created + code: 200 + message: OK - request: - body: body=%0AThis+is+the+first+comment+under+the+first+test+issue%0A%0A_This+comment+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%23comment-878473%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+under%0A%5Bthis%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%29+issue+ticket+on+a+Pagure+repository%2C+%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+on%0A%5B%2A%2AFri+Oct+13+04%3A04%3A40+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-04%29._%0A%0A_This+comment+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: '{"body": "\n**Metadata Update from &t0xic0der**:\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)._\n"}' headers: Accept: - '*/*' @@ -1726,38 +1664,41 @@ interactions: Connection: - keep-alive Content-Length: - - '766' - Content-Type: - - application/x-www-form-urlencoded + - '627' + Content-type: + - application/json + Cookie: + - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/6104/notes + uri: https://gitlab.com/api/v4/projects/42823949/issues/13159/discussions response: body: - string: '{"id":1687901864,"type":null,"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) + string: '{"id":"e23c002bdcc237590290105fcb2f446646438df7","individual_note":false,"notes":[{"id":1784526129,"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: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/1b6289f6c729f1ba694aa2bc296a7277?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2023-12-11T06:25:25.796Z","updated_at":"2023-12-11T06:25:25.796Z","system":false,"noteable_id":139467149,"noteable_type":"Issue","project_id":42823949,"resolvable":false,"confidential":false,"internal":false,"noteable_iid":6104,"commands_changes":{}}' + 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":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba674e8d92dfc-BOM + - 85963af9f87994bf-CCU Connection: - keep-alive Content-Length: - - '1245' + - '1450' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:26 GMT + - Thu, 22 Feb 2024 09:33: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=hXD%2BGnXtbcj4DGaQ8e2U7461sG1pCxxPgv5aLPpSAkLlILM%2BV5cMVftuWERvOPRnx%2FpIvwqXZY0S8MRDIjgjv7whk39AzFKUOMQfcFfNkCYJbsVmmkhlqh2gdGg%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=%2BVJnsq%2B0QVLW6zDFEl%2BOItQl3w11a2%2FEfT2COGgQV%2BXX0rn71SrQr4mYjCZVa6lKkn9zYKIV1pT%2BszoSYoiWOKhzjqUfmyLzZQ8rmQPyqw3UD9Ao2jnSzmemW0sqpbT9akhZQLjCqAE%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1766,21 +1707,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"37158ec88ea107da12d097cbc51ad69e" + - W/"da375205c31775b935e8821df357d981" gitlab-lb: - - haproxy-main-05-lb-gprd + - haproxy-main-01-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '41' - ratelimit-remaining: - - '1959' - ratelimit-reset: - - '1702275986' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:26 GMT + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -1792,16 +1723,16 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"59f3debd4ccc765deb7718c42e5d16f1","version":"1"}' + - '{"correlation_id":"df8dfd7c12aec3c13a059096231cf927","version":"1"}' x-request-id: - - 59f3debd4ccc765deb7718c42e5d16f1 + - df8dfd7c12aec3c13a059096231cf927 x-runtime: - - '0.965239' + - '0.369093' status: code: 201 message: Created - request: - body: body=%0AThis+is+the+second+comment+under+the+first+test+issue%0A%0A_This+comment+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%23comment-878474%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+under%0A%5Bthis%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%29+issue+ticket+on+a+Pagure+repository%2C+%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+on%0A%5B%2A%2AFri+Oct+13+04%3A05%3A24+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-05%29._%0A%0A_This+comment+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: null headers: Accept: - '*/*' @@ -1809,39 +1740,1008 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '767' - Content-Type: - - application/x-www-form-urlencoded + Content-type: + - application/json + Cookie: + - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13159 + response: + body: + string: '{"id":142497601,"iid":13159,"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}' + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 85963afeafab94be-CCU + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Thu, 22 Feb 2024 09:33: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=U5QvtUO01XzUJL5OopOxWXiE42WHbKV%2FUG21prR%2BsV8fI985M0701QtIJXYC0y32P7ZXAkK0221HN8KzDpPmkgbncHshm7SfcCa5ei9V0D5u%2FQ%2BYl70PMghC6i2ggHWd2o2z0cNOLjw%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/"67f1c20783f416ece4ddb11a5e795620" + gitlab-lb: + - haproxy-main-47-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":"b2a1334c408bab18b87e3adba86cfe5c","version":"1"}' + x-request-id: + - b2a1334c408bab18b87e3adba86cfe5c + x-runtime: + - '0.213746' + status: + code: 200 + message: OK +- request: + body: '{"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)._\n"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '610' + Content-type: + - application/json + Cookie: + - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 + method: POST + uri: https://gitlab.com/api/v4/projects/42823949/issues/13159/discussions + response: + body: + string: '{"id":"dad68a466e6a9d14fde1639ef3bf105c01220beb","individual_note":false,"notes":[{"id":1784526178,"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":{}}]}' + headers: + CF-Cache-Status: + - DYNAMIC + CF-RAY: + - 85963b027c9194b2-CCU + Connection: + - keep-alive + Content-Length: + - '1428' + Content-Type: + - application/json + Date: + - Thu, 22 Feb 2024 09:33: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=jB4Fd%2F2aj6R9eedYzEQW4y%2FFSK9dfoiFAfL9DFv%2F5OEMSyLEa4tYSLXZHmEddufyswml9T%2BAeoSTHdQcKAEPEeIyMDJGC4sG0xjFI6yeVIc5yPrEbmDPDpXL5Xo5QbVXhBggMOtVkUI%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/"c60f2bbdbcbbfe436822e86bfc2d9023" + gitlab-lb: + - haproxy-main-58-lb-gprd + gitlab-sv: + - api-gke-us-east1-c + 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":"31d76ebde5a106b3bcd746518ef30e1d","version":"1"}' + x-request-id: + - 31d76ebde5a106b3bcd746518ef30e1d + x-runtime: + - '0.703375' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-type: + - application/json + Cookie: + - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13159 + response: + body: + string: '{"id":142497601,"iid":13159,"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}' + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 85963b0a5b4f94b2-CCU + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Thu, 22 Feb 2024 09:33: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=qdBqDq%2FOnWGsvhjmJ1lWC38%2FEcpmeOi8l0XpPQT%2B1YdlgA5cJtzI9gmt7bxj1gE4uhE2fxo4ErFO5qIqGriu6rGKuPxdX3kgV42Kw%2BifbycKDCIG9e4%2BYEV8xI085%2FSPmWiGn03K1RE%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/"bb1c4e0acd4dae1dd38c387b8a8e82fc" + gitlab-lb: + - haproxy-main-60-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":"e2c60e11dd0045353b6dc409762fe0b2","version":"1"}' + x-request-id: + - e2c60e11dd0045353b6dc409762fe0b2 + x-runtime: + - '0.416418' + status: + code: 200 + message: OK +- request: + body: '{"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)._\n"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '611' + Content-type: + - application/json + Cookie: + - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 + method: POST + uri: https://gitlab.com/api/v4/projects/42823949/issues/13159/discussions + response: + body: + string: '{"id":"ae178edbc856ab75904b79b0ddbcac7f1b070b87","individual_note":false,"notes":[{"id":1784526238,"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":{}}]}' + headers: + CF-Cache-Status: + - DYNAMIC + CF-RAY: + - 85963b0f5bf394c2-CCU + Connection: + - keep-alive + Content-Length: + - '1429' + Content-Type: + - application/json + Date: + - Thu, 22 Feb 2024 09:34: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=yXNboZBJgYKazYbTiqoMDEGdDWZYhVL5UaqlDw%2B6htYVoUERv1auaLM2sCpVROdvQGtG8ATrUXgXTxWrrgykWE5fdFGpv%2FF1WKkeciwgIp0uUIZs%2FQRUPYTYJwgxmjmYqu9d6EqUvEU%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/"2d4b4ba1c91efae6815cb473c161c118" + gitlab-lb: + - haproxy-main-01-lb-gprd + gitlab-sv: + - gke-cny-api + 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":"72a8e4da822aee98ee8cf9b505d7b64e","version":"1"}' + x-request-id: + - 72a8e4da822aee98ee8cf9b505d7b64e + x-runtime: + - '1.123980' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-type: + - application/json + Cookie: + - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13159 + response: + body: + string: '{"id":142497601,"iid":13159,"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}' + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 85963b18cba794c4-CCU + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Thu, 22 Feb 2024 09:34: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=lGFnzEKcF7Fz7LCNa38chQs6Vnr2UExAWJBzFnrQjmRpmk6jemeGMYAShvBG0%2FVlh4d8mr61In653yUE1CE%2FDiYKckpg09B2ziLq%2BpLRhOQ6dZbfo%2BxGkUkt9DchbffpVoHbculB9tU%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/"734dd1684fa89453e8a2dafe1e9a4182" + gitlab-lb: + - haproxy-main-56-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":"bf52a1ecec1022084167e4128e9dc701","version":"1"}' + x-request-id: + - bf52a1ecec1022084167e4128e9dc701 + x-runtime: + - '0.193886' + status: + code: 200 + message: OK +- request: + body: '{"body": "\n**Metadata Update from &t0xic0der**:\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)._\n"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '641' + Content-type: + - application/json + Cookie: + - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 + method: POST + uri: https://gitlab.com/api/v4/projects/42823949/issues/13159/discussions + response: + body: + string: '{"id":"df4859cbcba6b28cdce91f2b6c253c2bd1593160","individual_note":false,"notes":[{"id":1784526277,"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":{}}]}' + headers: + CF-Cache-Status: + - DYNAMIC + CF-RAY: + - 85963b1c5c2794b6-CCU + Connection: + - keep-alive + Content-Length: + - '1464' + Content-Type: + - application/json + Date: + - Thu, 22 Feb 2024 09:34: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=%2FnYP%2Fcpji5S%2BkELT1de5Wy7%2B5lK2FoaAIpussav4LXVQOnxbTT5StIAlN0TxaIkGDxXOJ6NFyI%2B7SHcOxWF3rEuBbGvB3BJn3NhqNqPdJHy7cHCn4Xvl%2FK4LKCyoVcISNiv9k1uNkfo%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/"1c84ce2cea52564e4e04cb1fc0f94413" + gitlab-lb: + - haproxy-main-30-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":"f3b5bc3d4dcec5723c6e5fdbf936838f","version":"1"}' + x-request-id: + - f3b5bc3d4dcec5723c6e5fdbf936838f + x-runtime: + - '0.837271' + status: + code: 201 + message: Created +- 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 + 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)._\n"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '589' + Content-type: + - application/json + Cookie: + - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-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 + 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}' + headers: + CF-Cache-Status: + - DYNAMIC + CF-RAY: + - 85963b23f9c994b0-CCU + Connection: + - keep-alive + Content-Length: + - '2190' + Content-Type: + - application/json + Date: + - Thu, 22 Feb 2024 09:34: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=y5e8U4yUuj6rpg0EAj1ToZ1gmVXuuLPnQpShvOnbyJvOSfRzAmfx6tcUKlnfxN59GrbwI7QjjZz0JxVUclCdCJezviUFSxJQijBWu8852Am7OB57QIYUn6kieKJ2yKBNqouHQf3SPs0%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/"7a21b94ccd7b0e985fe29ea7e0940826" + gitlab-lb: + - haproxy-main-58-lb-gprd + gitlab-sv: + - api-gke-us-east1-c + 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":"76af129d7ff0b4ceaa66fd85ae20ab16","version":"1"}' + x-request-id: + - 76af129d7ff0b4ceaa66fd85ae20ab16 + x-runtime: + - '0.492987' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-type: + - application/json + Cookie: + - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13160 + response: + body: + string: '{"id":142497605,"iid":13160,"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}' + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 85963b29c82694b6-CCU + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Thu, 22 Feb 2024 09:34: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=8v%2BkJ%2B%2FjE9Vy8gerli8qWGf6iwDezzFeYvn9bT3NDlPLyvL%2BBCrxR9lyhanCKfIF9Suafp%2FRHOhhTS7vGlqNbNIGlIVu6azh5LPVfMdOPyprWR4vpIon9ML2LIQj%2FCHRJhBGDLiiXwE%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/"7a21b94ccd7b0e985fe29ea7e0940826" + gitlab-lb: + - haproxy-main-25-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":"925f57fc200010571d05022640862893","version":"1"}' + x-request-id: + - 925f57fc200010571d05022640862893 + x-runtime: + - '0.153205' + status: + code: 200 + message: OK +- request: + body: '{"body": "\n**Metadata Update from &t0xic0der**:\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)._\n"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-type: + - application/json + Cookie: + - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 + method: POST + uri: https://gitlab.com/api/v4/projects/42823949/issues/13160/discussions + response: + body: + string: '{"id":"cd597dbc996aaedb409a7315de03f67ef67c2ac4","individual_note":false,"notes":[{"id":1784526358,"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":{}}]}' + headers: + CF-Cache-Status: + - DYNAMIC + CF-RAY: + - 85963b2d183393bb-CCU + Connection: + - keep-alive + Content-Length: + - '1450' + Content-Type: + - application/json + Date: + - Thu, 22 Feb 2024 09:34: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=8Hf0U7IiiOb95Oxo0RkvprnfyWL3RLVEr0CcmSHDPf58a8mLRCX6%2FI%2FOGR3yWR%2Byg%2FA4r7PaN3C4hGJhBmYSuj0Cbt2IevF3HeTRyHdmf%2Bw6KpJCpqxujGwvpwnLn4irDDtjNvexIvA%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/"44ef60e5c03eb4dff53c92084d9e4def" + gitlab-lb: + - haproxy-main-18-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":"ef8a4478e16b34abb8f190a48d502c82","version":"1"}' + x-request-id: + - ef8a4478e16b34abb8f190a48d502c82 + x-runtime: + - '0.458175' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-type: + - application/json + Cookie: + - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13160 + response: + body: + string: '{"id":142497605,"iid":13160,"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}' + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 85963b326b5094c4-CCU + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Thu, 22 Feb 2024 09:34: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=izjRYlfRI0pdm384tLJTCxrxRQ07jDMxijfjIHO3ZgIoPLm8Iz0OXGnivMl6G8vhq6Qqh3iaVjP7nGgfOw6QC109iUyDRgMNRJeEZX6eCXYwWHEAATK9P4hUAHBfLYCiIHt6abJabG4%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/"475c9f33946f78e92230a9dea51f31d3" + 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":"a9f4f1c262ae98b77fb78f05b59e9630","version":"1"}' + x-request-id: + - a9f4f1c262ae98b77fb78f05b59e9630 + x-runtime: + - '0.235603' + status: + code: 200 + message: OK +- request: + body: '{"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)._\n"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '610' + Content-type: + - application/json + Cookie: + - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 + method: POST + uri: https://gitlab.com/api/v4/projects/42823949/issues/13160/discussions + response: + body: + string: '{"id":"b423529068430d5e926af3ab79c68c5b7b0558da","individual_note":false,"notes":[{"id":1784526398,"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":{}}]}' + headers: + CF-Cache-Status: + - DYNAMIC + CF-RAY: + - 85963b362bb293c1-CCU + Connection: + - keep-alive + Content-Length: + - '1428' + Content-Type: + - application/json + Date: + - Thu, 22 Feb 2024 09:34: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=1t23RnZKP%2ByQw%2FgGnrFR9CljEUaBNrulaqeXuV8n9v%2B1wFov4vWmZ0ns%2FNxJU5CbIwnH0SF%2F58wmVwrDpzLHA2tqsUZ9MoVrVo2yiRN8QzzFNVHvK6tx6OygH3FhPRDBHk0MoPYcuOA%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/"fb00f403310bc8ec33e94e7dce9b81ad" + gitlab-lb: + - haproxy-main-53-lb-gprd + gitlab-sv: + - api-gke-us-east1-d + 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":"0ef7ebf2544e932c721409743570e45a","version":"1"}' + x-request-id: + - 0ef7ebf2544e932c721409743570e45a + x-runtime: + - '0.455048' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-type: + - application/json + Cookie: + - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13160 + response: + body: + string: '{"id":142497605,"iid":13160,"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}' + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 85963b3b687193c1-CCU + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Thu, 22 Feb 2024 09:34: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=fx%2Fyd8XzvDC1bFvc7cwQu3LtGuU%2F5%2Bo2%2FNGr%2Bxn8nwYbt4Oi9st3z8jtFQQOI4ic8SzN5C9dxB6U2kvP84HUJ35Gh812RDglTpxRBaACi77oHJy1mQqUCylEehIgrRRrHIb%2FoTd8qOo%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/"4e599a5f48d657fbafd00c1c002b1c1a" + gitlab-lb: + - haproxy-main-03-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":"53ff2ecd3a75e517d1ec1d70503af679","version":"1"}' + x-request-id: + - 53ff2ecd3a75e517d1ec1d70503af679 + x-runtime: + - '0.151908' + status: + code: 200 + message: OK +- request: + body: '{"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)._\n"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '611' + Content-type: + - application/json + Cookie: + - _cfuvid=HwleEUm3U.uO681rIPF7tZYRaIlod.Qszkw5cC6CIZQ-1708594421434-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/6104/notes + uri: https://gitlab.com/api/v4/projects/42823949/issues/13160/discussions response: body: - string: '{"id":1687901885,"type":null,"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) + string: '{"id":"3cbae572fa2175997868e6ff9ae66ed6afaf7975","individual_note":false,"notes":[{"id":1784526431,"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/1b6289f6c729f1ba694aa2bc296a7277?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2023-12-11T06:25:27.242Z","updated_at":"2023-12-11T06:25:27.242Z","system":false,"noteable_id":139467149,"noteable_type":"Issue","project_id":42823949,"resolvable":false,"confidential":false,"internal":false,"noteable_iid":6104,"commands_changes":{}}' + 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":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba67d3a5c857d-BOM + - 85963b3e9e4d94c4-CCU Connection: - keep-alive Content-Length: - - '1246' + - '1429' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:28 GMT + - Thu, 22 Feb 2024 09:34: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=HwGTqyrEo374EGwUGL1wmu9VLu2oJr58aBnryIXwUCPx%2B8%2FzDSPszL%2B90cMLgDEY16htaaUeFN0eyZVOOObSDuRDgiBPWFn94Qbf1GP5%2BBUcMQRgPa86suD8FqI%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Dd1zWURaix%2F7EacLD59fhksPi4LT%2BqVqVeM%2BQHlIINLliFgtXArBCgMlJ71o0pyjP9%2B7vcTumtjI4KnX7N3UAhdqIPCxir2V832vZ89FTvHVtUzC847xSfFfcN0QRD%2FlGQK0U5pRQ%2Fc%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1850,21 +2750,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"198199000acc16670ca99bcce734cc20" + - W/"b8fb14c3bd47a6ac0818bb07f453ed38" gitlab-lb: - - haproxy-main-04-lb-gprd + - haproxy-main-38-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '41' - ratelimit-remaining: - - '1958' - ratelimit-reset: - - '1702275988' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:28 GMT + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -1876,11 +2766,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"c62df1a7f533c5630ab268fdbb49b86e","version":"1"}' + - '{"correlation_id":"8e62ea9d5ea4925bc79be850daa9becf","version":"1"}' x-request-id: - - c62df1a7f533c5630ab268fdbb49b86e + - 8e62ea9d5ea4925bc79be850daa9becf x-runtime: - - '1.360260' + - '0.464512' 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 18ff64c..364c191 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-696QK5VSGOmCzvYfp9X2OMwxD'; style-src - 'self' 'nonce-696QK5VSGOmCzvYfp9X2OMwxD'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-c3ENjpH6nD28kWhn4SJrrQNRY'; style-src + 'self' 'nonce-c3ENjpH6nD28kWhn4SJrrQNRY'; 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: - - Mon, 11 Dec 2023 06:24:31 GMT + - Thu, 22 Feb 2024 09:32:57 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -71,21 +71,23 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-type: + - application/json User-Agent: - - python-requests/2.31.0 + - 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":"2023-12-11T05:36:06.620Z","namespace":{"id":13984834,"name":"Akashdeep - Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/eba3058f529195e3b87d3383ada41661?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/eba3058f529195e3b87d3383ada41661?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"},"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","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":5083,"description_html":"","updated_at":"2023-12-11T05:36:06.620Z","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":"REMOVED","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,"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 / 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","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}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 833ba528bac66ebf-BOM + - 8596398abf8993c8-CCU Connection: - keep-alive Content-Encoding: @@ -93,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:24:32 GMT + - Thu, 22 Feb 2024 09:32: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=a12xZz9Vb0teaejb3%2B2V6MJrMXB37k8HgFiySIK5QkMnRkZxGBNjN3hi5c4H1z%2BEFnScQ0BEvp%2BhXQvg1%2FW9UVNqAUNHPG1EZNzPNk3WDFuLtrKyV620WEaN84A%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=9BFVML2EvDRxGQPr1bIlMg%2Ff6PRKiolk3FvAOdj8IHZVVsDRbeRI6qGTOx09rurKR3S2LPq0Wtv%2BQU4VVwgMds1IpsdKGi0fLD%2B0%2FKNT8UwCLvD5gKv2491d5fdaHqyPZQ21bxpi4ps%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -108,21 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"e482794614956a47cdf6f4bbf9ab5efa" + - W/"7844e8f403505d2d1c3a1714e832e397" gitlab-lb: - - haproxy-main-16-lb-gprd + - haproxy-main-39-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '33' - ratelimit-remaining: - - '1967' - ratelimit-reset: - - '1702275932' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:25:32 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -134,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"d6f203d838e4780480dae6b2e25e5d7e","version":"1"}' + - '{"correlation_id":"073b6de684e0c58118a014a7741c2f42","version":"1"}' x-request-id: - - d6f203d838e4780480dae6b2e25e5d7e + - 073b6de684e0c58118a014a7741c2f42 x-runtime: - - '0.176921' + - '0.172140' status: code: 200 message: OK @@ -308,14 +300,14 @@ interactions: Content-Length: - '10774' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-RkeSO5lTaN6dhiVH6WYcR2k0h'; style-src - 'self' 'nonce-RkeSO5lTaN6dhiVH6WYcR2k0h'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-qLsNE3X7buQIKcAEmb7OremuZ'; style-src + 'self' 'nonce-qLsNE3X7buQIKcAEmb7OremuZ'; 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: - - Mon, 11 Dec 2023 06:24:33 GMT + - Thu, 22 Feb 2024 09:32:58 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -502,14 +494,14 @@ interactions: Content-Length: - '10774' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-2IIXCjSrLePkH37mKubPwe1oY'; style-src - 'self' 'nonce-2IIXCjSrLePkH37mKubPwe1oY'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-c3sADhaQyVGtW80E7Soxxn1WX'; style-src + 'self' 'nonce-c3sADhaQyVGtW80E7Soxxn1WX'; 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: - - Mon, 11 Dec 2023 06:24:34 GMT + - Thu, 22 Feb 2024 09:33:00 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -531,7 +523,13 @@ interactions: code: 200 message: OK - request: - body: title=%5BSN%234%5D+This+is+the+title+of+the+fourth+test+issue&description=%0AThis+is+the+body+of+the+fourth+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F4%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2ATue+Nov+21+08%3A06%3A56+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Fnov-21-2023%2F08-06%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A&labels=gggg%2Chhhh + body: '{"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)._\n", + "labels": ["gggg", "hhhh"]}' headers: Accept: - '*/*' @@ -540,40 +538,42 @@ interactions: Connection: - keep-alive Content-Length: - - '744' - Content-Type: - - application/x-www-form-urlencoded + - '619' + Content-type: + - application/json + Cookie: + - _cfuvid=ebk1nPm6731.LaTsN6C0sHyMmryIyFo6wSZ5hNUu.sk-1708594377844-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467125,"iid":6093,"project_id":42823949,"title":"[SN#4] This + string: '{"id":142497554,"iid":13149,"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":"2023-12-11T06:24:35.977Z","updated_at":"2023-12-11T06:24:35.977Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6093","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/6093","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6093/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6093/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6093","relative":"#6093","full":"gridhead/protop2g-test#6093"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba53ddc0b856b-BOM + - 8596399efbd994bc-CCU Connection: - keep-alive Content-Length: - - '2165' + - '2205' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:24:37 GMT + - Thu, 22 Feb 2024 09:33: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=fDHvfY0l24ZvOJKWFcicKKv5B6qbvuw0bXk%2B1KkqpFHQ07W2o5TRQU%2Ff0LJcwvl9zdDpgX0s7NKkYV2vSoXN3%2BMUsMKn9ha6MRc2eJKy6NTjUSz3c22SrDU1nf8%3D"}],"group":"cf-nel","max_age":604800}' + - '{"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}' Server: - cloudflare Set-Cookie: '' @@ -582,21 +582,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"7e445f5d16dfefc4766438ebcf710012" + - W/"b65f129a71190f3ac0769a1c56044aad" gitlab-lb: - - haproxy-main-38-lb-gprd + - haproxy-main-48-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '32' - ratelimit-remaining: - - '1968' - ratelimit-reset: - - '1702275937' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:25:37 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -608,16 +598,22 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"b882022af6f2be4a17e30df098a14c6f","version":"1"}' + - '{"correlation_id":"0666da393eca5e7dc1357fa244b5231b","version":"1"}' x-request-id: - - b882022af6f2be4a17e30df098a14c6f + - 0666da393eca5e7dc1357fa244b5231b x-runtime: - - '1.449068' + - '0.627721' status: code: 201 message: Created - request: - body: title=%5BSN%233%5D+This+is+the+title+of+the+third+test+issue&description=%0AThis+is+the+body+of+the+third+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F3%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2ATue+Nov+21+08%3A03%3A57+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Fnov-21-2023%2F08-03%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A&labels=eeee%2Cffff + body: '{"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)._\n", + "labels": ["eeee", "ffff"]}' headers: Accept: - '*/*' @@ -626,40 +622,42 @@ interactions: Connection: - keep-alive Content-Length: - - '742' - Content-Type: - - application/x-www-form-urlencoded + - '617' + Content-type: + - application/json + Cookie: + - _cfuvid=ebk1nPm6731.LaTsN6C0sHyMmryIyFo6wSZ5hNUu.sk-1708594377844-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467126,"iid":6094,"project_id":42823949,"title":"[SN#3] This + string: '{"id":142497557,"iid":13150,"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":"2023-12-11T06:24:37.793Z","updated_at":"2023-12-11T06:24:37.793Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6094","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/6094","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6094/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6094/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6094","relative":"#6094","full":"gridhead/protop2g-test#6094"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba549595cf4da-BOM + - 859639a53b3193cb-CCU Connection: - keep-alive Content-Length: - - '2163' + - '2203' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:24:38 GMT + - Thu, 22 Feb 2024 09:33: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=Y%2FTPnS35GLCUy5jR6fOc41tEUG6%2FgPKtu%2FgktoK1LCic%2FIoZzC2%2F8zSWik33CKbYaKkEZ6valheWDvcrATro7AaXCVkdC2KPi%2F%2BWWGHTiqi%2F6ATl3DFdo23yOSw%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=IRM0%2B%2FhVHC9R0rWG7dp7nX3GSo50yA8ThCAWcYPnDXWcFoiE7UiaqGfPGfAJnHawhWwiuecvPILetISaT5vH1liK56YFvhZDTvF0a%2BrobgZvAQ6udNXlumbBp%2BCdsOP1CIFTK6blXnY%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -668,21 +666,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"578731d25f641d21ba327ca7b4165ec0" + - W/"b882ae973f7a056c09159abd427d6578" gitlab-lb: - - haproxy-main-39-lb-gprd + - haproxy-main-14-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '32' - ratelimit-remaining: - - '1968' - ratelimit-reset: - - '1702275938' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:25:38 GMT + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -694,16 +682,22 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"d829c3f3a7ee056b4426e2088fbe22ca","version":"1"}' + - '{"correlation_id":"43f81f3ea247929966af887ebd9d55b5","version":"1"}' x-request-id: - - d829c3f3a7ee056b4426e2088fbe22ca + - 43f81f3ea247929966af887ebd9d55b5 x-runtime: - - '0.566198' + - '0.910069' status: code: 201 message: Created - request: - body: title=%5BSN%232%5D+This+is+the+title+of+the+second+test+issue&description=%0AThis+is+the+body+of+the+second+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2AFri+Oct+13+04%3A01%3A16+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-01%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A&labels=cccc%2Cdddd + body: '{"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)._\n", + "labels": ["cccc", "dddd"]}' headers: Accept: - '*/*' @@ -712,40 +706,42 @@ interactions: Connection: - keep-alive Content-Length: - - '744' - Content-Type: - - application/x-www-form-urlencoded + - '619' + Content-type: + - application/json + Cookie: + - _cfuvid=ebk1nPm6731.LaTsN6C0sHyMmryIyFo6wSZ5hNUu.sk-1708594377844-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467127,"iid":6095,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142497561,"iid":13151,"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":"2023-12-11T06:24:38.827Z","updated_at":"2023-12-11T06:24:38.827Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6095","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/6095","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6095/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6095/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6095","relative":"#6095","full":"gridhead/protop2g-test#6095"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba54f1d491bcb-BOM + - 859639ad3fca94c4-CCU Connection: - keep-alive Content-Length: - - '2165' + - '2205' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:24:39 GMT + - Thu, 22 Feb 2024 09:33: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=r5ZoBJ7FuEzXdCOacfBAObueAwmEmLVXu8IHQMZlUstRycNo21JInZ%2Bzea1aU5C5p3YxsXRfj9WxRWu%2Fyf3Ppaxj3MaSYPANh2Yr%2FHnjWXp9JB6CePHSAx6bRMQ%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=wPD6y%2BckKxUELG8y0tXYDAjoGRsV3VUzgXokdvH4G30tNuMrzMpv9j5CchE8%2BwTcpqKfbY51Nh4AhijXQUJ2nRSXx7mfVNccBkyLsaStu6z991wJQQcFMXdfBepyk3x8E2bWbm%2FKPIQ%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -754,21 +750,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"eaa3330143a5f4a745265643b9d5154f" + - W/"e0c4efef86235b653e562b5083b29b3e" gitlab-lb: - - haproxy-main-43-lb-gprd + - haproxy-main-08-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '32' - ratelimit-remaining: - - '1967' - ratelimit-reset: - - '1702275939' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:25:39 GMT + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -780,16 +766,22 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"4556b35a9b8725acff9a8464d3f050f0","version":"1"}' + - '{"correlation_id":"ad5a737fde37ae6943723864460460c3","version":"1"}' x-request-id: - - 4556b35a9b8725acff9a8464d3f050f0 + - ad5a737fde37ae6943723864460460c3 x-runtime: - - '0.724230' + - '1.288975' status: code: 201 message: Created - request: - body: title=%5BSN%231%5D+This+is+the+title+of+the+first+test+issue&description=%0AThis+is+the+body+of+the+first+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2AFri+Oct+13+03%3A57%3A42+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F03-57%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A&labels=aaaa%2Cbbbb + 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 + 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)._\n", + "labels": ["aaaa", "bbbb"]}' headers: Accept: - '*/*' @@ -798,40 +790,42 @@ interactions: Connection: - keep-alive Content-Length: - - '742' - Content-Type: - - application/x-www-form-urlencoded + - '617' + Content-type: + - application/json + Cookie: + - _cfuvid=ebk1nPm6731.LaTsN6C0sHyMmryIyFo6wSZ5hNUu.sk-1708594377844-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467128,"iid":6096,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142497564,"iid":13152,"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":"2023-12-11T06:24:39.750Z","updated_at":"2023-12-11T06:24:39.750Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6096","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/6096","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6096/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6096/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6096","relative":"#6096","full":"gridhead/protop2g-test#6096"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba5559f6184fe-BOM + - 859639b80e0793c5-CCU Connection: - keep-alive Content-Length: - - '2163' + - '2203' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:24:40 GMT + - Thu, 22 Feb 2024 09:33: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=MDMDe5WIOwdmVsKpTEQZdwB8X2zvQPWvAtj2ksOxWPxQKhHX3IsWdEAQXkby3AqcXqbh9oipCM%2FlGYjGxfrkbG%2FsMl3SPyacn1eqmsNvw5X6OeRygHPywWJGNpI%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Bz46M6Ft8alKAladO%2FC3k7qQJg%2FfZwKn8acHtO2FMzqBuX4EX5U0E4eTLY3NOXi49bdWBc42dPKQb99fVTs%2B5ETi9iNcdlNU%2FlOpkMptqO2SF%2FNk0%2BeKyKkewCDacQDF956bvs8G3Ks%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -840,21 +834,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"4086da866235588f21121d7af4f41c13" + - W/"aadcabbb9d39052bea1987e1034c31dc" gitlab-lb: - - haproxy-main-27-lb-gprd + - haproxy-main-07-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '33' - ratelimit-remaining: - - '1967' - ratelimit-reset: - - '1702275939' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:25:39 GMT + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -866,11 +850,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"0afc94a4b23d6bdbe672803fc5c1f8fe","version":"1"}' + - '{"correlation_id":"0cb3b8e86f466290520f050ddae217c3","version":"1"}' x-request-id: - - 0afc94a4b23d6bdbe672803fc5c1f8fe + - 0cb3b8e86f466290520f050ddae217c3 x-runtime: - - '0.522253' + - '1.069024' 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 84a2e5e..0c27d70 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-f0NViRhep5MmO84hhUzSHDe9h'; style-src - 'self' 'nonce-f0NViRhep5MmO84hhUzSHDe9h'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-cJI296OMVZNKTtQ6pzHB75mJe'; style-src + 'self' 'nonce-cJI296OMVZNKTtQ6pzHB75mJe'; 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: - - Mon, 11 Dec 2023 06:24:06 GMT + - Thu, 22 Feb 2024 09:32:33 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -71,21 +71,23 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-type: + - application/json User-Agent: - - python-requests/2.31.0 + - 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":"2023-12-11T05:36:06.620Z","namespace":{"id":13984834,"name":"Akashdeep - Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/eba3058f529195e3b87d3383ada41661?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/eba3058f529195e3b87d3383ada41661?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"},"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","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":5077,"description_html":"","updated_at":"2023-12-11T05:36:06.620Z","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":"REMOVED","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,"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 / 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","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}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 833ba48dacab2e4c-BOM + - 859638f9ba1094bf-CCU Connection: - keep-alive Content-Encoding: @@ -93,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:24:07 GMT + - Thu, 22 Feb 2024 09:32: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=lDN8DO%2FJ9Wl6Ob5Y7i78qRNFXgkyzgH1CxS55FtRJWprOrOY66d2urdoHfuOIjNb2xTrNuQR1ALyHbDgC%2FiYkY%2FSUB1Ni%2B1rYGmF0wDA8AgDuWFDdjOl2ky8%2B4E%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=VpE5PPcstfOyPGfYNjR8ogwJ0JyEk4LzFrahNOa1pgkKeQd5OkRgR%2B%2B5fTERpch9jL2gD5ib5pNK1S3Mq1LwFlPasG%2Boe6UjZLgSGRv1O1S%2F%2FhkkKY0alwGmL1wC8%2FhVIHes2iUyoyI%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -108,21 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"52e87c40f723a14847db33a32e95c09c" + - W/"a937f65292ea5589e6eb054dc9a6e1f6" gitlab-lb: - - haproxy-main-35-lb-gprd + - haproxy-main-10-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '34' - ratelimit-remaining: - - '1966' - ratelimit-reset: - - '1702275907' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:25:07 GMT + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -134,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"d0b4c64e873df7b0d0bcc2821dac8b97","version":"1"}' + - '{"correlation_id":"e8cf9524859174cf1ed4efa925564191","version":"1"}' x-request-id: - - d0b4c64e873df7b0d0bcc2821dac8b97 + - e8cf9524859174cf1ed4efa925564191 x-runtime: - - '0.093406' + - '0.127270' status: code: 200 message: OK @@ -308,14 +300,14 @@ interactions: Content-Length: - '10774' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-UfaNwyx2Or0gAyUABlu4eAyvr'; style-src - 'self' 'nonce-UfaNwyx2Or0gAyUABlu4eAyvr'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-ZhMrqYCHZOEiyA3OUigNcKNhY'; style-src + 'self' 'nonce-ZhMrqYCHZOEiyA3OUigNcKNhY'; 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: - - Mon, 11 Dec 2023 06:24:08 GMT + - Thu, 22 Feb 2024 09:32:35 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -502,14 +494,14 @@ interactions: Content-Length: - '10774' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-QJJh07FmH772gWNYyHleqJK7d'; style-src - 'self' 'nonce-QJJh07FmH772gWNYyHleqJK7d'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-93rfekqjOGEqKL7iZVdMyJxeR'; style-src + 'self' 'nonce-93rfekqjOGEqKL7iZVdMyJxeR'; 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: - - Mon, 11 Dec 2023 06:24:09 GMT + - Thu, 22 Feb 2024 09:32:36 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -531,7 +523,12 @@ interactions: code: 200 message: OK - request: - body: title=%5BSN%234%5D+This+is+the+title+of+the+fourth+test+issue&description=%0AThis+is+the+body+of+the+fourth+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F4%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2ATue+Nov+21+08%3A06%3A56+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Fnov-21-2023%2F08-06%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: '{"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)._\n"}' headers: Accept: - '*/*' @@ -540,40 +537,42 @@ interactions: Connection: - keep-alive Content-Length: - - '725' - Content-Type: - - application/x-www-form-urlencoded + - '591' + Content-type: + - application/json + Cookie: + - _cfuvid=xGaLcDSkJeTOx4zh8AVqlBJ_ryadTs4mIcFDMBqA9dI-1708594354616-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467114,"iid":6085,"project_id":42823949,"title":"[SN#4] This + string: '{"id":142497527,"iid":13141,"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":"2023-12-11T06:24:10.899Z","updated_at":"2023-12-11T06:24:10.899Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6085","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/6085","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6085/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6085/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6085","relative":"#6085","full":"gridhead/protop2g-test#6085"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba4a1ad7631dc-BOM + - 8596390afbb594b6-CCU Connection: - keep-alive Content-Length: - - '2152' + - '2192' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:24:11 GMT + - Thu, 22 Feb 2024 09:32: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=0j6NCAjW0Q%2FayTffalUu2EYjt3qO3zO2qjDphR%2BQYXLu9dQbMUOpQDMm3anwqIZKQ0UB8OpDzCa3JzwchsgqQb7cffRCwznZOgX%2FttmitN3PXDmSEL90cK4xuoI%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=zd1Xb9eU3bm3qBX%2BalW8ku0bcUHAita7f5IjFNawMEpp9zeODt3lo8On1F5xeiBOOErvEGpOct5GFmDhUPAufP4Uq8j7YTMyict6JVdew7qwLeqsJGmZ5MCrjhdPgevsi6SO60pwB%2FE%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -582,21 +581,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"5b1d2d6833f5660a7d1ca5ce45ef2934" + - W/"476bdb5f58fffa03a1e50bd2e3c6b10d" gitlab-lb: - - haproxy-main-22-lb-gprd + - haproxy-main-48-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '33' - ratelimit-remaining: - - '1967' - ratelimit-reset: - - '1702275911' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:25:11 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -608,16 +597,16 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"aec09a5023d36120a4e959d10cf90bc8","version":"1"}' + - '{"correlation_id":"286b3c8097dddb7b2fc0f7afc8481f0d","version":"1"}' x-request-id: - - aec09a5023d36120a4e959d10cf90bc8 + - 286b3c8097dddb7b2fc0f7afc8481f0d x-runtime: - - '0.445348' + - '0.535511' status: code: 201 message: Created - request: - body: state_event=close + body: null headers: Accept: - '*/*' @@ -625,29 +614,109 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '17' + Content-type: + - application/json + Cookie: + - _cfuvid=xGaLcDSkJeTOx4zh8AVqlBJ_ryadTs4mIcFDMBqA9dI-1708594354616-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13141 + response: + body: + string: '{"id":142497527,"iid":13141,"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}' + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 85963910aabd93c2-CCU + Connection: + - keep-alive + Content-Encoding: + - gzip Content-Type: - - application/x-www-form-urlencoded + - application/json + Date: + - Thu, 22 Feb 2024 09:32: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=zDfp9XPBa%2BfSdB%2Bi7DXKoRAUfjxGafnMohxLF3CAOcPkijSJolfjrtel5m0LTce22X5AgKO0SvnF%2BY5P%2Fdz26QlTS5Q%2Bz81l0TH7M9ygvlGMu586aopdhNbsasKlXg%2BvzRcNxfKY%2Bl8%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/"476bdb5f58fffa03a1e50bd2e3c6b10d" + gitlab-lb: + - haproxy-main-23-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":"0ccc23f8dba9172294dadf765024e6d6","version":"1"}' + x-request-id: + - 0ccc23f8dba9172294dadf765024e6d6 + x-runtime: + - '0.314566' + 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=xGaLcDSkJeTOx4zh8AVqlBJ_ryadTs4mIcFDMBqA9dI-1708594354616-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: PUT - uri: https://gitlab.com/api/v4/projects/42823949/issues/6085 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13141 response: body: - string: '{"id":139467114,"iid":6085,"project_id":42823949,"title":"[SN#4] This + string: '{"id":142497527,"iid":13141,"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":"2023-12-11T06:24:10.899Z","updated_at":"2023-12-11T06:24:12.050Z","closed_at":"2023-12-11T06:24:12.036Z","closed_by":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/1b6289f6c729f1ba694aa2bc296a7277?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/1b6289f6c729f1ba694aa2bc296a7277?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/6085","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/6085","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6085/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6085/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6085","relative":"#6085","full":"gridhead/protop2g-test#6085"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba4a93e6e8565-BOM + - 85963915597394b0-CCU Connection: - keep-alive Content-Encoding: @@ -655,11 +724,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:24:12 GMT + - Thu, 22 Feb 2024 09:32: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=8Bjjn3kvtMMXGTAIQ2r5RCUOfzjlTmlcbpd26IrgciS0FFdMDpqWqOOGRhTl4TQTK8xEjVckwuLG6mRZXaIhQtd4UISDRKY4YfiCTBP3iBlx%2BiinTCRObM4Hjog%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=M%2BJlid8G%2F%2BsjGhC8OP%2B6tBzYK3REblDDvWgnqUtEyIekoHExgSPoS4w35SvCutqQY6EoGFZstU9Q%2FdZdrHpCPvrrHuLRZrmomfzX50FJsb3j1U4KJ912kedo0krxdMpC4qIWXG3MtKc%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -670,21 +739,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"47fbc4244caf74eb7a7dff713252e34d" + - W/"b7fab2820124c89fa700b824578841c7" gitlab-lb: - - haproxy-main-36-lb-gprd + - haproxy-main-16-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '33' - ratelimit-remaining: - - '1967' - ratelimit-reset: - - '1702275912' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:25:12 GMT + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -696,16 +755,21 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"fac91a8f0a0a7ca599f9d443d10abc86","version":"1"}' + - '{"correlation_id":"f73cd4e8bbdf0d979edfb6afea1da8cf","version":"1"}' x-request-id: - - fac91a8f0a0a7ca599f9d443d10abc86 + - f73cd4e8bbdf0d979edfb6afea1da8cf x-runtime: - - '0.378270' + - '0.308202' status: code: 200 message: OK - request: - body: title=%5BSN%233%5D+This+is+the+title+of+the+third+test+issue&description=%0AThis+is+the+body+of+the+third+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F3%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2ATue+Nov+21+08%3A03%3A57+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Fnov-21-2023%2F08-03%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: '{"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)._\n"}' headers: Accept: - '*/*' @@ -714,40 +778,42 @@ interactions: Connection: - keep-alive Content-Length: - - '723' - Content-Type: - - application/x-www-form-urlencoded + - '589' + Content-type: + - application/json + Cookie: + - _cfuvid=xGaLcDSkJeTOx4zh8AVqlBJ_ryadTs4mIcFDMBqA9dI-1708594354616-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467115,"iid":6086,"project_id":42823949,"title":"[SN#3] This + string: '{"id":142497530,"iid":13142,"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":"2023-12-11T06:24:13.156Z","updated_at":"2023-12-11T06:24:13.156Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6086","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/6086","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6086/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6086/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6086","relative":"#6086","full":"gridhead/protop2g-test#6086"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba4aededa6ec2-BOM + - 8596391cdfcb94d0-CCU Connection: - keep-alive Content-Length: - - '2150' + - '2190' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:24:13 GMT + - Thu, 22 Feb 2024 09:32: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=sjIzPjHaZGAN%2B7VBHBmDRf%2F5cDUXEPlJNSdlEq0jp%2BJ0tNUJ69suPGVpWKldxtckzkPUi1q9UBig7Q0ldtakFVG5zCDf1sGqU%2FICXE7Pj6ByIcr%2FYkvVpSrPU6k%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=GmjfboZgrH1FCJSNKFUG2Ugsi7oQaDgak%2FwCQ4n1ehUTIIIUc%2FD5Uw46bJvGbh1Cy3%2ByKrvdTomwI3AjRYqx0oFmpeVhMLwPXQocDVs%2B9gJswOYBSlYpapah%2BptHQ3kfgGeXLBIxcB4%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -756,21 +822,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"ad462c9017c4efbbcd62afcf96019993" + - W/"2ffc69d0df8999aebb7e6ad35d4741a1" gitlab-lb: - - haproxy-main-19-lb-gprd + - haproxy-main-54-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '33' - ratelimit-remaining: - - '1966' - ratelimit-reset: - - '1702275913' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:25:13 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -782,16 +838,21 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"6bbbaf4712f747a0493ae99be9734f4b","version":"1"}' + - '{"correlation_id":"057a83104ff1cbbb62ffe55e567dad32","version":"1"}' x-request-id: - - 6bbbaf4712f747a0493ae99be9734f4b + - 057a83104ff1cbbb62ffe55e567dad32 x-runtime: - - '0.585194' + - '0.563546' status: code: 201 message: Created - request: - body: title=%5BSN%232%5D+This+is+the+title+of+the+second+test+issue&description=%0AThis+is+the+body+of+the+second+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2AFri+Oct+13+04%3A01%3A16+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-01%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: '{"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)._\n"}' headers: Accept: - '*/*' @@ -800,40 +861,42 @@ interactions: Connection: - keep-alive Content-Length: - - '725' - Content-Type: - - application/x-www-form-urlencoded + - '591' + Content-type: + - application/json + Cookie: + - _cfuvid=xGaLcDSkJeTOx4zh8AVqlBJ_ryadTs4mIcFDMBqA9dI-1708594354616-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467116,"iid":6087,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142497532,"iid":13143,"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":"2023-12-11T06:24:14.149Z","updated_at":"2023-12-11T06:24:14.149Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6087","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/6087","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6087/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6087/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6087","relative":"#6087","full":"gridhead/protop2g-test#6087"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba4b58d6431ab-BOM + - 85963922cdad94ce-CCU Connection: - keep-alive Content-Length: - - '2152' + - '2192' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:24:14 GMT + - Thu, 22 Feb 2024 09:32: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=WqqANht8tgRxayWTBXECQs0jfc6EBrWrFlh3ZAjfcTRTmXGFg4XuiYZIqRFf93gxJ7boPZG6zu64D89QLsK0Gn%2Bz%2FQd7CqezkruXMGouF5TfkM9F7tOQynpy29E%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=tjV%2Bu4L2RMMLZ4fPO295xr7lV6nSAPNEIdqnxSzEKoA8KThUiQBwCaOIiM5iqS9yoh1JhnHH9nbArzUZ%2B8Q1TPzaVf8fXQ5CqQhb7ePaS02XdNWDP%2BI%2Fy2%2FJsFt6GFp0wgiZ38cJkEA%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -842,21 +905,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"9a4c4c20596c1e5f58d2786519f4328a" + - W/"38e7811dbf74126eebe1f7b275dfc5e8" gitlab-lb: - - haproxy-main-57-lb-gprd + - haproxy-main-27-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '34' - ratelimit-remaining: - - '1966' - ratelimit-reset: - - '1702275914' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:25:14 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -868,16 +921,16 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"aa1ea472d3c184214f53cf73277dcf69","version":"1"}' + - '{"correlation_id":"b5f28439c311779e527af70183354584","version":"1"}' x-request-id: - - aa1ea472d3c184214f53cf73277dcf69 + - b5f28439c311779e527af70183354584 x-runtime: - - '0.562639' + - '0.493841' status: code: 201 message: Created - request: - body: state_event=close + body: null headers: Accept: - '*/*' @@ -885,29 +938,109 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '17' + Content-type: + - application/json + Cookie: + - _cfuvid=xGaLcDSkJeTOx4zh8AVqlBJ_ryadTs4mIcFDMBqA9dI-1708594354616-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13143 + response: + body: + string: '{"id":142497532,"iid":13143,"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}' + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 859639282ab394b9-CCU + Connection: + - keep-alive + Content-Encoding: + - gzip Content-Type: - - application/x-www-form-urlencoded + - application/json + Date: + - Thu, 22 Feb 2024 09:32: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=2DiMX3XLYGfbY9GeEzn135h8fZ3TEtamtm1tztNAdZ167XNBssL7FJ7lQR8ZidKezLNvgppbivsbgpAAk8enykMBy8padJXlgCbiB3TnIrEsdrKwyAGWg%2F0u1BtwvXrHUahi%2BfVnPvU%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/"38e7811dbf74126eebe1f7b275dfc5e8" + 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-content-type-options: + - nosniff + x-frame-options: + - SAMEORIGIN + x-gitlab-meta: + - '{"correlation_id":"56067d23847bac5d7c7ada3b03a2d5da","version":"1"}' + x-request-id: + - 56067d23847bac5d7c7ada3b03a2d5da + x-runtime: + - '0.152821' + 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=xGaLcDSkJeTOx4zh8AVqlBJ_ryadTs4mIcFDMBqA9dI-1708594354616-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: PUT - uri: https://gitlab.com/api/v4/projects/42823949/issues/6087 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13143 response: body: - string: '{"id":139467116,"iid":6087,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142497532,"iid":13143,"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":"2023-12-11T06:24:14.149Z","updated_at":"2023-12-11T06:24:14.861Z","closed_at":"2023-12-11T06:24:14.851Z","closed_by":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/1b6289f6c729f1ba694aa2bc296a7277?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/1b6289f6c729f1ba694aa2bc296a7277?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/6087","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/6087","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6087/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6087/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6087","relative":"#6087","full":"gridhead/protop2g-test#6087"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba4bb4c6a85a8-BOM + - 8596392b7c9b94ce-CCU Connection: - keep-alive Content-Encoding: @@ -915,11 +1048,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:24:15 GMT + - Thu, 22 Feb 2024 09:32: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=tTuyr4MqgeQR9QGvOyRl6qmAgOQVIIVUzXieRudTWQltVljxYK3Xplv2MDS3EuU6d334BfjP7lBuBKlACL2juYuHNMn%2FDOKoxrG9slyNlULEN72RXWkkeVAafu4%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=6Gn9sfCWJSRnVrRWcW%2F%2B4rItrIGfDltnqsBjn4NoEH7XbVYTCRegAbsVaEHOWwKcVPWGgP81agFDoCNSbV3SzFVG1Oga%2FsU8bu5k3%2FZSVLRsI5tBM3d4%2FyOTdFe7wkjk09XdYoj2tZE%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -930,21 +1063,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"ae67632979055b3061f28517460d35db" + - W/"eb22843a56b98374e56c93d2a23d32cc" gitlab-lb: - - haproxy-main-23-lb-gprd + - haproxy-main-10-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '34' - ratelimit-remaining: - - '1965' - ratelimit-reset: - - '1702275915' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:25:15 GMT + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -956,16 +1079,21 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"f556124e0aa52ffd2e4ecd815bbe9361","version":"1"}' + - '{"correlation_id":"e176a43e77824dbb10b2c1faf5004c6e","version":"1"}' x-request-id: - - f556124e0aa52ffd2e4ecd815bbe9361 + - e176a43e77824dbb10b2c1faf5004c6e x-runtime: - - '0.257637' + - '0.342371' status: code: 200 message: OK - request: - body: title=%5BSN%231%5D+This+is+the+title+of+the+first+test+issue&description=%0AThis+is+the+body+of+the+first+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2AFri+Oct+13+03%3A57%3A42+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F03-57%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + 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 + 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)._\n"}' headers: Accept: - '*/*' @@ -974,40 +1102,42 @@ interactions: Connection: - keep-alive Content-Length: - - '723' - Content-Type: - - application/x-www-form-urlencoded + - '589' + Content-type: + - application/json + Cookie: + - _cfuvid=xGaLcDSkJeTOx4zh8AVqlBJ_ryadTs4mIcFDMBqA9dI-1708594354616-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467117,"iid":6088,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142497536,"iid":13144,"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":"2023-12-11T06:24:15.978Z","updated_at":"2023-12-11T06:24:15.978Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6088","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/6088","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6088/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6088/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6088","relative":"#6088","full":"gridhead/protop2g-test#6088"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba4bf1d0ff323-BOM + - 859639337cd794b0-CCU Connection: - keep-alive Content-Length: - - '2150' + - '2190' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:24:16 GMT + - Thu, 22 Feb 2024 09:32: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=PMijNHCFvCDo0%2F6zCP0yVt7tzW3n2sgBT1%2BvbHL5e0M5Iq%2F%2Fxm%2F5EwTkzbid65pM%2BT2MVsPcaaNnRlMpKzWJOeMnvPIqkB4nmk%2BFmzU8jGysFgaim%2BkBVC8gTx0%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=ztJ8qvsRU47lSS23OdQYZpncolm9ZFVtwVQINMz9Lxh0CakJWMjXHfwMeuabPmaUJHr9UHqKRxZvl60f8AQYysVSt9%2F823yG%2BzOj7y9u%2B2ejiUlkmT1u8j6kEQD1BCLTepKaxGJ%2BstM%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1016,21 +1146,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"f3cee0df7cfa9b263753e03ec4abc9b4" + - W/"0eebcb87a9f507771004307e6da709f8" gitlab-lb: - - haproxy-main-17-lb-gprd + - haproxy-main-06-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '35' - ratelimit-remaining: - - '1965' - ratelimit-reset: - - '1702275916' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:25:16 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -1042,11 +1162,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"4a2385b6606a7565b505784b0bc643c8","version":"1"}' + - '{"correlation_id":"8985868daab8db5447f209781dead760","version":"1"}' x-request-id: - - 4a2385b6606a7565b505784b0bc643c8 + - 8985868daab8db5447f209781dead760 x-runtime: - - '0.873075' + - '0.539259' 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 f9626f5..83bfa4e 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-tz80IF7AhNiDNoaSNVme2GMcc'; style-src - 'self' 'nonce-tz80IF7AhNiDNoaSNVme2GMcc'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-dUlAiHMiKtJapHKHwdl0jMlCk'; style-src + 'self' 'nonce-dUlAiHMiKtJapHKHwdl0jMlCk'; 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: - - Mon, 11 Dec 2023 06:25:39 GMT + - Thu, 22 Feb 2024 09:34:20 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -71,21 +71,23 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-type: + - application/json User-Agent: - - python-requests/2.31.0 + - 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":"2023-12-11T05:36:06.620Z","namespace":{"id":13984834,"name":"Akashdeep - Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/eba3058f529195e3b87d3383ada41661?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/eba3058f529195e3b87d3383ada41661?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"},"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","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":5097,"description_html":"","updated_at":"2023-12-11T05:36:06.620Z","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":"REMOVED","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,"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 / 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","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}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 833ba6cf0f29f488-BOM + - 85963b94994c94d0-CCU Connection: - keep-alive Content-Encoding: @@ -93,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:40 GMT + - Thu, 22 Feb 2024 09:34: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=uKMcK5dBWzNI16aY03TVXxiJl8L2yI%2FB1xQgyvs%2B20nKNar7XRTvXBT8RaYCmcqkXJyujVv5ruPclEEygDHCFF%2FqmTXaj%2FJ4gDBpGx80YYw3lTJy1gHHVUzZdc4%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=ZC50ixVV98fKMo8a%2Bt9t2skk9VzVOivBFIuJAembz4bQV81tGijmmkOMXgQG%2B9hZkWNIPQs%2F6aO%2B8KrAsxaTXWYml2a%2BxL1olSxIfnnKAQHjX8VrnD4201oZsbzUMH%2FpY6FsXvVBozo%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -108,21 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"ff8672f29be7f745f5e976cad9627bf4" + - W/"11a7a239926e33ed21d497c4ae1a6d67" gitlab-lb: - - haproxy-main-07-lb-gprd + - haproxy-main-14-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '39' - ratelimit-remaining: - - '1961' - ratelimit-reset: - - '1702276000' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:40 GMT + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -134,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"8afe750102799243dbf2eabd63303f18","version":"1"}' + - '{"correlation_id":"32915f37ce6e0ad17b185b95a3aa0c31","version":"1"}' x-request-id: - - 8afe750102799243dbf2eabd63303f18 + - 32915f37ce6e0ad17b185b95a3aa0c31 x-runtime: - - '0.254620' + - '0.183519' status: code: 200 message: OK @@ -194,14 +186,14 @@ interactions: Content-Length: - '2135' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-RBGDtnkHAD0ySDp5Yy8A264xH'; style-src - 'self' 'nonce-RBGDtnkHAD0ySDp5Yy8A264xH'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-c8NX7gnXRZdhmGYLDLvFpmMJJ'; style-src + 'self' 'nonce-c8NX7gnXRZdhmGYLDLvFpmMJJ'; 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: - - Mon, 11 Dec 2023 06:25:41 GMT + - Thu, 22 Feb 2024 09:34:22 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -223,7 +215,12 @@ interactions: code: 200 message: OK - request: - body: title=%5BSN%231%5D+This+is+the+title+of+the+first+test+issue&description=%0AThis+is+the+body+of+the+first+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2AFri+Oct+13+03%3A57%3A42+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F03-57%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + 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 + 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)._\n"}' headers: Accept: - '*/*' @@ -232,40 +229,42 @@ interactions: Connection: - keep-alive Content-Length: - - '723' - Content-Type: - - application/x-www-form-urlencoded + - '589' + Content-type: + - application/json + Cookie: + - _cfuvid=A6PesXtYvynbaVL6sS64s4at1IwOJV1Lq4nRtN3xJY8-1708594461364-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467162,"iid":6107,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142497616,"iid":13163,"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":"2023-12-11T06:25:42.018Z","updated_at":"2023-12-11T06:25:42.018Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6107","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/6107","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6107/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6107/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6107","relative":"#6107","full":"gridhead/protop2g-test#6107"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba6daa8b085f0-BOM + - 85963b9ec85a93c8-CCU Connection: - keep-alive Content-Length: - - '2150' + - '2190' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:42 GMT + - Thu, 22 Feb 2024 09:34: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=5UWWZM7FeDyluXK3dMd3yaTyrszRRWU%2F581fEvtcsOPd1u2n39w8W79dxn4A%2FDG4ko4dwFIvsy3pKixkmrWmwYQxFlgh%2FojuZ5nZeZkOkT00R4NvZaHMypC8Ml0%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Y6rkJO6Zv2vVpMHuYUpQgxqMuUJd%2BTxRLXP3c%2FAxf008sfxKkjRcudYFdOUiFjHwznPcvx28a9gVZMDNrzuEUU0LzHvkMFqys%2FY%2BaLkKoi4zRJ%2BzDFceldOqgl6l2Cud4dzdgk9POf8%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -274,21 +273,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"91ffbf843aecebf86153797f8ee68d61" + - W/"f8dc27de7cf08052e800d90bcbaf49c7" gitlab-lb: - - haproxy-main-06-lb-gprd + - haproxy-main-30-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '39' - ratelimit-remaining: - - '1961' - ratelimit-reset: - - '1702276002' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:42 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -300,11 +289,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"b5f890d7d8869477e1a48076c7e7a605","version":"1"}' + - '{"correlation_id":"e6ec17183f55981d06c3cc2f2799db1d","version":"1"}' x-request-id: - - b5f890d7d8869477e1a48076c7e7a605 + - e6ec17183f55981d06c3cc2f2799db1d x-runtime: - - '0.538466' + - '1.066283' status: code: 201 message: Created @@ -369,14 +358,14 @@ interactions: Content-Length: - '2784' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-VHscygEHQu65hFVjFWml68Bpj'; style-src - 'self' 'nonce-VHscygEHQu65hFVjFWml68Bpj'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-ZNizBJMkYbjxRjwHZvgvFkbM7'; style-src + 'self' 'nonce-ZNizBJMkYbjxRjwHZvgvFkbM7'; 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: - - Mon, 11 Dec 2023 06:25:43 GMT + - Thu, 22 Feb 2024 09:34:25 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -398,7 +387,12 @@ interactions: code: 200 message: OK - request: - body: title=%5BSN%232%5D+This+is+the+title+of+the+second+test+issue&description=%0AThis+is+the+body+of+the+second+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2AFri+Oct+13+04%3A01%3A16+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-01%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: '{"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)._\n"}' headers: Accept: - '*/*' @@ -407,40 +401,42 @@ interactions: Connection: - keep-alive Content-Length: - - '725' - Content-Type: - - application/x-www-form-urlencoded + - '591' + Content-type: + - application/json + Cookie: + - _cfuvid=A6PesXtYvynbaVL6sS64s4at1IwOJV1Lq4nRtN3xJY8-1708594461364-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467163,"iid":6108,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142497618,"iid":13164,"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":"2023-12-11T06:25:44.045Z","updated_at":"2023-12-11T06:25:44.045Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6108","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/6108","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6108/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6108/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6108","relative":"#6108","full":"gridhead/protop2g-test#6108"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba6e74ebb31f3-BOM + - 85963bb38ff594c2-CCU Connection: - keep-alive Content-Length: - - '2152' + - '2192' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:44 GMT + - Thu, 22 Feb 2024 09:34: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=Z4dwtWtiCQre1xy967kqCBl0XQ6p9rXm8USrXlvDYKTsBJHAvgnm3pT47rffnX1RrCCLGxKtqX2%2FnDuKh7P6vnKDEV6q7dAXWlncfAp%2BoxbZ4zVCJUTEKdGOU6c%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=XDeweN7IR0q%2B5oUFHlIBLk%2FdXtaQGPfNWywWvI2xLgUeXNXv9C4x2oCIqqlGKqE24SwXpReksUjwjTyj5fmsy8We62CMis81FyoELAKfUyTCgKXJF%2BHJ0dbNpz8x3bEgt87sXS0epxA%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -449,21 +445,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"ab262b683b9881ea368b2471702a517e" + - W/"c225256d788214917609813157395460" gitlab-lb: - - haproxy-main-34-lb-gprd + - haproxy-main-07-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '38' - ratelimit-remaining: - - '1961' - ratelimit-reset: - - '1702276004' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:44 GMT + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -475,11 +461,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"3d302705c6a50181e86d56efa1b4aaf8","version":"1"}' + - '{"correlation_id":"4a55bb931bcfeb51ae8ef74640776053","version":"1"}' x-request-id: - - 3d302705c6a50181e86d56efa1b4aaf8 + - 4a55bb931bcfeb51ae8ef74640776053 x-runtime: - - '0.570199' + - '0.712366' 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 86de5ae..5509592 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-D67UDRDZTN2RGAz7s2AoxVDj4'; style-src - 'self' 'nonce-D67UDRDZTN2RGAz7s2AoxVDj4'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-FHiwxZCv6e2dIYuAtq9o6dOyP'; style-src + 'self' 'nonce-FHiwxZCv6e2dIYuAtq9o6dOyP'; 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: - - Mon, 11 Dec 2023 06:25:56 GMT + - Thu, 22 Feb 2024 09:34:37 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -71,21 +71,23 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-type: + - application/json User-Agent: - - python-requests/2.31.0 + - 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":"2023-12-11T05:36:06.620Z","namespace":{"id":13984834,"name":"Akashdeep - Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/eba3058f529195e3b87d3383ada41661?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/eba3058f529195e3b87d3383ada41661?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"},"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","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":5101,"description_html":"","updated_at":"2023-12-11T05:36:06.620Z","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":"REMOVED","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,"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 / 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","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}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 833ba738af83f388-BOM + - 85963c007ef794ce-CCU Connection: - keep-alive Content-Encoding: @@ -93,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:57 GMT + - Thu, 22 Feb 2024 09:34: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=gIknntoDHc3lhrpEYuSSBZHeu6e7ABE0lkWMtofjBvB6bQHcqFleReGr5Q6E6te6hXMxoy8uKVdAdBs4p4lyv1hptkKwf8KeJ6F5wr%2BTt%2BorsEoDJCP4WMOSXrc%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=eJ17%2FWs9KuqX248X4HLxednorCrvB4Jni2peLrjyI9oU0IryA80dZ9YGRO9b4%2FahnpUrH1QdIbyZkpT3hagpXqvu6cExlQsTpmStPJb143HPl07HWRgEABjuaCgNuGmDGGrWP3ep%2ByE%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -108,21 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"5189c4254f51355cdd2c5d6bfc99f45f" + - W/"647b620d81693ff0b72b26766f9d867a" gitlab-lb: - - haproxy-main-16-lb-gprd + - haproxy-main-03-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '36' - ratelimit-remaining: - - '1964' - ratelimit-reset: - - '1702276016' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:56 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -134,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"4de71b3a2c718ba93aa0f9806a9515ac","version":"1"}' + - '{"correlation_id":"39af428b967a8159871901410b2cd24c","version":"1"}' x-request-id: - - 4de71b3a2c718ba93aa0f9806a9515ac + - 39af428b967a8159871901410b2cd24c x-runtime: - - '0.173300' + - '0.176167' status: code: 200 message: OK @@ -194,14 +186,14 @@ interactions: Content-Length: - '2135' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-RwSDOiIozkEXahYCTHcmY8QL1'; style-src - 'self' 'nonce-RwSDOiIozkEXahYCTHcmY8QL1'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-f0kiK97ubqUh86PsakCmhpbzd'; style-src + 'self' 'nonce-f0kiK97ubqUh86PsakCmhpbzd'; 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: - - Mon, 11 Dec 2023 06:25:58 GMT + - Thu, 22 Feb 2024 09:34:39 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -223,7 +215,12 @@ interactions: code: 200 message: OK - request: - body: title=%5BSN%231%5D+This+is+the+title+of+the+first+test+issue&description=%0AThis+is+the+body+of+the+first+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2AFri+Oct+13+03%3A57%3A42+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F03-57%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + 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 + 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)._\n"}' headers: Accept: - '*/*' @@ -232,40 +229,42 @@ interactions: Connection: - keep-alive Content-Length: - - '723' - Content-Type: - - application/x-www-form-urlencoded + - '589' + Content-type: + - application/json + Cookie: + - _cfuvid=vu8WFvYnYBoMr_rXlAqCO4OhQXmFXlp2D2FwLpYVZ7g-1708594478626-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467173,"iid":6111,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142497627,"iid":13167,"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":"2023-12-11T06:25:58.869Z","updated_at":"2023-12-11T06:25:58.869Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6111","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/6111","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6111/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6111/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6111","relative":"#6111","full":"gridhead/protop2g-test#6111"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba7447d4385cf-BOM + - 85963c0a8eeb94b6-CCU Connection: - keep-alive Content-Length: - - '2150' + - '2190' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:59 GMT + - Thu, 22 Feb 2024 09:34: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=p7mMA1v0dX3E4R%2BTv4ur1Ks%2F%2FVXqV%2FOJBj2%2FqhgQyGHlSE13hgfM%2ByIZZt%2BHfoCH95YpT0IJm8GWZy8kX10yk0RC7S4%2FZRTzsB6%2B7FvqF%2Bo2PDpf7fw1xTGZNAU%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Aih0dP4Dy54rYbJHnsYx2wQOFKBsgXJ65Kuk93wikQ8MdSquOJEHPGUDFofoxT2yWd4eYnCYwJT4T6ysSpuIMw0QbfnZZI2MHZ6jNVnL4WLehA7o6YzDhzd%2B0fbSCWJNzhHjHkAc%2FM4%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -274,21 +273,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"62bbd14f411a5ef0f28c1849ce1f414f" + - W/"d9beb1524acaed07532991138f3861eb" gitlab-lb: - - haproxy-main-18-lb-gprd + - haproxy-main-12-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '36' - ratelimit-remaining: - - '1964' - ratelimit-reset: - - '1702276019' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:59 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -300,11 +289,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"813a238b38b08e73d93f1a3ce9b1a492","version":"1"}' + - '{"correlation_id":"c566cedfddb4aa17582d9b5c99b32fbd","version":"1"}' x-request-id: - - 813a238b38b08e73d93f1a3ce9b1a492 + - c566cedfddb4aa17582d9b5c99b32fbd x-runtime: - - '0.466454' + - '0.465253' status: code: 201 message: Created @@ -369,14 +358,14 @@ interactions: Content-Length: - '2784' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-XpA4AnvWQZ7k0VB2X1FPD79UQ'; style-src - 'self' 'nonce-XpA4AnvWQZ7k0VB2X1FPD79UQ'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-TggoWuxDhSrPEn1NxGhqeOuGF'; style-src + 'self' 'nonce-TggoWuxDhSrPEn1NxGhqeOuGF'; 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: - - Mon, 11 Dec 2023 06:26:00 GMT + - Thu, 22 Feb 2024 09:34:41 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -398,7 +387,12 @@ interactions: code: 200 message: OK - request: - body: title=%5BSN%232%5D+This+is+the+title+of+the+second+test+issue&description=%0AThis+is+the+body+of+the+second+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2AFri+Oct+13+04%3A01%3A16+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-01%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: '{"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)._\n"}' headers: Accept: - '*/*' @@ -407,40 +401,42 @@ interactions: Connection: - keep-alive Content-Length: - - '725' - Content-Type: - - application/x-www-form-urlencoded + - '591' + Content-type: + - application/json + Cookie: + - _cfuvid=vu8WFvYnYBoMr_rXlAqCO4OhQXmFXlp2D2FwLpYVZ7g-1708594478626-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467174,"iid":6112,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142497629,"iid":13168,"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":"2023-12-11T06:26:01.431Z","updated_at":"2023-12-11T06:26:01.431Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6112","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/6112","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6112/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6112/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6112","relative":"#6112","full":"gridhead/protop2g-test#6112"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba7521b28f3c5-BOM + - 85963c174be494b0-CCU Connection: - keep-alive Content-Length: - - '2152' + - '2192' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:26:02 GMT + - Thu, 22 Feb 2024 09:34: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=Ruy5cvM25%2FlVBXmeTwoZi99CqSikwzUKe7sB2JwV0QNhK%2B0LSp5CYI9Vkw3HHDSDHhEymn%2FiKqQsUt7OIkBQpx3UtTfxDX1rEF8dAigmNxwV%2F%2FX4VzixKBtzMEM%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=fZwt0PVQwlM0LiHkVV8rkgbk1PvDuzS7pDdz5ppnArAnuwi4La0I8O66a4PpseZe8bOI6pkyTKTrRx2trxONQ8r%2Blj8fu9kWJWgbe4THZgXkHqk9t9%2FRaKLr6kuJveF86px%2Bhpn%2Blcw%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -449,21 +445,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"476eb6ac6e34c509d1e4bc199253c6c0" + - W/"f638fa3fe605f79fd8b205cacfae0522" gitlab-lb: - - haproxy-main-38-lb-gprd + - haproxy-main-14-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '35' - ratelimit-remaining: - - '1964' - ratelimit-reset: - - '1702276022' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:27:02 GMT + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -475,11 +461,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"fbe0fda3de1c41a7be26349bb782fc73","version":"1"}' + - '{"correlation_id":"9bc47bf8a38b3dc8ffeb3edee03d87c9","version":"1"}' x-request-id: - - fbe0fda3de1c41a7be26349bb782fc73 + - 9bc47bf8a38b3dc8ffeb3edee03d87c9 x-runtime: - - '1.280400' + - '0.463261' 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 b02d5b5..385b5fb 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-NUXKIxeFoPSi0rleAPkaFoIqJ'; style-src - 'self' 'nonce-NUXKIxeFoPSi0rleAPkaFoIqJ'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-UlUj2yEWj9N37iYIivlElBgvE'; style-src + 'self' 'nonce-UlUj2yEWj9N37iYIivlElBgvE'; 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: - - Mon, 11 Dec 2023 06:23:08 GMT + - Thu, 22 Feb 2024 09:31:17 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -71,21 +71,23 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-type: + - application/json User-Agent: - - python-requests/2.31.0 + - 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":"2023-12-11T05:36:06.620Z","namespace":{"id":13984834,"name":"Akashdeep - Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/eba3058f529195e3b87d3383ada41661?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/eba3058f529195e3b87d3383ada41661?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"},"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","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":5068,"description_html":"","updated_at":"2023-12-11T05:36:06.620Z","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":"REMOVED","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,"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 / 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","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}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 833ba31e8990f4d6-BOM + - 85963719bdda94b9-CCU Connection: - keep-alive Content-Encoding: @@ -93,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:23:09 GMT + - Thu, 22 Feb 2024 09:31: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=4l4Hza3LB%2F6wZ%2BwiyKfWPAV1ys1lTJxzk8k8OCO6gMOWQLmwy3NNNGpcUfF1lZ%2Fcz%2BZrxLHncWDZ52UX7iIJtiGXnH%2BSwE9XpsSd8NO%2FKsnxKIHG%2B8By2BcGg40%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Xr5LDGiBQcn6Ltl8FwdtEWqauT3vhjXW8xH%2FyyFRsmUEL0N01oKU9xKmYXY5PPgV%2F4WwAQ8hyNxfQoXXu%2B4amTCCdyMNY12%2BmqRNythVdELUfWgCfKwlgCqBZbB0Ie2eNTVWvKk7alY%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -108,21 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"197a648f9318d46cc097fa3795e87b8e" + - W/"af03057aba5d5917b4602d7e1481594d" gitlab-lb: - - haproxy-main-58-lb-gprd + - haproxy-main-26-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '11' - ratelimit-remaining: - - '1988' - ratelimit-reset: - - '1702275849' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:24:09 GMT + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -134,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"9e8d35d79badc81d2ea97c9592f78468","version":"1"}' + - '{"correlation_id":"7d660b44d3eaf904a613ca26a7deb12b","version":"1"}' x-request-id: - - 9e8d35d79badc81d2ea97c9592f78468 + - 7d660b44d3eaf904a613ca26a7deb12b x-runtime: - - '0.425147' + - '0.131053' status: code: 200 message: OK @@ -308,14 +300,14 @@ interactions: Content-Length: - '10774' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-9yaho5sIGilHJXD2pI3WYBoNR'; style-src - 'self' 'nonce-9yaho5sIGilHJXD2pI3WYBoNR'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-BIt7c82ew9zTfqgTcdX21QJib'; style-src + 'self' 'nonce-BIt7c82ew9zTfqgTcdX21QJib'; 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: - - Mon, 11 Dec 2023 06:23:10 GMT + - Thu, 22 Feb 2024 09:31:18 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -502,14 +494,14 @@ interactions: Content-Length: - '10774' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-0lV1B0Jjew3HDoX67y3lloJkF'; style-src - 'self' 'nonce-0lV1B0Jjew3HDoX67y3lloJkF'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-Y2BuXhd9Uo6Wm2jgs5OKSq2eJ'; style-src + 'self' 'nonce-Y2BuXhd9Uo6Wm2jgs5OKSq2eJ'; 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: - - Mon, 11 Dec 2023 06:23:11 GMT + - Thu, 22 Feb 2024 09:31:20 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -531,7 +523,12 @@ interactions: code: 200 message: OK - request: - body: title=%5BSN%234%5D+This+is+the+title+of+the+fourth+test+issue&description=%0AThis+is+the+body+of+the+fourth+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F4%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2ATue+Nov+21+08%3A06%3A56+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Fnov-21-2023%2F08-06%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: '{"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)._\n"}' headers: Accept: - '*/*' @@ -540,40 +537,42 @@ interactions: Connection: - keep-alive Content-Length: - - '725' - Content-Type: - - application/x-www-form-urlencoded + - '591' + Content-type: + - application/json + Cookie: + - _cfuvid=7V9LbZAb0nOKLOtJCTOWPt.yTHLstLmyPCGs4TGA_Fs-1708594277849-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467057,"iid":6071,"project_id":42823949,"title":"[SN#4] This + string: '{"id":142497477,"iid":13127,"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":"2023-12-11T06:23:12.641Z","updated_at":"2023-12-11T06:23:12.641Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6071","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/6071","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6071/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6071/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6071","relative":"#6071","full":"gridhead/protop2g-test#6071"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba3358ad3f3a9-BOM + - 8596372def8894ce-CCU Connection: - keep-alive Content-Length: - - '2152' + - '2192' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:23:12 GMT + - Thu, 22 Feb 2024 09:31: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=ExkCoiWp4%2B7Mfqs511xwbkvXoA1swN4ScnO236DdKCuQjrrC2EbiWvF26hFbKcy6l8rEB9KI5SGKB57hOF67%2BMc4tu5hYrzICSnzrvUxOVtz2b1YDo5ucFjDjHY%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=OlFt6QiyUnEekbeU7WqjpG0qelUzlwLkBO2CYOYAAXZZ9lOc97pO62UFgjqnbq1APGFjbNudYbSvMUTxHSJvzNlNTAYTHFiUuhfUma6ShhiEk4h8fapYBKzznMp6eBTlfFDnm1iG9JA%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -582,21 +581,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"0eebf6c1213fbf78e9de8c2faab386d2" + - W/"33ae50c71ae4f7c36e73b6ca67278b0b" gitlab-lb: - - haproxy-main-16-lb-gprd + - haproxy-main-09-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '12' - ratelimit-remaining: - - '1988' - ratelimit-reset: - - '1702275852' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:24:12 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -608,16 +597,21 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"d0273d0df6101ac63af292eff7f707e6","version":"1"}' + - '{"correlation_id":"b61bd37e980ebe415aed56f8511ebd38","version":"1"}' x-request-id: - - d0273d0df6101ac63af292eff7f707e6 + - b61bd37e980ebe415aed56f8511ebd38 x-runtime: - - '0.452340' + - '0.688467' status: code: 201 message: Created - request: - body: title=%5BSN%233%5D+This+is+the+title+of+the+third+test+issue&description=%0AThis+is+the+body+of+the+third+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F3%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2ATue+Nov+21+08%3A03%3A57+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Fnov-21-2023%2F08-03%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: '{"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)._\n"}' headers: Accept: - '*/*' @@ -626,40 +620,42 @@ interactions: Connection: - keep-alive Content-Length: - - '723' - Content-Type: - - application/x-www-form-urlencoded + - '589' + Content-type: + - application/json + Cookie: + - _cfuvid=7V9LbZAb0nOKLOtJCTOWPt.yTHLstLmyPCGs4TGA_Fs-1708594277849-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467058,"iid":6072,"project_id":42823949,"title":"[SN#3] This + string: '{"id":142497478,"iid":13128,"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":"2023-12-11T06:23:13.516Z","updated_at":"2023-12-11T06:23:13.516Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6072","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/6072","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6072/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6072/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6072","relative":"#6072","full":"gridhead/protop2g-test#6072"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba33aadfe3188-BOM + - 859637349cb194b2-CCU Connection: - keep-alive Content-Length: - - '2150' + - '2190' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:23:14 GMT + - Thu, 22 Feb 2024 09:31: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=Q9s3BPbScDt4%2BgUuCjcPCVEMsnHf5nddxqQppxjQcN0%2FulzhGQtIkiMPH5aDGUScrr4brdkWVRpdyMXD8S0wgHy8gN6Olh4q9r9RINawReOnnZBCfE3TeGyy0K8%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=PiK46YUrHOal5FvNrth0vn3olWpOU8T5lc9uf9ezdE2rWKjaTZpCqU5JTUDMyWJ9mlTTRJRHYHovHQmr4Rg4ptl5XfGBlyRvsBZY5%2FPzY5hInBHp9rr5ficZpiB3XVoBEit17JuvPvs%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -668,21 +664,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"461975f5e7f89be9a6ada191cf6f5dba" + - W/"290dcb053f9f1acb82ea2556e6301589" gitlab-lb: - - haproxy-main-57-lb-gprd + - haproxy-main-39-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '13' - ratelimit-remaining: - - '1987' - ratelimit-reset: - - '1702275853' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:24:13 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -694,16 +680,21 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"4ca0c2097a91476f92cbdafd9ec21cb8","version":"1"}' + - '{"correlation_id":"ae2e14e159544fb1c971ac597c811f5a","version":"1"}' x-request-id: - - 4ca0c2097a91476f92cbdafd9ec21cb8 + - ae2e14e159544fb1c971ac597c811f5a x-runtime: - - '0.804625' + - '0.912854' status: code: 201 message: Created - request: - body: title=%5BSN%232%5D+This+is+the+title+of+the+second+test+issue&description=%0AThis+is+the+body+of+the+second+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2AFri+Oct+13+04%3A01%3A16+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-01%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: '{"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)._\n"}' headers: Accept: - '*/*' @@ -712,40 +703,42 @@ interactions: Connection: - keep-alive Content-Length: - - '725' - Content-Type: - - application/x-www-form-urlencoded + - '591' + Content-type: + - application/json + Cookie: + - _cfuvid=7V9LbZAb0nOKLOtJCTOWPt.yTHLstLmyPCGs4TGA_Fs-1708594277849-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467059,"iid":6073,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142497479,"iid":13129,"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":"2023-12-11T06:23:14.721Z","updated_at":"2023-12-11T06:23:14.721Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6073","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/6073","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6073/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6073/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6073","relative":"#6073","full":"gridhead/protop2g-test#6073"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba3425b1a8534-BOM + - 8596373cac6194b2-CCU Connection: - keep-alive Content-Length: - - '2152' + - '2192' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:23:15 GMT + - Thu, 22 Feb 2024 09:31: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=JrMoi4OrA2Ja52VzdTgB5egUp6hQ8BORTMUrYdi%2FDmAqA9Ly94%2BlHjOKtBSHrJR42fjP%2FhFnrOqm2kSj3Nkonhpy11rcJfQJJQl3FZFOoGnsF8zIZSjGmwtqvRI%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=4abDHX%2FaQpGpgBHsC999YRkwWTZBJUmAZxATaQZQJbopJflvtl3OaKvdQ8Sk0pZPhpYZiTUUg4s6TP3eizuWjCBBYlraNpEW%2BdXsa1riQ9R3Cvwa%2FZWJqvPu99RKFOK1AZd3rAlL3Tg%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -754,21 +747,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"4cccaa02a0288f7c8e75a35707784a62" + - W/"d7a58619bcda130c8d01406d559a1a05" gitlab-lb: - - haproxy-main-23-lb-gprd + - haproxy-main-47-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '13' - ratelimit-remaining: - - '1986' - ratelimit-reset: - - '1702275855' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:24:15 GMT + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -780,16 +763,21 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"741833fd0c63b3b949b3db91203af7f1","version":"1"}' + - '{"correlation_id":"948670f5b45662b196944c3088f9588e","version":"1"}' x-request-id: - - 741833fd0c63b3b949b3db91203af7f1 + - 948670f5b45662b196944c3088f9588e x-runtime: - - '0.938597' + - '0.478307' status: code: 201 message: Created - request: - body: title=%5BSN%231%5D+This+is+the+title+of+the+first+test+issue&description=%0AThis+is+the+body+of+the+first+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2AFri+Oct+13+03%3A57%3A42+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F03-57%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + 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 + 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)._\n"}' headers: Accept: - '*/*' @@ -798,40 +786,42 @@ interactions: Connection: - keep-alive Content-Length: - - '723' - Content-Type: - - application/x-www-form-urlencoded + - '589' + Content-type: + - application/json + Cookie: + - _cfuvid=7V9LbZAb0nOKLOtJCTOWPt.yTHLstLmyPCGs4TGA_Fs-1708594277849-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467060,"iid":6074,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142497480,"iid":13130,"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":"2023-12-11T06:23:16.141Z","updated_at":"2023-12-11T06:23:16.141Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6074","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/6074","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6074/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6074/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6074","relative":"#6074","full":"gridhead/protop2g-test#6074"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba34a2f74f488-BOM + - 85963741ee5f94bc-CCU Connection: - keep-alive Content-Length: - - '2150' + - '2190' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:23:16 GMT + - Thu, 22 Feb 2024 09:31: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=W5iXLaShu50T1i%2BQD0OnVFqEwXPgEQGs4XaCyTpkM5tavonPXwvPz5ML3KvHtaUnV%2BhW1uY4qlw0CnH9CtINhnXSjw0JWTnnaR4vpVpnnFh8BOZAJHyfKPjt9Vw%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=sZNQHfwLia37BLIJzM5K1tOBP22MVDqgV8NXQPT041WaRYvniQ8ykf%2BKnw8bG%2BT6zchM01LtK3IRaIaNaCzJDOpBtJRg8zADagKzndmBIoW7gNGf5lAvxm8F7XL%2BO5zJjIIkAqtMgbc%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -840,21 +830,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"6b1391b48b428c478b694b1b6939e508" + - W/"f07c16bf636d363334680315acb610ff" gitlab-lb: - - haproxy-main-24-lb-gprd + - haproxy-main-12-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '14' - ratelimit-remaining: - - '1986' - ratelimit-reset: - - '1702275856' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:24:16 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -866,11 +846,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"9e4de5c81d0c97b4f21134b38deb9a82","version":"1"}' + - '{"correlation_id":"c1078b5cfe696772ff003721f64b178c","version":"1"}' x-request-id: - - 9e4de5c81d0c97b4f21134b38deb9a82 + - c1078b5cfe696772ff003721f64b178c x-runtime: - - '0.704886' + - '0.652029' 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 50ab5d8..5dabd3d 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-CSQdzzPnD2i6dy8L55Kp7FAYT'; style-src - 'self' 'nonce-CSQdzzPnD2i6dy8L55Kp7FAYT'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-AXpGXJDbYzKjAJtcrqU3Yz5Ze'; style-src + 'self' 'nonce-AXpGXJDbYzKjAJtcrqU3Yz5Ze'; 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: - - Mon, 11 Dec 2023 06:24:40 GMT + - Thu, 22 Feb 2024 09:33:07 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -71,21 +71,23 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-type: + - application/json User-Agent: - - python-requests/2.31.0 + - 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":"2023-12-11T05:36:06.620Z","namespace":{"id":13984834,"name":"Akashdeep - Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/eba3058f529195e3b87d3383ada41661?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/eba3058f529195e3b87d3383ada41661?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"},"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","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":5087,"description_html":"","updated_at":"2023-12-11T05:36:06.620Z","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":"REMOVED","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,"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 / 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","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}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 833ba56399c80e2c-BOM + - 859639ca6e7c94b6-CCU Connection: - keep-alive Content-Encoding: @@ -93,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:24:42 GMT + - Thu, 22 Feb 2024 09:33: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=2oYtHCv5hkjBRwGLT3JQKwVEmfpl9hFVKA3M9ZgVGLYQCF7N2HoVEvLlq3yM%2Fgxz%2FS8enPWMLG%2BMx7wdXqytBVXeZ8PNNqCg3t6mRHpAaR%2BS7t2tRSJFS9FytAY%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=60oFoApXg33XDuGJVdgEGGtqtWfR9xhXHTBvts19nYwY8LTa%2FmYN%2FJ85gjz6vYhwCBP2LWRDGTCBUcgr6l01EUSYbySG9YFprTdKvG5X70VFFcem2uJpuMFv3W%2FRvQ%2FctkphN8zbrsQ%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -108,21 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"96ac8fb36ed4ee3edb1320e3833d42d0" + - W/"1055abc48e165345e96965f85ac67c46" gitlab-lb: - - haproxy-main-53-lb-gprd + - haproxy-main-42-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '33' - ratelimit-remaining: - - '1967' - ratelimit-reset: - - '1702275941' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:25:41 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -134,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"8d1c33d91f440c56482f028ac0e3e5e4","version":"1"}' + - '{"correlation_id":"806e01378bb36d35fdc28191a7a152d0","version":"1"}' x-request-id: - - 8d1c33d91f440c56482f028ac0e3e5e4 + - 806e01378bb36d35fdc28191a7a152d0 x-runtime: - - '0.150595' + - '0.635668' status: code: 200 message: OK @@ -230,14 +222,14 @@ interactions: Content-Length: - '4909' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-cKEyXJCSFcnye6otzGYKhpICD'; style-src - 'self' 'nonce-cKEyXJCSFcnye6otzGYKhpICD'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-Cqpaucyz3rcEq9MqJGmCh6zVF'; style-src + 'self' 'nonce-Cqpaucyz3rcEq9MqJGmCh6zVF'; 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: - - Mon, 11 Dec 2023 06:24:43 GMT + - Thu, 22 Feb 2024 09:33:09 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -346,14 +338,14 @@ interactions: Content-Length: - '4909' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-LJqnmfhB0obU5r4xuPIRTsRYn'; style-src - 'self' 'nonce-LJqnmfhB0obU5r4xuPIRTsRYn'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-lK5CzeuKYkXhNAWVz3hZtP7gK'; style-src + 'self' 'nonce-lK5CzeuKYkXhNAWVz3hZtP7gK'; 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: - - Mon, 11 Dec 2023 06:24:45 GMT + - Thu, 22 Feb 2024 09:33:10 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -375,7 +367,12 @@ interactions: code: 200 message: OK - request: - body: title=%5BSN%233%5D+This+is+the+title+of+the+third+test+issue&description=%0AThis+is+the+body+of+the+third+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F3%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2ATue+Nov+21+08%3A03%3A57+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Fnov-21-2023%2F08-03%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: '{"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)._\n"}' headers: Accept: - '*/*' @@ -384,40 +381,42 @@ interactions: Connection: - keep-alive Content-Length: - - '723' - Content-Type: - - application/x-www-form-urlencoded + - '589' + Content-type: + - application/json + Cookie: + - _cfuvid=JgIpr82XjV0Abka0uTU6XwYyAJmglt4Syixp_jBu.KQ-1708594388716-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467130,"iid":6097,"project_id":42823949,"title":"[SN#3] This + string: '{"id":142497567,"iid":13153,"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":"2023-12-11T06:24:45.935Z","updated_at":"2023-12-11T06:24:45.935Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6097","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/6097","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6097/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6097/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6097","relative":"#6097","full":"gridhead/protop2g-test#6097"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba57c9894f29e-BOM + - 859639df8ae693c2-CCU Connection: - keep-alive Content-Length: - - '2150' + - '2190' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:24:46 GMT + - Thu, 22 Feb 2024 09:33: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=tbEl0GLda5VH5iZ2kuI6M0w8z5bBAaZrDsClt1iVroKxWHqYZYBBjMcO8CZ5GKjEa%2Bg0217aC4WjeN7cUBARjQ3DHV7AtwmkdBk9MCvg%2FN%2FCpH3tvtg9cC5x2Us%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=wrUjhM6lhhyz6c98Bq12oyqEsb0cbAZXK5jtlWdCyReq7Rfg%2FCCLfd5LE4veHUNrJrVY9ldzugks6jjWC3agAX6gQ3EHmosxI0iEDKEDM3uobt%2BVmE0jZkjN2gbP94pVOg8B9iYWiMo%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -426,21 +425,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"90936ba1f3840e7536744164a87d26ce" + - W/"f81a8dcb05ae263804d63ed8d083f9a5" gitlab-lb: - - haproxy-main-05-lb-gprd + - haproxy-main-01-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '31' - ratelimit-remaining: - - '1968' - ratelimit-reset: - - '1702275946' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:25:46 GMT + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -452,16 +441,16 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"63902a339b025cf44cfd3263b92e5d93","version":"1"}' + - '{"correlation_id":"071d3f5567a96ed3a1fb819b5581ef72","version":"1"}' x-request-id: - - 63902a339b025cf44cfd3263b92e5d93 + - 071d3f5567a96ed3a1fb819b5581ef72 x-runtime: - - '0.472470' + - '1.168982' status: code: 201 message: Created - request: - body: body=%0AThis+is+the+first+comment+under+the+third+test+issue%0A%0A_This+comment+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F3%23comment-885229%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+under%0A%5Bthis%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F3%29+issue+ticket+on+a+Pagure+repository%2C+%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+on%0A%5B%2A%2ATue+Nov+21+08%3A04%3A40+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Fnov-21-2023%2F08-04%29._%0A%0A_This+comment+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: null headers: Accept: - '*/*' @@ -469,39 +458,125 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '766' + Content-type: + - application/json + Cookie: + - _cfuvid=JgIpr82XjV0Abka0uTU6XwYyAJmglt4Syixp_jBu.KQ-1708594388716-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13153 + response: + body: + string: '{"id":142497567,"iid":13153,"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}' + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 859639eaacbd94c4-CCU + Connection: + - keep-alive + Content-Encoding: + - gzip Content-Type: - - application/x-www-form-urlencoded + - application/json + Date: + - Thu, 22 Feb 2024 09:33: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=HliqDc8PtvIN7j6ofaYr4m%2BLeV9ZhxR%2FHOzAZPbQ%2B8C%2BPeUT%2BtyGVkCFObkvgdmBVpCLrqaeBWSViTgxuvo8dwyC4w3dP%2BrHudDFvox1LH1deuR1FF0Gv%2Fzesuidipjta5zM6wejMl4%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/"f81a8dcb05ae263804d63ed8d083f9a5" + gitlab-lb: + - haproxy-main-47-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":"a2a4b02634f766bd44ac1cf25f5861e9","version":"1"}' + x-request-id: + - a2a4b02634f766bd44ac1cf25f5861e9 + x-runtime: + - '0.129591' + status: + code: 200 + message: OK +- request: + body: '{"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)._\n"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '610' + Content-type: + - application/json + Cookie: + - _cfuvid=JgIpr82XjV0Abka0uTU6XwYyAJmglt4Syixp_jBu.KQ-1708594388716-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/6097/notes + uri: https://gitlab.com/api/v4/projects/42823949/issues/13153/discussions response: body: - string: '{"id":1687901164,"type":null,"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) + string: '{"id":"2ebd9b3f5cde00405dcbf26f62f6d03dca8a2d30","individual_note":false,"notes":[{"id":1784524840,"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/1b6289f6c729f1ba694aa2bc296a7277?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2023-12-11T06:24:46.925Z","updated_at":"2023-12-11T06:24:46.925Z","system":false,"noteable_id":139467130,"noteable_type":"Issue","project_id":42823949,"resolvable":false,"confidential":false,"internal":false,"noteable_iid":6097,"commands_changes":{}}' + 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":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba581ac816ed0-BOM + - 859639edbf3794c4-CCU Connection: - keep-alive Content-Length: - - '1245' + - '1428' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:24:47 GMT + - Thu, 22 Feb 2024 09:33: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=v7xs8j9%2FUl86GXZFx8yfJ4Z6YqQ1gVuqkN4kPLnVfTlxWPMGfvBbjC0PZJQEXER3MpTHFgsaAysYeghNbDCE8IHoi9YAGoB0qLx1H%2BR6DeH6RaYVpqiwaACfrck%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=deEhyeUOaN6LEGneGnF%2BANn3X7RTke7N6Y%2BeLBgYbO0vtEkGusSJfAt8gX8HrntfME8LGDUT4LC7BGD%2BeFY84n%2BQcDN9BHteNpjN7lbkHGBO3%2FOoZXJ3nIEq7f91Z87pu88k4%2Bvhpbg%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -510,21 +585,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"8e44dc96f3b5814ac6cb09d6f7ee0590" + - W/"2ed6bfc68d20880c1c5eb464a5b480f0" gitlab-lb: - - haproxy-main-51-lb-gprd + - haproxy-main-06-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '32' - ratelimit-remaining: - - '1968' - ratelimit-reset: - - '1702275947' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:25:47 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -536,16 +601,16 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"369df83b479c8bf62393c1b2503306ba","version":"1"}' + - '{"correlation_id":"4ebf690e2d6a066db5acaf3c33f1152a","version":"1"}' x-request-id: - - 369df83b479c8bf62393c1b2503306ba + - 4ebf690e2d6a066db5acaf3c33f1152a x-runtime: - - '0.636614' + - '0.920911' status: code: 201 message: Created - request: - body: body=%0AThis+is+the+second+comment+under+the+third+test+issue%0A%0A_This+comment+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F3%23comment-885230%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+under%0A%5Bthis%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F3%29+issue+ticket+on+a+Pagure+repository%2C+%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+on%0A%5B%2A%2ATue+Nov+21+08%3A04%3A52+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Fnov-21-2023%2F08-04%29._%0A%0A_This+comment+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: null headers: Accept: - '*/*' @@ -553,39 +618,125 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '767' + Content-type: + - application/json + Cookie: + - _cfuvid=JgIpr82XjV0Abka0uTU6XwYyAJmglt4Syixp_jBu.KQ-1708594388716-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13153 + response: + body: + string: '{"id":142497567,"iid":13153,"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}' + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 859639f5fd3b94bc-CCU + Connection: + - keep-alive + Content-Encoding: + - gzip Content-Type: - - application/x-www-form-urlencoded + - application/json + Date: + - Thu, 22 Feb 2024 09:33: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=k35vP0C3GZ9oB%2FXoluPVEsnlq131bI2bfiHrkdzohPmx7YdIpqQAni8Mt%2BwpbIfH9efj7jWFr1d1kqjQsvSbk%2BI12yzSIlQ4RlSmPozUvWmjznLJvYNzcL%2BdD3H%2B%2FNZyp2hvibXETho%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/"823f761973e834ecad1e7b704de8c0c1" + gitlab-lb: + - haproxy-main-19-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":"8bb3fa75cf76bc6b164af175279af75a","version":"1"}' + x-request-id: + - 8bb3fa75cf76bc6b164af175279af75a + x-runtime: + - '0.184914' + status: + code: 200 + message: OK +- request: + body: '{"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)._\n"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '611' + Content-type: + - application/json + Cookie: + - _cfuvid=JgIpr82XjV0Abka0uTU6XwYyAJmglt4Syixp_jBu.KQ-1708594388716-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/6097/notes + uri: https://gitlab.com/api/v4/projects/42823949/issues/13153/discussions response: body: - string: '{"id":1687901176,"type":null,"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) + string: '{"id":"0fb17aaa0e6b288f3bde7da9a050cecffcf3b550","individual_note":false,"notes":[{"id":1784524899,"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/1b6289f6c729f1ba694aa2bc296a7277?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2023-12-11T06:24:47.813Z","updated_at":"2023-12-11T06:24:47.813Z","system":false,"noteable_id":139467130,"noteable_type":"Issue","project_id":42823949,"resolvable":false,"confidential":false,"internal":false,"noteable_iid":6097,"commands_changes":{}}' + 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":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba5881e2085bf-BOM + - 859639f95ea894b9-CCU Connection: - keep-alive Content-Length: - - '1246' + - '1429' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:24:48 GMT + - Thu, 22 Feb 2024 09:33: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=Wp14rC76J1TWZGCtUVPG03e0ZSMGPOSWuUh3neE6q646Bj%2B5PDa4aKxJ%2B1X6PwM8Y8q6VsqMu49tAUDtnjmSiSLAmjZHezi3Ri1zuIqT8PJ4%2F6kVILFYMRUs0lI%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=sP4JEDmyTJrnb1VcDzHKvn003v2fhd%2FPSv8jZUAmrf8azSPuws6fg9qMk60sSGMK42XneGQAPM9yu1bS8cUTMPlIYGcvoeDLc49XH%2Fw6psa%2B39QXTX4NZPu9Gj7eVnivczteLEPrPT4%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -594,21 +745,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"8b339aa43930b885bf3a17c3eb94e428" + - W/"142bca099330b2067c01da0ac0de391f" gitlab-lb: - - haproxy-main-48-lb-gprd + - haproxy-main-27-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '32' - ratelimit-remaining: - - '1968' - ratelimit-reset: - - '1702275947' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:25:47 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -620,16 +761,21 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"ea3d8cc6ece71b34edceb38761ca0a9b","version":"1"}' + - '{"correlation_id":"1f600650aed5bb3526716829ce85b205","version":"1"}' x-request-id: - - ea3d8cc6ece71b34edceb38761ca0a9b + - 1f600650aed5bb3526716829ce85b205 x-runtime: - - '0.417884' + - '1.138455' status: code: 201 message: Created - request: - body: title=%5BSN%231%5D+This+is+the+title+of+the+first+test+issue&description=%0AThis+is+the+body+of+the+first+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2AFri+Oct+13+03%3A57%3A42+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F03-57%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + 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 + 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)._\n"}' headers: Accept: - '*/*' @@ -638,40 +784,42 @@ interactions: Connection: - keep-alive Content-Length: - - '723' - Content-Type: - - application/x-www-form-urlencoded + - '589' + Content-type: + - application/json + Cookie: + - _cfuvid=JgIpr82XjV0Abka0uTU6XwYyAJmglt4Syixp_jBu.KQ-1708594388716-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467132,"iid":6098,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142497572,"iid":13154,"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":"2023-12-11T06:24:48.680Z","updated_at":"2023-12-11T06:24:48.680Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6098","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/6098","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6098/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6098/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6098","relative":"#6098","full":"gridhead/protop2g-test#6098"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba58d3f77860e-BOM + - 85963a031f8894b9-CCU Connection: - keep-alive Content-Length: - - '2150' + - '2190' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:24:49 GMT + - Thu, 22 Feb 2024 09:33: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=VP3R9LOaoipw7nSFyActlRAtidmZcM8nhr57q1a63igwO4hpr5uZuM25iL1sS%2BQjlc%2BsAK%2BYJzbT65k0msGSg4F6CIrWnpK%2FRpHh0z7s26wwGLkpDNk%2BbH0SIS4%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=qUNS6gXje5gNzbiA%2FE4FGMY%2BS0ISzRJz7cnQJ5f0RHJ8s4%2FOXo8A2B1ElA1Wa6YXX%2FdBFpveUe58%2FUeS9HgABY4ZIVwO6EVkhKcQZVAZlk8XdxTAGRgZwfesZj6lShDT%2F3iCXaOc7sg%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -680,21 +828,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"53ac93819fc1f036f86c723159c3a0b7" + - W/"a7442efdffeeec7665854d6ff04a7134" gitlab-lb: - - haproxy-main-55-lb-gprd + - haproxy-main-52-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '33' - ratelimit-remaining: - - '1967' - ratelimit-reset: - - '1702275948' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:25:48 GMT + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -706,16 +844,16 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"8ed9f5b6bbbfd8349f6586ff650a630b","version":"1"}' + - '{"correlation_id":"8a7858f51a4d25d413808f05c18e2903","version":"1"}' x-request-id: - - 8ed9f5b6bbbfd8349f6586ff650a630b + - 8a7858f51a4d25d413808f05c18e2903 x-runtime: - - '0.589983' + - '0.473669' status: code: 201 message: Created - request: - body: body=%0A%2A%2AMetadata+Update+from+%26t0xic0der%2A%2A%3A%0A-+Issue+tagged+with%3A+aaaa%2C+bbbb%0A%0A_This+comment+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%23comment-878471%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+under%0A%5Bthis%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%29+issue+ticket+on+a+Pagure+repository%2C+%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+on%0A%5B%2A%2AFri+Oct+13+04%3A01%3A39+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-01%29._%0A%0A_This+comment+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: null headers: Accept: - '*/*' @@ -723,39 +861,125 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '800' + Content-type: + - application/json + Cookie: + - _cfuvid=JgIpr82XjV0Abka0uTU6XwYyAJmglt4Syixp_jBu.KQ-1708594388716-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13154 + response: + body: + string: '{"id":142497572,"iid":13154,"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}' + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 85963a088ced94b0-CCU + Connection: + - keep-alive + Content-Encoding: + - gzip Content-Type: - - application/x-www-form-urlencoded + - application/json + Date: + - Thu, 22 Feb 2024 09:33: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}' + Server: + - cloudflare + Set-Cookie: '' + Transfer-Encoding: + - chunked + cache-control: + - max-age=0, private, must-revalidate + content-security-policy: + - default-src 'none' + etag: + - W/"a7442efdffeeec7665854d6ff04a7134" + gitlab-lb: + - haproxy-main-60-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":"801245fe810b5bcc56d8081241e1cdc2","version":"1"}' + x-request-id: + - 801245fe810b5bcc56d8081241e1cdc2 + x-runtime: + - '0.131598' + status: + code: 200 + message: OK +- request: + body: '{"body": "\n**Metadata Update from &t0xic0der**:\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)._\n"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-type: + - application/json + Cookie: + - _cfuvid=JgIpr82XjV0Abka0uTU6XwYyAJmglt4Syixp_jBu.KQ-1708594388716-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/6098/notes + uri: https://gitlab.com/api/v4/projects/42823949/issues/13154/discussions response: body: - string: '{"id":1687901245,"type":null,"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) + string: '{"id":"f36e5ded28dfd3bdc00bf43ba4af305238901790","individual_note":false,"notes":[{"id":1784524959,"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/1b6289f6c729f1ba694aa2bc296a7277?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2023-12-11T06:24:49.728Z","updated_at":"2023-12-11T06:24:49.728Z","system":false,"noteable_id":139467132,"noteable_type":"Issue","project_id":42823949,"resolvable":false,"confidential":false,"internal":false,"noteable_iid":6098,"commands_changes":{}}' + 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":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba593ae38f401-BOM + - 85963a0baf6894ce-CCU Connection: - keep-alive Content-Length: - - '1267' + - '1450' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:24:49 GMT + - Thu, 22 Feb 2024 09:33: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=vsf%2FT32GdUHPBUSWSM0hWTif84k8mUyKXvDGyF%2FeYx4%2FNg7c3rNHi7ZpcLJaEBMEd2qeoMcDST5pBazdqq%2FUc8UzxGAZ9PNamWjl6xvxdfnzgq4YmLTMNl8BxoQ%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=AS8pAtc8NWbB%2BPGk2UvuMwi28LQv%2F7Pc8HIwwAhA2D1dSwoxaGz%2B8vQ5DdvnwKUiUtZsz7NcCorUYNRjNTRMhuBHFK1Fk0LE9ytOTtQWFz1Ksw%2B99pAKglnNUbab%2FNwulhEzDdNSeBM%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -764,21 +988,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"b9822fff5aef145fa68fd7a14f1c0af4" + - W/"110356eef9650baa750d43673de55ea5" gitlab-lb: - - haproxy-main-34-lb-gprd + - haproxy-main-22-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '33' - ratelimit-remaining: - - '1967' - ratelimit-reset: - - '1702275949' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:25:49 GMT + - gke-cny-api referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -790,16 +1004,16 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"f577ab836b7975ebf1d508813159a3af","version":"1"}' + - '{"correlation_id":"0ba999219468b067a3fee4d1d4a0cb13","version":"1"}' x-request-id: - - f577ab836b7975ebf1d508813159a3af + - 0ba999219468b067a3fee4d1d4a0cb13 x-runtime: - - '0.365545' + - '0.473164' status: code: 201 message: Created - request: - body: body=%0AThis+is+the+first+comment+under+the+first+test+issue%0A%0A_This+comment+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%23comment-878473%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+under%0A%5Bthis%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%29+issue+ticket+on+a+Pagure+repository%2C+%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+on%0A%5B%2A%2AFri+Oct+13+04%3A04%3A40+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-04%29._%0A%0A_This+comment+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: null headers: Accept: - '*/*' @@ -807,39 +1021,125 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '766' + Content-type: + - application/json + Cookie: + - _cfuvid=JgIpr82XjV0Abka0uTU6XwYyAJmglt4Syixp_jBu.KQ-1708594388716-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13154 + response: + body: + string: '{"id":142497572,"iid":13154,"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}' + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 85963a10ed7094d0-CCU + Connection: + - keep-alive + Content-Encoding: + - gzip Content-Type: - - application/x-www-form-urlencoded + - application/json + Date: + - Thu, 22 Feb 2024 09:33: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}' + Server: + - cloudflare + Set-Cookie: '' + Transfer-Encoding: + - chunked + cache-control: + - max-age=0, private, must-revalidate + content-security-policy: + - default-src 'none' + etag: + - W/"dfd0b6fc5ecfa0b03ae79a33c97f820f" + gitlab-lb: + - haproxy-main-48-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":"21d64a48989b39da4f0a706e65f15ab3","version":"1"}' + x-request-id: + - 21d64a48989b39da4f0a706e65f15ab3 + x-runtime: + - '0.166772' + status: + code: 200 + message: OK +- request: + body: '{"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)._\n"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '610' + Content-type: + - application/json + Cookie: + - _cfuvid=JgIpr82XjV0Abka0uTU6XwYyAJmglt4Syixp_jBu.KQ-1708594388716-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/6098/notes + uri: https://gitlab.com/api/v4/projects/42823949/issues/13154/discussions response: body: - string: '{"id":1687901253,"type":null,"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) + string: '{"id":"02aee0ebe3f38f0f0d2d73f3eca6aa8ca71fff98","individual_note":false,"notes":[{"id":1784524990,"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/1b6289f6c729f1ba694aa2bc296a7277?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2023-12-11T06:24:50.468Z","updated_at":"2023-12-11T06:24:50.468Z","system":false,"noteable_id":139467132,"noteable_type":"Issue","project_id":42823949,"resolvable":false,"confidential":false,"internal":false,"noteable_iid":6098,"commands_changes":{}}' + 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":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba598bcef2e8f-BOM + - 85963a14580f94b0-CCU Connection: - keep-alive Content-Length: - - '1245' + - '1428' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:24:50 GMT + - Thu, 22 Feb 2024 09:33: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=%2FvRHEbxrqr773O4KYbXcrL8go63n%2BDeuXEu3C0Su5D3unQDs2e%2FMMJ%2B4H%2Bj10Zg2JBrPKVmTslPm4oxlxBncrQgulEOidOq1oau4kkSdwEP8e1uKfKNK6%2FD%2Bj1g%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=BP6WtessU5HyfIq7Mt4d7x56PkXVmzxJTXCqoMdsCvcEgs0x9U4BO6TDerDAKWgXXW9kiyKQDafaXx%2BBdq5wvn6KVcRUDSjVuSk%2BC7YlIaPAj2BpQ87H%2F1ZuNl8PHubrbnRgt2AAPMQ%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -848,21 +1148,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"68165ad43c56ea6450eb17fbe6104c84" + - W/"7d1f3dfe35856bf84fda77f29baced29" gitlab-lb: - - haproxy-main-23-lb-gprd + - haproxy-main-53-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '34' - ratelimit-remaining: - - '1966' - ratelimit-reset: - - '1702275950' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:25:50 GMT + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -874,16 +1164,16 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"04d1bcca4b22908d51753687c91328f8","version":"1"}' + - '{"correlation_id":"d7c7cb867480f405184652eb686280e6","version":"1"}' x-request-id: - - 04d1bcca4b22908d51753687c91328f8 + - d7c7cb867480f405184652eb686280e6 x-runtime: - - '0.683054' + - '0.402158' status: code: 201 message: Created - request: - body: body=%0AThis+is+the+second+comment+under+the+first+test+issue%0A%0A_This+comment+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%23comment-878474%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+under%0A%5Bthis%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%29+issue+ticket+on+a+Pagure+repository%2C+%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+on%0A%5B%2A%2AFri+Oct+13+04%3A05%3A24+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-05%29._%0A%0A_This+comment+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: null headers: Accept: - '*/*' @@ -891,39 +1181,125 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '767' + Content-type: + - application/json + Cookie: + - _cfuvid=JgIpr82XjV0Abka0uTU6XwYyAJmglt4Syixp_jBu.KQ-1708594388716-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13154 + response: + body: + string: '{"id":142497572,"iid":13154,"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}' + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 85963a19589794bf-CCU + Connection: + - keep-alive + Content-Encoding: + - gzip Content-Type: - - application/x-www-form-urlencoded + - application/json + Date: + - Thu, 22 Feb 2024 09:33: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=I79nmfDSI%2B8RzJUiXpt%2FdnWC2A5QK8i8SJvD6XlTzLCGCNsu%2F7wm7AZUoBlPbNOzuscee72xs6sVNoULzM1dRtEstVRDpiIyHocwcEDCh06M3Yp%2BeAt%2FXqKId%2F8nY4Wxj0BaKKX%2Bzcs%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/"00f1ddfdc28ab8a1441e5105f740ac68" + gitlab-lb: + - haproxy-main-39-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":"c0e837a58547d6d85fed36b93653503d","version":"1"}' + x-request-id: + - c0e837a58547d6d85fed36b93653503d + x-runtime: + - '0.200241' + status: + code: 200 + message: OK +- request: + body: '{"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)._\n"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '611' + Content-type: + - application/json + Cookie: + - _cfuvid=JgIpr82XjV0Abka0uTU6XwYyAJmglt4Syixp_jBu.KQ-1708594388716-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/6098/notes + uri: https://gitlab.com/api/v4/projects/42823949/issues/13154/discussions response: body: - string: '{"id":1687901272,"type":null,"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) + string: '{"id":"0ae3cd1e78ce114c9a91f10086d389813fef4b1e","individual_note":false,"notes":[{"id":1784525031,"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/1b6289f6c729f1ba694aa2bc296a7277?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2023-12-11T06:24:51.576Z","updated_at":"2023-12-11T06:24:51.576Z","system":false,"noteable_id":139467132,"noteable_type":"Issue","project_id":42823949,"resolvable":false,"confidential":false,"internal":false,"noteable_iid":6098,"commands_changes":{}}' + 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":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba59f2ac60e2c-BOM + - 85963a1ce80794b0-CCU Connection: - keep-alive Content-Length: - - '1246' + - '1429' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:24:51 GMT + - Thu, 22 Feb 2024 09:33: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=B%2FdjooXJpx3A9sRdeSN66opud6X1gi5K9ufWv6dIkt2bMSyvoJo9WBbSQ04t0SVsWx3Tr6%2FYdHDpXQOZ9DJHM6B56MLscbctugwiYiX8LCvbl3jXnQFsxXNlaus%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=8tG9CJzxrWONUjXFHitE5775%2FhTTV5u2gk4FrvpYyWqEvlqRqe2nl%2FLSC97gDw81zj0oHgSseLPkboQWlbVp6eKNostC%2FLBE8uf1VZuNzACboc3W%2BgsUHbP%2FpIL%2FV78sk7KldTk6OU4%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -932,21 +1308,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"b46aa8e3b84f35f953c67e7bd5585a91" + - W/"42a70afc16fe34aba1e0a520b74617d8" gitlab-lb: - - haproxy-main-58-lb-gprd + - haproxy-main-55-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '34' - ratelimit-remaining: - - '1966' - ratelimit-reset: - - '1702275951' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:25:51 GMT + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -958,11 +1324,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"51d8379838974768cd06cf4a53228297","version":"1"}' + - '{"correlation_id":"ece06ec8f002e59110925e130f7a5fbf","version":"1"}' x-request-id: - - 51d8379838974768cd06cf4a53228297 + - ece06ec8f002e59110925e130f7a5fbf x-runtime: - - '0.554487' + - '0.454746' 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 f48c34f..6b4069c 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-w1rqmtcdqkWG9MAiXlLFiArgY'; style-src - 'self' 'nonce-w1rqmtcdqkWG9MAiXlLFiArgY'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-v0zn76pInejLrzp0q5uPIpbjJ'; style-src + 'self' 'nonce-v0zn76pInejLrzp0q5uPIpbjJ'; 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: - - Mon, 11 Dec 2023 06:24:17 GMT + - Thu, 22 Feb 2024 09:32:45 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -71,21 +71,23 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-type: + - application/json User-Agent: - - python-requests/2.31.0 + - 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":"2023-12-11T05:36:06.620Z","namespace":{"id":13984834,"name":"Akashdeep - Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/eba3058f529195e3b87d3383ada41661?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/eba3058f529195e3b87d3383ada41661?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"},"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","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":5079,"description_html":"","updated_at":"2023-12-11T05:36:06.620Z","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":"REMOVED","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,"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 / 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","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}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 833ba4cfee92f28e-BOM + - 8596393fc9de94c4-CCU Connection: - keep-alive Content-Encoding: @@ -93,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:24:18 GMT + - Thu, 22 Feb 2024 09:32: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=7%2Fl8AJWWYL1%2BTQh9FdS7pb3VcXmlR8ZyUGvN18uzYCe5ScdFP1fdmB1B0HEfxevQdTGOrvN418iXCj6S7L2qDhaCzgGf%2FgIN0%2BbLqzlIFPjX4FDdrYJu6hVedYc%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=qA0pmlqVi3LqBB6Ldch9vtF7ttrsUpERqLCf8GfIihks0WOagBzxDgh5xF%2FgZw7wnhBS1%2Fba0rl%2BOc3%2FWpaUEM9IPf6aDZQnrwkucrORSsmbNcmy8hi4UbFFYIdZi2L1Ov%2F7JmMByL8%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -108,21 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"6fcdebd4832bacc75a39b78857b97987" + - W/"c87577be73250fa368591c6fd6025eec" gitlab-lb: - - haproxy-main-50-lb-gprd + - haproxy-main-14-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '35' - ratelimit-remaining: - - '1965' - ratelimit-reset: - - '1702275918' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:25:18 GMT + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -134,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"03f36dfb717393a62819489f111345c0","version":"1"}' + - '{"correlation_id":"9c149a002d85ae8cc50b62b81cca24e9","version":"1"}' x-request-id: - - 03f36dfb717393a62819489f111345c0 + - 9c149a002d85ae8cc50b62b81cca24e9 x-runtime: - - '0.114475' + - '0.259581' status: code: 200 message: OK @@ -230,14 +222,14 @@ interactions: Content-Length: - '4909' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-Ai1Xti6yOQBje39QhB1joOaGR'; style-src - 'self' 'nonce-Ai1Xti6yOQBje39QhB1joOaGR'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-9hwdNSRZKQr2uAOUYzSVPeiMn'; style-src + 'self' 'nonce-9hwdNSRZKQr2uAOUYzSVPeiMn'; 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: - - Mon, 11 Dec 2023 06:24:19 GMT + - Thu, 22 Feb 2024 09:32:46 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -346,14 +338,14 @@ interactions: Content-Length: - '4909' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-lQ4JX0JZeoqj0cdtszVyoPE8T'; style-src - 'self' 'nonce-lQ4JX0JZeoqj0cdtszVyoPE8T'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-k2l05NinY7cXrRaf0L92iutEy'; style-src + 'self' 'nonce-k2l05NinY7cXrRaf0L92iutEy'; 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: - - Mon, 11 Dec 2023 06:24:20 GMT + - Thu, 22 Feb 2024 09:32:47 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -375,7 +367,13 @@ interactions: code: 200 message: OK - request: - body: title=%5BSN%233%5D+This+is+the+title+of+the+third+test+issue&description=%0AThis+is+the+body+of+the+third+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F3%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2ATue+Nov+21+08%3A03%3A57+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Fnov-21-2023%2F08-03%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A&labels=eeee%2Cffff + body: '{"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)._\n", + "labels": ["eeee", "ffff"]}' headers: Accept: - '*/*' @@ -384,40 +382,42 @@ interactions: Connection: - keep-alive Content-Length: - - '742' - Content-Type: - - application/x-www-form-urlencoded + - '617' + Content-type: + - application/json + Cookie: + - _cfuvid=tfMow0JodBJsiiTzg9gQJB5nSpf6cI4Nc_tJuZit9hI-1708594366005-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467119,"iid":6089,"project_id":42823949,"title":"[SN#3] This + string: '{"id":142497541,"iid":13145,"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":"2023-12-11T06:24:21.392Z","updated_at":"2023-12-11T06:24:21.392Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6089","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/6089","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6089/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6089/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6089","relative":"#6089","full":"gridhead/protop2g-test#6089"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba4e30ef02e5e-BOM + - 85963952281994b9-CCU Connection: - keep-alive Content-Length: - - '2163' + - '2203' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:24:21 GMT + - Thu, 22 Feb 2024 09:32: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=uKPeZZzrm5jlfjADh165%2FcCe6jRx8Je6IWqYhSUNn3z%2FeZJmqBFPeX6ZXxSF%2FKTN0SghD29VN7Yq7Os%2FuMDAviUQXpEJ8K%2BsHXY88j%2FUEqDILx6Quxc%2ByVSq8Xc%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=torab4T1qtNujeAf2ME7Vty8R%2FodnWAwHA63C2NaPp86tBAMSeFLMeYmev7EelwBfDTTzNRZzTgq%2BiYsFK9A3crhFD2JH%2FNcqa5Ca3NDNjpclE202Y5lM9a84qYgxgV9AmL5C7lc07s%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -426,21 +426,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"e8b73fb620e383a60eda79dc2fb56dbf" + - W/"6be33bda01cdee62390c413a492132e5" gitlab-lb: - - haproxy-main-15-lb-gprd + - haproxy-main-27-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '34' - ratelimit-remaining: - - '1966' - ratelimit-reset: - - '1702275921' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:25:21 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -452,16 +442,22 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"c744e818f0965a5f6ba85f5167111536","version":"1"}' + - '{"correlation_id":"bd65cd1624ac979797993c52ce7fd07e","version":"1"}' x-request-id: - - c744e818f0965a5f6ba85f5167111536 + - bd65cd1624ac979797993c52ce7fd07e x-runtime: - - '0.586387' + - '0.598775' status: code: 201 message: Created - request: - body: title=%5BSN%231%5D+This+is+the+title+of+the+first+test+issue&description=%0AThis+is+the+body+of+the+first+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2AFri+Oct+13+03%3A57%3A42+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F03-57%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A&labels=aaaa%2Cbbbb + 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 + 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)._\n", + "labels": ["aaaa", "bbbb"]}' headers: Accept: - '*/*' @@ -470,40 +466,42 @@ interactions: Connection: - keep-alive Content-Length: - - '742' - Content-Type: - - application/x-www-form-urlencoded + - '617' + Content-type: + - application/json + Cookie: + - _cfuvid=tfMow0JodBJsiiTzg9gQJB5nSpf6cI4Nc_tJuZit9hI-1708594366005-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467120,"iid":6090,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142497543,"iid":13146,"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":"2023-12-11T06:24:22.433Z","updated_at":"2023-12-11T06:24:22.433Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6090","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/6090","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6090/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6090/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6090","relative":"#6090","full":"gridhead/protop2g-test#6090"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba4e95e68f2ce-BOM + - 859639585fc993cb-CCU Connection: - keep-alive Content-Length: - - '2163' + - '2203' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:24:23 GMT + - Thu, 22 Feb 2024 09:32: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=SprfpG9xzF7BtYVF3lyHnsTolQgBA6gmYbuXFgXET485IUvbcrAUolyfmUlO6oXq%2B%2BJvz1ozi820rcpxekAN9H7gOuq8%2Bs0YtRpf0wdceyxbsaSGxTWGiviTl5c%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=N7OOZqZzNvaINlB7nPpRI1god5eFwbw0J4Bx5NAbqw1%2BV5uBswWTtT6gg9kiSV08fIHtWLSHO6WCRXEJu5cUUyXpVu%2FmBL0UuiB3Yy6dhS5HTGhwahGj3S%2F6IaF3j3B6zxWI1w4X11k%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -512,21 +510,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"e31fc7b9b5cd4cff6aae19b7eb2785af" + - W/"2df979fcf38a9e8357bb605cf9c1acd8" gitlab-lb: - - haproxy-main-19-lb-gprd + - haproxy-main-48-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '34' - ratelimit-remaining: - - '1966' - ratelimit-reset: - - '1702275923' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:25:23 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -538,11 +526,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"9132af0bb1ae6b10ec8d37a1005da84b","version":"1"}' + - '{"correlation_id":"f7110105df72d31e98ceeacd80854649","version":"1"}' x-request-id: - - 9132af0bb1ae6b10ec8d37a1005da84b + - f7110105df72d31e98ceeacd80854649 x-runtime: - - '0.970306' + - '0.570832' 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 b9018a9..547c88b 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-iPtdlhBklOlKDSSZjHlPzTaaO'; style-src - 'self' 'nonce-iPtdlhBklOlKDSSZjHlPzTaaO'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-IN8RXQZNUVjarX5NYgW3hUf88'; style-src + 'self' 'nonce-IN8RXQZNUVjarX5NYgW3hUf88'; 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: - - Mon, 11 Dec 2023 06:23:35 GMT + - Thu, 22 Feb 2024 09:31:46 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -71,21 +71,23 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-type: + - application/json User-Agent: - - python-requests/2.31.0 + - 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":"2023-12-11T05:36:06.620Z","namespace":{"id":13984834,"name":"Akashdeep - Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/eba3058f529195e3b87d3383ada41661?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/eba3058f529195e3b87d3383ada41661?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"},"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","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":5074,"description_html":"","updated_at":"2023-12-11T05:36:06.620Z","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":"REMOVED","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,"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 / 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","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}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 833ba3c77e4384dd-BOM + - 859637d47c8494ce-CCU Connection: - keep-alive Content-Encoding: @@ -93,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:23:36 GMT + - Thu, 22 Feb 2024 09:31: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=asTbceapVwVkWEVfiaRNGWKFfnqt1fMa5G26rpG7kcgHP68%2FmCxKRfDZwLRKh5bgqqBDW0nQWL%2FGEDuMjb1pr1KSS%2FQ%2B2TjuR2NLOUQBKaN%2BuBTD5gmIwk4A7hY%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=KaWoL44b9vEN2k6kdhVLtVIMFWtztO8%2Bm1o3upcEONQ1uVjpwqIFjHay1ZZHZfrQ1y3eDpS5PGYooUz81%2ByJKWrja%2FakaaxyvJ2FrsF8vDPjRqlO95JvyzopFFlDnMbW055rUKweONk%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -108,21 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"712e9972deba9d88f04e3b24c8c7cd9b" + - W/"ef61ac7cb49ff5fb0f8a709a79e588fd" gitlab-lb: - - haproxy-main-41-lb-gprd + - haproxy-main-57-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '21' - ratelimit-remaining: - - '1979' - ratelimit-reset: - - '1702275875' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:24:35 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -134,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"14fec04c4b8eddbfcb850cb376e94271","version":"1"}' + - '{"correlation_id":"48d3f71164ee56c94c671c8ca778f46f","version":"1"}' x-request-id: - - 14fec04c4b8eddbfcb850cb376e94271 + - 48d3f71164ee56c94c671c8ca778f46f x-runtime: - - '0.135961' + - '0.174578' status: code: 200 message: OK @@ -230,14 +222,14 @@ interactions: Content-Length: - '4909' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-Trdozeen76IPH9DAlARrlUC3l'; style-src - 'self' 'nonce-Trdozeen76IPH9DAlARrlUC3l'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-1zZAaXD3M9MfshqkU6NVcYqr6'; style-src + 'self' 'nonce-1zZAaXD3M9MfshqkU6NVcYqr6'; 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: - - Mon, 11 Dec 2023 06:23:37 GMT + - Thu, 22 Feb 2024 09:31:48 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -346,14 +338,14 @@ interactions: Content-Length: - '4909' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-roDHTMftwD57ujYVK1OsfF0SQ'; style-src - 'self' 'nonce-roDHTMftwD57ujYVK1OsfF0SQ'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-TXcsE1jtqPLVpVaKmZZay3SoE'; style-src + 'self' 'nonce-TXcsE1jtqPLVpVaKmZZay3SoE'; 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: - - Mon, 11 Dec 2023 06:23:38 GMT + - Thu, 22 Feb 2024 09:31:49 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -375,7 +367,13 @@ interactions: code: 200 message: OK - request: - body: title=%5BSN%233%5D+This+is+the+title+of+the+third+test+issue&description=%0AThis+is+the+body+of+the+third+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F3%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2ATue+Nov+21+08%3A03%3A57+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Fnov-21-2023%2F08-03%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A&confidential=True + body: '{"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)._\n", + "confidential": true}' headers: Accept: - '*/*' @@ -384,40 +382,42 @@ interactions: Connection: - keep-alive Content-Length: - - '741' - Content-Type: - - application/x-www-form-urlencoded + - '611' + Content-type: + - application/json + Cookie: + - _cfuvid=9ucJttwiYoqW1q.w4v_iluPiHtojQPzYOrCa5oKhdEU-1708594307753-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467074,"iid":6079,"project_id":42823949,"title":"[SN#3] This + string: '{"id":142497494,"iid":13135,"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":"2023-12-11T06:23:39.201Z","updated_at":"2023-12-11T06:23:39.201Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6079","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/6079","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6079/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6079/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6079","relative":"#6079","full":"gridhead/protop2g-test#6079"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba3db4bd61bd8-BOM + - 859637f3ffe594ce-CCU Connection: - keep-alive Content-Length: - - '2149' + - '2189' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:23:39 GMT + - Thu, 22 Feb 2024 09:31: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=TDsujjdQA%2FQhtjE9sOqJYLuoJuw3kgyaabCJE%2BLcQroWorK95N5apAoWL6VrIIH4MCx2koRYpw2pDOYwpbZIp9k%2Bsd1y1BVHZvp7EsaMdghPHzy%2Bk7ypCVjzW4o%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=HipyOMzAq9UoKedva6D%2B9tVolaKf7OBC181%2FgfbFbRNM2asbRWhPVKdjH2ZyXuXt9P4qdmVcWP0N2J%2FvQbFcocaMSMxhxGaHcH1cGOBkH83AKdZrcmhYD0bjZu8KfT2SxS6tD1JOvnU%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -426,21 +426,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"1943deb5b9c2787eedd20672a2326956" + - W/"2d2e25e6edf7b1f9fd45331ae35afa02" gitlab-lb: - - haproxy-main-40-lb-gprd + - haproxy-main-06-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '21' - ratelimit-remaining: - - '1979' - ratelimit-reset: - - '1702275879' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:24:39 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -452,16 +442,22 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"1c6a3da795e41524d3a9a547337fb32e","version":"1"}' + - '{"correlation_id":"92fd32476298176ae1892021eaef85a0","version":"1"}' x-request-id: - - 1c6a3da795e41524d3a9a547337fb32e + - 92fd32476298176ae1892021eaef85a0 x-runtime: - - '0.520298' + - '0.578483' status: code: 201 message: Created - request: - body: title=%5BSN%231%5D+This+is+the+title+of+the+first+test+issue&description=%0AThis+is+the+body+of+the+first+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2AFri+Oct+13+03%3A57%3A42+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F03-57%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A&confidential=False + 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 + 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)._\n", + "confidential": false}' headers: Accept: - '*/*' @@ -470,40 +466,42 @@ interactions: Connection: - keep-alive Content-Length: - - '742' - Content-Type: - - application/x-www-form-urlencoded + - '612' + Content-type: + - application/json + Cookie: + - _cfuvid=9ucJttwiYoqW1q.w4v_iluPiHtojQPzYOrCa5oKhdEU-1708594307753-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467075,"iid":6080,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142497496,"iid":13136,"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":"2023-12-11T06:23:40.159Z","updated_at":"2023-12-11T06:23:40.159Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6080","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/6080","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6080/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6080/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6080","relative":"#6080","full":"gridhead/protop2g-test#6080"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba3e11d05f2f7-BOM + - 859637fa0ad494b6-CCU Connection: - keep-alive Content-Length: - - '2150' + - '2190' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:23:40 GMT + - Thu, 22 Feb 2024 09:31: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=RgNpsGsCtD9YX5PenDzmg50czaF47NrRyoMtgfFElJYyVda0BuLHyM11fgN1P7yLE8%2FWv4d5pZf%2FL38sIjNJq4HRuv7fwoiobuCLNFq7%2F3yniMYp%2BkMwd6yNjTs%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=WXie77oQ3Xi44zQHCnObcE5dhRLPNtp1TqM2DOhlt1zFHdjwtFf3lqY6W3d0aBkWbm9au9omtG%2Bijbi8oeK4cVDnLaESM4exTNcIj8gCMFkv7mfQ8DD6k6zhFZEeFgZAlc4ld6zpwaE%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -512,21 +510,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"3ebfc38b712211e441d96ef75d3eef30" + - W/"3e7cbf24d88391b5c0d3f36c7908fa65" gitlab-lb: - - haproxy-main-02-lb-gprd + - haproxy-main-53-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '22' - ratelimit-remaining: - - '1978' - ratelimit-reset: - - '1702275880' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:24:40 GMT + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -538,11 +526,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"2f25950a453ae7415c8d7adc97eb83dc","version":"1"}' + - '{"correlation_id":"af7e1e118d3edfa20e5e7edd93fc6e77","version":"1"}' x-request-id: - - 2f25950a453ae7415c8d7adc97eb83dc + - af7e1e118d3edfa20e5e7edd93fc6e77 x-runtime: - - '0.503746' + - '1.434644' 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 f5e843a..d4c8157 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-eI9ZtiPrtT6bUHLj6C6H0pzLP'; style-src - 'self' 'nonce-eI9ZtiPrtT6bUHLj6C6H0pzLP'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-ftfmuHGdHn1SL7waILCgwa1qe'; style-src + 'self' 'nonce-ftfmuHGdHn1SL7waILCgwa1qe'; 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: - - Mon, 11 Dec 2023 06:23:19 GMT + - Thu, 22 Feb 2024 09:31:28 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -71,21 +71,23 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-type: + - application/json User-Agent: - - python-requests/2.31.0 + - 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":"2023-12-11T05:36:06.620Z","namespace":{"id":13984834,"name":"Akashdeep - Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/eba3058f529195e3b87d3383ada41661?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/eba3058f529195e3b87d3383ada41661?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"},"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","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":5072,"description_html":"","updated_at":"2023-12-11T05:36:06.620Z","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":"REMOVED","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,"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 / 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","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}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 833ba368ffd7f405-BOM + - 859637606db694be-CCU Connection: - keep-alive Content-Encoding: @@ -93,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:23:20 GMT + - Thu, 22 Feb 2024 09:31:29 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=O16bPYaFlfPZ%2B8fdYTjzwThU2XUZcwSCRzrTQOBL%2BKZYzydPD%2BexvN8jNNFPXVjru0AUtzOygTBflr9c6eT0GfCoN1J%2BdYbOZW16e2BrLTixtQJZrJSg1UoIMZA%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=4YTqn5viExwgMMQbsnU1%2FBTjTHnKy4uhedvAkrK4u0edB9%2FJg8mQ3k2%2FrkXs%2FJCJqMk8k%2Bfgmt2dSjx5dcQZD2rqnIxLw8Pvq7aDBnmXq5Lss1SeADZhASckAqUaiXblm%2F1VeM5czw0%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -108,21 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"e6f4e8ffc32353ade7f692adfb920b27" + - W/"4f33c25044f1f3604c80a7c457d09d8f" gitlab-lb: - - haproxy-main-05-lb-gprd + - haproxy-main-41-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '16' - ratelimit-remaining: - - '1984' - ratelimit-reset: - - '1702275860' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:24:20 GMT + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -134,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"3b6cb25f0b06bc0c0fb56aad347ac525","version":"1"}' + - '{"correlation_id":"ab89c3f6fd1e43a60dc2bb3939c16ad5","version":"1"}' x-request-id: - - 3b6cb25f0b06bc0c0fb56aad347ac525 + - ab89c3f6fd1e43a60dc2bb3939c16ad5 x-runtime: - - '0.099396' + - '0.312629' status: code: 200 message: OK @@ -230,14 +222,14 @@ interactions: Content-Length: - '4909' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-pv9XjvDOJZ0WoE7jkn4R6lHUi'; style-src - 'self' 'nonce-pv9XjvDOJZ0WoE7jkn4R6lHUi'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-Kvj7aggAyn4w1alq6TzUSAmfT'; style-src + 'self' 'nonce-Kvj7aggAyn4w1alq6TzUSAmfT'; 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: - - Mon, 11 Dec 2023 06:23:21 GMT + - Thu, 22 Feb 2024 09:31:30 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -346,14 +338,14 @@ interactions: Content-Length: - '4909' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-WJT99qHpNWLSnZWEhEKVJdHdn'; style-src - 'self' 'nonce-WJT99qHpNWLSnZWEhEKVJdHdn'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-alvQ06nxAp3dbHaucNp9wL1iV'; style-src + 'self' 'nonce-alvQ06nxAp3dbHaucNp9wL1iV'; 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: - - Mon, 11 Dec 2023 06:23:23 GMT + - Thu, 22 Feb 2024 09:31:31 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -375,7 +367,12 @@ interactions: code: 200 message: OK - request: - body: title=%5BSN%233%5D+This+is+the+title+of+the+third+test+issue&description=%0AThis+is+the+body+of+the+third+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F3%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2ATue+Nov+21+08%3A03%3A57+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Fnov-21-2023%2F08-03%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: '{"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)._\n"}' headers: Accept: - '*/*' @@ -384,40 +381,42 @@ interactions: Connection: - keep-alive Content-Length: - - '723' - Content-Type: - - application/x-www-form-urlencoded + - '589' + Content-type: + - application/json + Cookie: + - _cfuvid=N9QYJrUbXTEURThkIFCQo0aQdLWfoZi1aepbEI_snE0-1708594289318-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467066,"iid":6075,"project_id":42823949,"title":"[SN#3] This + string: '{"id":142497481,"iid":13131,"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":"2023-12-11T06:23:24.032Z","updated_at":"2023-12-11T06:23:24.032Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6075","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/6075","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6075/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6075/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6075","relative":"#6075","full":"gridhead/protop2g-test#6075"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba37cac4bf367-BOM + - 859637722e4794b9-CCU Connection: - keep-alive Content-Length: - - '2150' + - '2190' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:23:24 GMT + - Thu, 22 Feb 2024 09:31: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=OiZmU7hwcGk9peZGduPGmSpv0pzmTOlJdHS8i%2FvEj45xy21tJzLRlQs4Tf52FSHFAYqOwFmNHdU%2BAKX3FLYm2IsPDcEgbdnMB7BLz6MqneeYcx4N3xM2exmbOok%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=c%2BH2TRJwiB09iYdSI6yw6i%2FQyrMXgNMpfsHZwsRSoowN0U%2BeYtH8jKz2DfGRylMgtnMzS9%2FftuZhpVphhuQc3sv0MiS76thqgUN6Ld2yjfVbihQe1acPvP7GU1%2FvpLSnWkZJ1hJ%2F6tc%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -426,21 +425,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"aa0638b5f189e5f6cb3e36b4373fe3cc" + - W/"e962c88d6986ba29f4dd6d7764f046ce" gitlab-lb: - - haproxy-main-34-lb-gprd + - haproxy-main-52-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '16' - ratelimit-remaining: - - '1984' - ratelimit-reset: - - '1702275864' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:24:24 GMT + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -452,16 +441,21 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"b7faad15378e08c4e4006930772d8c76","version":"1"}' + - '{"correlation_id":"2fef490746a904a0d44c4f6c06874614","version":"1"}' x-request-id: - - b7faad15378e08c4e4006930772d8c76 + - 2fef490746a904a0d44c4f6c06874614 x-runtime: - - '0.439413' + - '0.471624' status: code: 201 message: Created - request: - body: title=%5BSN%231%5D+This+is+the+title+of+the+first+test+issue&description=%0AThis+is+the+body+of+the+first+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2AFri+Oct+13+03%3A57%3A42+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F03-57%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + 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 + 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)._\n"}' headers: Accept: - '*/*' @@ -470,40 +464,42 @@ interactions: Connection: - keep-alive Content-Length: - - '723' - Content-Type: - - application/x-www-form-urlencoded + - '589' + Content-type: + - application/json + Cookie: + - _cfuvid=N9QYJrUbXTEURThkIFCQo0aQdLWfoZi1aepbEI_snE0-1708594289318-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467068,"iid":6076,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142497482,"iid":13132,"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":"2023-12-11T06:23:24.852Z","updated_at":"2023-12-11T06:23:24.852Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6076","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/6076","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6076/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6076/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6076","relative":"#6076","full":"gridhead/protop2g-test#6076"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba381bad7f567-BOM + - 85963777780b93c5-CCU Connection: - keep-alive Content-Length: - - '2150' + - '2190' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:23:25 GMT + - Thu, 22 Feb 2024 09:31: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=qku1299%2FIApTegkyBNff1gkmHiluuQpYXPF2F9EM%2BEWrojRZLD49o6LiqeEDvqWEat7N%2B4161JSw9yFwtT7SfBjZan9kPSh5sJ60v6ZtE%2FRO%2F3PRY%2BIPZLMpKzQ%3D"}],"group":"cf-nel","max_age":604800}' + - '{"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}' Server: - cloudflare Set-Cookie: '' @@ -512,21 +508,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"febf743a81745dff53d75882970d0564" + - W/"a831ef8900143709a5eb5808213c95f7" gitlab-lb: - - haproxy-main-23-lb-gprd + - haproxy-main-12-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '17' - ratelimit-remaining: - - '1983' - ratelimit-reset: - - '1702275865' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:24:25 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -538,11 +524,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"6fcd3b28f455328afcdf5b44cdabda53","version":"1"}' + - '{"correlation_id":"5cf85614187f4799c6f6b049e0c834bb","version":"1"}' x-request-id: - - 6fcd3b28f455328afcdf5b44cdabda53 + - 5cf85614187f4799c6f6b049e0c834bb x-runtime: - - '0.523721' + - '2.692927' 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 bc3d6d6..6764565 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-PcraRTYafk6frYrt53cnvqaEI'; style-src - 'self' 'nonce-PcraRTYafk6frYrt53cnvqaEI'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-hzgnP2sjjoCzhRklmggY3HoLJ'; style-src + 'self' 'nonce-hzgnP2sjjoCzhRklmggY3HoLJ'; 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: - - Mon, 11 Dec 2023 06:25:29 GMT + - Thu, 22 Feb 2024 09:34:09 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -71,21 +71,23 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-type: + - application/json User-Agent: - - python-requests/2.31.0 + - 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":"2023-12-11T05:36:06.620Z","namespace":{"id":13984834,"name":"Akashdeep - Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/eba3058f529195e3b87d3383ada41661?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/eba3058f529195e3b87d3383ada41661?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"},"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","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":5095,"description_html":"","updated_at":"2023-12-11T05:36:06.620Z","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":"REMOVED","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,"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 / 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","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}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 833ba68fb8dc85fa-BOM + - 85963b4feeff93c8-CCU Connection: - keep-alive Content-Encoding: @@ -93,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:30 GMT + - Thu, 22 Feb 2024 09:34: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=ISPF%2FjderKZOF18zVRpshtkh4%2BJl6bJcQ%2F%2Bocp%2FkH3iQ7NN5iRDoOAmpdHcHST0GlRBT7katay1AaKEcd5aQwisux%2FpfFu8btxi9gArV8nKrB5WMJOy1%2Bz1SQhs%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=ibxs4VDkd1Pc1GtFHW4QshFzy4z0s3C5l%2BrfyHz7Z7V9afuflGHjkJABuqPSN5gRwWOSNwmoW%2FfJlcWIRhyAQ6vmymD4Yxh1JU%2BEVnGW%2FpGkxzFv28uyXj2lAVr3UCZu%2FKRa7nTrZmc%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -108,21 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"41a7faabcf0863682034db696dc7e9c9" + - W/"84ac2c4bcfcb1da74d0f845329f0e69a" gitlab-lb: - - haproxy-main-07-lb-gprd + - haproxy-main-23-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '41' - ratelimit-remaining: - - '1959' - ratelimit-reset: - - '1702275989' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:29 GMT + - gke-cny-api referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -134,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"2736c73bbe589c2a33824e229f1fbf0e","version":"1"}' + - '{"correlation_id":"9158f1f1a3eb0dc7e35ac7631bf611e9","version":"1"}' x-request-id: - - 2736c73bbe589c2a33824e229f1fbf0e + - 9158f1f1a3eb0dc7e35ac7631bf611e9 x-runtime: - - '0.215040' + - '0.652112' status: code: 200 message: OK @@ -194,14 +186,14 @@ interactions: Content-Length: - '2135' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-rmNCQboy09rWl60FA0CQDzIPP'; style-src - 'self' 'nonce-rmNCQboy09rWl60FA0CQDzIPP'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-KUUWKwtcCSr0imnheAJopfZCo'; style-src + 'self' 'nonce-KUUWKwtcCSr0imnheAJopfZCo'; 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: - - Mon, 11 Dec 2023 06:25:31 GMT + - Thu, 22 Feb 2024 09:34:11 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -223,7 +215,12 @@ interactions: code: 200 message: OK - request: - body: title=%5BSN%231%5D+This+is+the+title+of+the+first+test+issue&description=%0AThis+is+the+body+of+the+first+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2AFri+Oct+13+03%3A57%3A42+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F03-57%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + 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 + 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)._\n"}' headers: Accept: - '*/*' @@ -232,40 +229,42 @@ interactions: Connection: - keep-alive Content-Length: - - '723' - Content-Type: - - application/x-www-form-urlencoded + - '589' + Content-type: + - application/json + Cookie: + - _cfuvid=_erDEmLbd_RHwLQgPav5pMLqexYFgC99ziLjA_SlJms-1708594450837-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467158,"iid":6105,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142497610,"iid":13161,"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":"2023-12-11T06:25:31.948Z","updated_at":"2023-12-11T06:25:31.948Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6105","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/6105","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6105/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6105/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6105","relative":"#6105","full":"gridhead/protop2g-test#6105"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba69c09f4851c-BOM + - 85963b5c8f7494b6-CCU Connection: - keep-alive Content-Length: - - '2150' + - '2190' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:32 GMT + - Thu, 22 Feb 2024 09:34: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=hOTLHmVrhpyII1LmleWGRqh96SJ%2BBNzpAykaWpkT0g23xlOoqaiNX5TfWSjnqNL2QndEHIRbCD1iKSsxU1NgDIPfntUJz%2BtL%2FV1dvS7i6u2d%2F8uUcqzCk%2BCnZfc%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=WA4oeFHI5Tj%2BFvCxlI6Ie4CQsykc8QppToY%2FIf2QFaYyWffMF4yGo1clbEUDzJLiGuKOSOuZyRMPIU%2BUEGiF%2BkaAcXJ6dxv3MGntcrQWMPXvEUirXEvXB5ByKj4F9VAnkk963WP%2Blcw%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -274,21 +273,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"d4a72a43b8732f184c36f3c39ab135c3" + - W/"4152f11e7a895c78ff846f7ec1fcb64e" gitlab-lb: - - haproxy-main-18-lb-gprd + - haproxy-main-06-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '40' - ratelimit-remaining: - - '1959' - ratelimit-reset: - - '1702275992' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:32 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -300,11 +289,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"ec1ae9680485729467d51bb356f6f439","version":"1"}' + - '{"correlation_id":"6adbe7ce74e2327ebb17c7de019e8c0b","version":"1"}' x-request-id: - - ec1ae9680485729467d51bb356f6f439 + - 6adbe7ce74e2327ebb17c7de019e8c0b x-runtime: - - '0.777272' + - '0.967318' status: code: 201 message: Created @@ -369,14 +358,14 @@ interactions: Content-Length: - '2784' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-d3pqDs8X3CNKsPdHm4GuDyToj'; style-src - 'self' 'nonce-d3pqDs8X3CNKsPdHm4GuDyToj'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-NY1Sj3Xv5z5aesx658FnKlPDS'; style-src + 'self' 'nonce-NY1Sj3Xv5z5aesx658FnKlPDS'; 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: - - Mon, 11 Dec 2023 06:25:33 GMT + - Thu, 22 Feb 2024 09:34:14 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 f5d2d45..3d29888 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-0uvq9A8J4NyRRIeGHPGRTqo3a'; style-src - 'self' 'nonce-0uvq9A8J4NyRRIeGHPGRTqo3a'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-7cAdDjkKHTkSb3LxUoYuocRls'; style-src + 'self' 'nonce-7cAdDjkKHTkSb3LxUoYuocRls'; 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: - - Mon, 11 Dec 2023 06:25:45 GMT + - Thu, 22 Feb 2024 09:34:27 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -71,21 +71,23 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-type: + - application/json User-Agent: - - python-requests/2.31.0 + - 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":"2023-12-11T05:36:06.620Z","namespace":{"id":13984834,"name":"Akashdeep - Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/eba3058f529195e3b87d3383ada41661?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/eba3058f529195e3b87d3383ada41661?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"},"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","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":5099,"description_html":"","updated_at":"2023-12-11T05:36:06.620Z","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":"REMOVED","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,"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 / 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","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}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 833ba6f80f0d29ea-BOM + - 85963bc08ccf93cb-CCU Connection: - keep-alive Content-Encoding: @@ -93,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:46 GMT + - Thu, 22 Feb 2024 09:34: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=8Mu78wLCORrHDdp7z3mbGknglMhcwMaVwBVaa9th0%2B%2BlVRnYMdAOIfHmcgR%2BwcC%2BeW12GOKpQRqU1agdM%2FOOmWuY58H1dn4%2BJ%2FkRZ6QNxmJHCkUJB3kmvWCGbaA%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=d6xzSP2wAn%2Fp%2BjlIys3ZzF%2FVV1ClHErp12ecs7efbW%2FDsRm%2FvthLojq2Whk6d6UAaDGphJlqi7DbTqq7xg1xpi5C1viGKBOjwk2UWxOmoPsUVe5CFeIfPtqf76Eo8iXFXcJ3bWZCSUs%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -108,21 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"569c802ac572f8bcbd05a17185c51b1d" + - W/"0f091f2692a856b9bd68e6fdf015daf7" gitlab-lb: - - haproxy-main-34-lb-gprd + - haproxy-main-50-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '38' - ratelimit-remaining: - - '1962' - ratelimit-reset: - - '1702276006' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:46 GMT + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -134,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"0b7867208f28ea40314aa5bc9c3bbdc4","version":"1"}' + - '{"correlation_id":"e1182dc920d2e4824ac80b34c3b174fb","version":"1"}' x-request-id: - - 0b7867208f28ea40314aa5bc9c3bbdc4 + - e1182dc920d2e4824ac80b34c3b174fb x-runtime: - - '0.168596' + - '0.303001' status: code: 200 message: OK @@ -194,14 +186,14 @@ interactions: Content-Length: - '2135' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-sBUgHk4o2ZVxXHGI7XWGry7Xj'; style-src - 'self' 'nonce-sBUgHk4o2ZVxXHGI7XWGry7Xj'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-zHUfFEXGA5JcR8c8dYhzH81yM'; style-src + 'self' 'nonce-zHUfFEXGA5JcR8c8dYhzH81yM'; 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: - - Mon, 11 Dec 2023 06:25:47 GMT + - Thu, 22 Feb 2024 09:34:29 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -223,7 +215,12 @@ interactions: code: 200 message: OK - request: - body: title=%5BSN%231%5D+This+is+the+title+of+the+first+test+issue&description=%0AThis+is+the+body+of+the+first+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2AFri+Oct+13+03%3A57%3A42+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F03-57%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + 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 + 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)._\n"}' headers: Accept: - '*/*' @@ -232,40 +229,42 @@ interactions: Connection: - keep-alive Content-Length: - - '723' - Content-Type: - - application/x-www-form-urlencoded + - '589' + Content-type: + - application/json + Cookie: + - _cfuvid=lSqFtrBGI8.Ij0cf7MDjoQmp_bJ77xbqdw0DM1HF.Vs-1708594468528-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467166,"iid":6109,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142497622,"iid":13165,"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":"2023-12-11T06:25:48.629Z","updated_at":"2023-12-11T06:25:48.629Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6109","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/6109","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6109/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6109/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6109","relative":"#6109","full":"gridhead/protop2g-test#6109"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba7044ba285ee-BOM + - 85963bcb2cd194b2-CCU Connection: - keep-alive Content-Length: - - '2150' + - '2190' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:48 GMT + - Thu, 22 Feb 2024 09:34: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=Bfr3XasZQh6XiaJJfIScSKwAr1nnl3p6n8%2BjCTtCyhEAMPVruVv4r1PPXN995bMS9IbjO3zf0YFkKNFgQvqdy1IMdTM2SLA06hIg7n9BjxIjVI0PWWA2kbcTddo%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=EUeffiHi6dhuCxM0CwCYijyagM7wHf0bQrCyJxvFd4KKGSooOUVOVCEzCAlG3AVduNb5ipv0bKUm6gqT1vvLTLf1w8%2FmtlWqf77siGN6nY2gGnEG7ew%2FF0OdGh2MjMAdDO7UylbRNog%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -274,21 +273,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"84576da65073aca5dc24aab79ff58c92" + - W/"1b3df244caf837bb9cb18c89861dc3b5" gitlab-lb: - - haproxy-main-17-lb-gprd + - haproxy-main-38-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '38' - ratelimit-remaining: - - '1962' - ratelimit-reset: - - '1702276008' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:48 GMT + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -300,11 +289,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"c84846b111920072551883665c5d2273","version":"1"}' + - '{"correlation_id":"dde881221c4fdad94bc769319411577f","version":"1"}' x-request-id: - - c84846b111920072551883665c5d2273 + - dde881221c4fdad94bc769319411577f x-runtime: - - '0.498503' + - '0.682477' status: code: 201 message: Created @@ -369,14 +358,14 @@ interactions: Content-Length: - '2784' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-MWB38JBLIplLxVKeLaLZNOwXD'; style-src - 'self' 'nonce-MWB38JBLIplLxVKeLaLZNOwXD'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-K7MyJOcCdwa6yQ0exrM4i9DMw'; style-src + 'self' 'nonce-K7MyJOcCdwa6yQ0exrM4i9DMw'; 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: - - Mon, 11 Dec 2023 06:25:49 GMT + - Thu, 22 Feb 2024 09:34:31 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 4183e86..66b094a 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-mLuaJifwpJUJEzg4FXb8BS24q'; style-src - 'self' 'nonce-mLuaJifwpJUJEzg4FXb8BS24q'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-Iythyzgr1Q8nV8RS4DhfJrXc9'; style-src + 'self' 'nonce-Iythyzgr1Q8nV8RS4DhfJrXc9'; 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: - - Mon, 11 Dec 2023 06:22:55 GMT + - Thu, 22 Feb 2024 09:31:03 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -71,21 +71,23 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-type: + - application/json User-Agent: - - python-requests/2.31.0 + - 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":"2023-12-11T05:36:06.620Z","namespace":{"id":13984834,"name":"Akashdeep - Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/eba3058f529195e3b87d3383ada41661?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/eba3058f529195e3b87d3383ada41661?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"},"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","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":5064,"description_html":"","updated_at":"2023-12-11T05:36:06.620Z","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":"REMOVED","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,"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 / 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","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}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 833ba2d0f8351bd2-BOM + - 859636c84bee94b9-CCU Connection: - keep-alive Content-Encoding: @@ -93,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:22:56 GMT + - Thu, 22 Feb 2024 09:31: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=HLocZ3c%2FXsnNed5H5w21NdrPOLsA6bPS9Pv32UVQp3DosKb6gbbTt62K40AQwiG12%2BQXK%2Baf7Pi%2FDJBNDvZf0dDoueesV%2FwLtcK8wBzHGx9gQ1IQUbD%2BvrKxgGU%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=%2BRACvElFh1OL4B1S90GKsU1y%2F9FaL4DQK1QBcUn93uNteeY8C1mJCUMRfzZHbysAkaygbwRicp9eA%2FgqO9loclYX5x4peRUI%2FSPum3uRguWfoDPPhRcD9FXx8d6lSxxXuML2gj7OK68%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -108,21 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"a50bdb174044c2f887cc392d11b65a06" + - W/"e768b1f9e7e07ca4b0971d66d8a85752" gitlab-lb: - - haproxy-main-28-lb-gprd + - haproxy-main-57-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '7' - ratelimit-remaining: - - '1993' - ratelimit-reset: - - '1702275836' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:23:56 GMT + - gke-cny-api referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -134,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"23009c0fcd43da126ff74d497d8486fd","version":"1"}' + - '{"correlation_id":"d36af7bf3311a2c6bf460892818fee6b","version":"1"}' x-request-id: - - 23009c0fcd43da126ff74d497d8486fd + - d36af7bf3311a2c6bf460892818fee6b x-runtime: - - '0.115233' + - '0.222874' status: code: 200 message: OK @@ -230,14 +222,14 @@ interactions: Content-Length: - '4909' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-gKsTOFxXshK955TFrqsVmowAC'; style-src - 'self' 'nonce-gKsTOFxXshK955TFrqsVmowAC'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-0hsLximNPBK7xm5G6JX2NhFif'; style-src + 'self' 'nonce-0hsLximNPBK7xm5G6JX2NhFif'; 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: - - Mon, 11 Dec 2023 06:22:57 GMT + - Thu, 22 Feb 2024 09:31:05 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -346,14 +338,14 @@ interactions: Content-Length: - '4909' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-205rybZuYRdSVaOVH8XrNc0zn'; style-src - 'self' 'nonce-205rybZuYRdSVaOVH8XrNc0zn'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-ZeCt3myFDzVDNQiQRO6ohXpjP'; style-src + 'self' 'nonce-ZeCt3myFDzVDNQiQRO6ohXpjP'; 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: - - Mon, 11 Dec 2023 06:22:58 GMT + - Thu, 22 Feb 2024 09:31:06 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -375,7 +367,12 @@ interactions: code: 200 message: OK - request: - body: title=%5BSN%233%5D+This+is+the+title+of+the+third+test+issue&description=%0AThis+is+the+body+of+the+third+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F3%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2ATue+Nov+21+08%3A03%3A57+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Fnov-21-2023%2F08-03%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: '{"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)._\n"}' headers: Accept: - '*/*' @@ -384,40 +381,42 @@ interactions: Connection: - keep-alive Content-Length: - - '723' - Content-Type: - - application/x-www-form-urlencoded + - '589' + Content-type: + - application/json + Cookie: + - _cfuvid=O_4H9AZYyrF9nmcG_Vs1ELfl6wc_nE_j8s4hq6XHuZ8-1708594264864-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467050,"iid":6067,"project_id":42823949,"title":"[SN#3] This + string: '{"id":142497468,"iid":13123,"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":"2023-12-11T06:22:59.797Z","updated_at":"2023-12-11T06:22:59.797Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6067","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/6067","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6067/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6067/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6067","relative":"#6067","full":"gridhead/protop2g-test#6067"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba2e4dfd36ef4-BOM + - 859636d8e84594ce-CCU Connection: - keep-alive Content-Length: - - '2150' + - '2190' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:23:00 GMT + - Thu, 22 Feb 2024 09:31: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=zaUiCmGSrXmateX4aSDjvmmo6G9lbdSjp37ONhGVKi5ZnuVhH1p0lFGq5TlalrJbaQGhgjObylTai7UMnzRCsbOioak31qkNdTQAtsy3KoG5HT6rP3KlOfe%2FLmw%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Omvzq7lk7hzwir6raIVLmpp3qt3DRPrRSVKKk08Tcprai2senLYAd5D3BFdQDaHX8mJubjAMzNP%2F945sjv5WzbSuZ%2FgPbysGQPSBPuxRBbuSch4qbmvxQUEFN1VIUogIRX5QnE1R5vE%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -426,21 +425,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"0dc1a94b8a15c68d7bec8ea14932edb6" + - W/"22970f2991d305b3b70c4386e28b5eb0" gitlab-lb: - - haproxy-main-31-lb-gprd + - haproxy-main-36-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '8' - ratelimit-remaining: - - '1992' - ratelimit-reset: - - '1702275840' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:24:00 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -452,16 +441,21 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"21813a47541b83c52c878de8fb1495ec","version":"1"}' + - '{"correlation_id":"350f055438f5acf41af90c4c9ff3d610","version":"1"}' x-request-id: - - 21813a47541b83c52c878de8fb1495ec + - 350f055438f5acf41af90c4c9ff3d610 x-runtime: - - '0.614914' + - '1.366809' status: code: 201 message: Created - request: - body: title=%5BSN%231%5D+This+is+the+title+of+the+first+test+issue&description=%0AThis+is+the+body+of+the+first+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2AFri+Oct+13+03%3A57%3A42+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F03-57%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + 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 + 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)._\n"}' headers: Accept: - '*/*' @@ -470,40 +464,42 @@ interactions: Connection: - keep-alive Content-Length: - - '723' - Content-Type: - - application/x-www-form-urlencoded + - '589' + Content-type: + - application/json + Cookie: + - _cfuvid=O_4H9AZYyrF9nmcG_Vs1ELfl6wc_nE_j8s4hq6XHuZ8-1708594264864-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467051,"iid":6068,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142497470,"iid":13124,"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":"2023-12-11T06:23:00.855Z","updated_at":"2023-12-11T06:23:00.855Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6068","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/6068","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6068/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6068/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6068","relative":"#6068","full":"gridhead/protop2g-test#6068"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba2eb4e7b1bd8-BOM + - 859636e3ebd693c8-CCU Connection: - keep-alive Content-Length: - - '2150' + - '2190' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:23:01 GMT + - Thu, 22 Feb 2024 09:31: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=V5ljRwIwSsPytpqpmVXHFwoeo6qe2BBEeYRe80pmyIHSf25tpMVLqYE5gy2GbqGYt%2B6Mb1VDjAVCw6x%2F59hYIvEm4TW9Fo6Ifut4UU0qOQ2fX0ZLDIC69lSKnMs%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=G8BbnJyKv5ue%2FvHWVVX%2FxxqNuX9cjDQXGed2jyDULlGaIb0PEQ2OxXR%2BFaQvN3UYdlTMzY66OcsxD6%2BRRC6mS9RHFG4ylJz6YhAWWut4oE2RXzkREDrVD3aEhn2HMP4Kn%2B9oKq9fRLM%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -512,21 +508,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"bf6b8ab6a6073c0e2fa8ee310adc16aa" + - W/"0496afcd6a020d4fff77a0fdddb9640d" gitlab-lb: - - haproxy-main-01-lb-gprd + - haproxy-main-42-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '9' - ratelimit-remaining: - - '1991' - ratelimit-reset: - - '1702275841' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:24:01 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -538,11 +524,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"0714630958e67b1d0ed94f6003f796fa","version":"1"}' + - '{"correlation_id":"d1b8d701208fecc26903979fa43fbdb8","version":"1"}' x-request-id: - - 0714630958e67b1d0ed94f6003f796fa + - d1b8d701208fecc26903979fa43fbdb8 x-runtime: - - '0.617712' + - '0.728064' 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 716ccfa..4990ae2 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-h7gg5X7tNuTTb0dalTn03ljPG'; style-src - 'self' 'nonce-h7gg5X7tNuTTb0dalTn03ljPG'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-WLwAVoL8hlzJmz3UlB2nMEPPE'; style-src + 'self' 'nonce-WLwAVoL8hlzJmz3UlB2nMEPPE'; 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: - - Mon, 11 Dec 2023 06:24:52 GMT + - Thu, 22 Feb 2024 09:33:22 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -71,21 +71,23 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-type: + - application/json User-Agent: - - python-requests/2.31.0 + - 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":"2023-12-11T05:36:06.620Z","namespace":{"id":13984834,"name":"Akashdeep - Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/eba3058f529195e3b87d3383ada41661?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/eba3058f529195e3b87d3383ada41661?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"},"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","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":5089,"description_html":"","updated_at":"2023-12-11T05:36:06.620Z","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":"REMOVED","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,"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 / 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","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}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 833ba5ac7cdf85c9-BOM + - 85963a2ac9b594b2-CCU Connection: - keep-alive Content-Encoding: @@ -93,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:24:53 GMT + - Thu, 22 Feb 2024 09:33: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=k91H3cJejpHcd2OLM1bKUPv52NutupQH26LoczrgcIjl0st1mgAzfSsX8%2B9LWXonUl8VU35AWYJDBj49X9KFPUyoLVqA6caQhpZuneuBzEZH5lkyZlX7Xa%2Bc%2BRs%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=QBgRj%2BeQPXESTqO2aeLW4j4w3NgPZkFLpy9%2BcX3ToVFSBX7FSq%2FqKI8j6AEDXI4%2Bsi2L038zgU8h4bE7i4U1EE66yYq6jlNu3pwpuSqpc%2FWAxxLklpiVI3bTDjeMDmOy5EYrr%2BOBQZo%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -108,21 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"4b68fd4371b2ff690d110220166e2dc2" + - W/"9b800d224a171ccf63ff1e8f5211b4bb" gitlab-lb: - - haproxy-main-07-lb-gprd + - haproxy-main-15-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '34' - ratelimit-remaining: - - '1966' - ratelimit-reset: - - '1702275953' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:25:53 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -134,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"258b1131dc33236faa58c1e9b736ef7e","version":"1"}' + - '{"correlation_id":"de607f30b6479e67489e559350958605","version":"1"}' x-request-id: - - 258b1131dc33236faa58c1e9b736ef7e + - de607f30b6479e67489e559350958605 x-runtime: - - '0.142696' + - '0.132199' status: code: 200 message: OK @@ -249,14 +241,14 @@ interactions: Content-Length: - '6409' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-K34ycvAnV93yWyWBu0pstVLhr'; style-src - 'self' 'nonce-K34ycvAnV93yWyWBu0pstVLhr'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-SG55UzpkbyvkbybpO9H5TPK6x'; style-src + 'self' 'nonce-SG55UzpkbyvkbybpO9H5TPK6x'; 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: - - Mon, 11 Dec 2023 06:24:54 GMT + - Thu, 22 Feb 2024 09:33:24 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -384,14 +376,14 @@ interactions: Content-Length: - '6409' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-ahbRM1R2CiFKERpGsvWMPQP0F'; style-src - 'self' 'nonce-ahbRM1R2CiFKERpGsvWMPQP0F'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-tl7jCp9O10VluMFD0NRPX86bi'; style-src + 'self' 'nonce-tl7jCp9O10VluMFD0NRPX86bi'; 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: - - Mon, 11 Dec 2023 06:24:56 GMT + - Thu, 22 Feb 2024 09:33:25 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -413,7 +405,12 @@ interactions: code: 200 message: OK - request: - body: title=%5BSN%234%5D+This+is+the+title+of+the+fourth+test+issue&description=%0AThis+is+the+body+of+the+fourth+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F4%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2ATue+Nov+21+08%3A06%3A56+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Fnov-21-2023%2F08-06%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: '{"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)._\n"}' headers: Accept: - '*/*' @@ -422,40 +419,42 @@ interactions: Connection: - keep-alive Content-Length: - - '725' - Content-Type: - - application/x-www-form-urlencoded + - '591' + Content-type: + - application/json + Cookie: + - _cfuvid=dnhv9Q3qxJqRjBGDXznWZSMggYDWgxCeO4LQw28xsSk-1708594403428-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467138,"iid":6099,"project_id":42823949,"title":"[SN#4] This + string: '{"id":142497578,"iid":13155,"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":"2023-12-11T06:24:56.995Z","updated_at":"2023-12-11T06:24:56.995Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6099","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/6099","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6099/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6099/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6099","relative":"#6099","full":"gridhead/protop2g-test#6099"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba5c1b9368630-BOM + - 85963a3bbf4393bb-CCU Connection: - keep-alive Content-Length: - - '2152' + - '2192' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:24:57 GMT + - Thu, 22 Feb 2024 09:33: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=z2nVaqLFo6yLeHcJ%2Fiwj3boZVf9miDQKRilqZV1luVydQaEuv9JOms8PQb65fobq5hcSf0TB56wYGP3%2Br6CJTxiy6dNi7WtJu6Mji8sploD4EaMd%2F9vu54Orm6Y%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=dt7YhL%2BE9owbUKYNqiWm6QdRG%2FbrLaiOlmGOYKa0Vtl9NjEMr0rUqShRjIuS6xeLoxXUycptD5dAPWDMvLe2mwJ%2FXvmm1sAL3R%2BPAqzjliQETDz2HGmJ4h4j527OeS6HuNBfqdwPsYo%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -464,21 +463,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"1de59eeb5eb903ee00a366bb0d2f207e" + - W/"655cfcfd48410015b418ed30cf1b0567" gitlab-lb: - - haproxy-main-15-lb-gprd + - haproxy-main-07-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '33' - ratelimit-remaining: - - '1967' - ratelimit-reset: - - '1702275957' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:25:57 GMT + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -490,16 +479,16 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"392129fc1d9a549ca0442d83846dc997","version":"1"}' + - '{"correlation_id":"fa599d564c23a01f9f2dc832df501c3a","version":"1"}' x-request-id: - - 392129fc1d9a549ca0442d83846dc997 + - fa599d564c23a01f9f2dc832df501c3a x-runtime: - - '0.501365' + - '0.463256' status: code: 201 message: Created - request: - body: body=%0AThis+is+the+first+comment+under+the+fourth+test+issue%0A%0A_This+comment+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F4%23comment-885231%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+under%0A%5Bthis%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F4%29+issue+ticket+on+a+Pagure+repository%2C+%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+on%0A%5B%2A%2ATue+Nov+21+08%3A07%3A25+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Fnov-21-2023%2F08-07%29._%0A%0A_This+comment+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: null headers: Accept: - '*/*' @@ -507,39 +496,125 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '767' + Content-type: + - application/json + Cookie: + - _cfuvid=dnhv9Q3qxJqRjBGDXznWZSMggYDWgxCeO4LQw28xsSk-1708594403428-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13155 + response: + body: + string: '{"id":142497578,"iid":13155,"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}' + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 85963a410ad993c8-CCU + Connection: + - keep-alive + Content-Encoding: + - gzip Content-Type: - - application/x-www-form-urlencoded + - application/json + Date: + - Thu, 22 Feb 2024 09:33: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=MRNuP4s5hqWl3%2Fk65md9IoW05Wmewq34QB2PmDT1%2F4kpp7aS48MsCJRInIMiCt4cFcf7XRWgXxtPFvv7etXuTmKmSvohyZtcrmz1I%2FKdhyY4ASU0hH95fK8JXRigsXkA4oS8NZXm9TE%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/"655cfcfd48410015b418ed30cf1b0567" + gitlab-lb: + - haproxy-main-60-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":"ba314a95e01136d46471194f02576874","version":"1"}' + x-request-id: + - ba314a95e01136d46471194f02576874 + x-runtime: + - '0.167423' + status: + code: 200 + message: OK +- request: + body: '{"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)._\n"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '611' + Content-type: + - application/json + Cookie: + - _cfuvid=dnhv9Q3qxJqRjBGDXznWZSMggYDWgxCeO4LQw28xsSk-1708594403428-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/6099/notes + uri: https://gitlab.com/api/v4/projects/42823949/issues/13155/discussions response: body: - string: '{"id":1687901464,"type":null,"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) + string: '{"id":"abfd2af775d68d715999e77bce52c56624038247","individual_note":false,"notes":[{"id":1784525251,"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/1b6289f6c729f1ba694aa2bc296a7277?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2023-12-11T06:24:58.040Z","updated_at":"2023-12-11T06:24:58.040Z","system":false,"noteable_id":139467138,"noteable_type":"Issue","project_id":42823949,"resolvable":false,"confidential":false,"internal":false,"noteable_iid":6099,"commands_changes":{}}' + 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":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba5c77a7f847a-BOM + - 85963a445b3d94ce-CCU Connection: - keep-alive Content-Length: - - '1246' + - '1429' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:24:58 GMT + - Thu, 22 Feb 2024 09:33: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=GlttCkU0TY8GrNIv1rJXPrq53u02ln3idwGte7UhciAIIcyu%2BLsChm99Ria%2FHfie9hNkrQde82BqxE5pA%2F7ZmhmzPfFuVMY1x%2BlnMh8NIYnuCMC59uAutp4MOf0%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=W8DfWbMOuH1W2Z7ObuPXyDk5716NmurKwtgJuaOfITVzZKH7FAd9hSyX0ZhcIgn4lTTG9Vlc8SE2JsZYJ9Rt%2BOS92Fm4uXM5AzAp5MQNrlKtarRiTj4hnuhz1IT5csS%2BXRSyxfM8Tcg%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -548,21 +623,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"bc560066ff2f3fba6acb868ba2bca07a" + - W/"f0d8e2ea9716d3e25f1b13c22acdc27d" gitlab-lb: - - haproxy-main-23-lb-gprd + - haproxy-main-53-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '33' - ratelimit-remaining: - - '1966' - ratelimit-reset: - - '1702275958' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:25:58 GMT + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -574,16 +639,16 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"aadba00bd6c52e7575acafafd938de96","version":"1"}' + - '{"correlation_id":"9fbac558abeee26e75a42505cd934129","version":"1"}' x-request-id: - - aadba00bd6c52e7575acafafd938de96 + - 9fbac558abeee26e75a42505cd934129 x-runtime: - - '0.847071' + - '0.774105' status: code: 201 message: Created - request: - body: body=%0AThis+is+the+second+comment+under+the+fourth+test+issue%0A%0A_This+comment+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F4%23comment-885232%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+under%0A%5Bthis%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F4%29+issue+ticket+on+a+Pagure+repository%2C+%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+on%0A%5B%2A%2ATue+Nov+21+08%3A07%3A34+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Fnov-21-2023%2F08-07%29._%0A%0A_This+comment+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: null headers: Accept: - '*/*' @@ -591,39 +656,125 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '768' + Content-type: + - application/json + Cookie: + - _cfuvid=dnhv9Q3qxJqRjBGDXznWZSMggYDWgxCeO4LQw28xsSk-1708594403428-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13155 + response: + body: + string: '{"id":142497578,"iid":13155,"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}' + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 85963a4bd9e094b9-CCU + Connection: + - keep-alive + Content-Encoding: + - gzip Content-Type: - - application/x-www-form-urlencoded + - application/json + Date: + - Thu, 22 Feb 2024 09:33: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=csP%2FXWsg7jhu7GoYgbNW4LMysQprRLJBx3gSECCI2PDP5uCMC2Sp4%2B99HQ9%2BTC6Lp5TwwVDyU2iiQuj6hw2Yg2DkII4fCFejIOfpJBhr2%2B9SVnd6ZIaFXoBLUBTdUDbeHxqCrlcQWdU%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/"9aee42c574138454f2adba8d6707d006" + gitlab-lb: + - haproxy-main-49-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":"318bc762df7a03f371a768d75ce9c6f1","version":"1"}' + x-request-id: + - 318bc762df7a03f371a768d75ce9c6f1 + x-runtime: + - '0.166265' + status: + code: 200 + message: OK +- request: + body: '{"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)._\n"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '612' + Content-type: + - application/json + Cookie: + - _cfuvid=dnhv9Q3qxJqRjBGDXznWZSMggYDWgxCeO4LQw28xsSk-1708594403428-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/6099/notes + uri: https://gitlab.com/api/v4/projects/42823949/issues/13155/discussions response: body: - string: '{"id":1687901482,"type":null,"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) + string: '{"id":"14fc878968c05017afe38ba1a4b135073f782b53","individual_note":false,"notes":[{"id":1784525288,"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/1b6289f6c729f1ba694aa2bc296a7277?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2023-12-11T06:24:59.234Z","updated_at":"2023-12-11T06:24:59.234Z","system":false,"noteable_id":139467138,"noteable_type":"Issue","project_id":42823949,"resolvable":false,"confidential":false,"internal":false,"noteable_iid":6099,"commands_changes":{}}' + 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":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba5cf2b0d856b-BOM + - 85963a4f2da293c5-CCU Connection: - keep-alive Content-Length: - - '1247' + - '1430' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:24:59 GMT + - Thu, 22 Feb 2024 09:33: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=Ep7zr2gXhF1YSODq1K%2BhoXBF3pBF2Dlih4itJA15aLlnd53JZEtuJ8w6hDLHgB7Qk%2BUh0VdDtYp83A8YWMKV0UuoNIyOhOZJQnveiGG2OpLOxSW0JZs59xy0ZMg%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=evWGmwVKq320vbIYF2J%2Fz1afmcY1MPPEBx3hLFjZbdDiEExgBaH4J7fH4Dfce7I4VDL99ZGsJ590Vvqv%2FUa9jcaElEVixo8%2BWXuuRnmuaqhCoGIDurvXSxTo2DnnUui8LHEHDzcJATU%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -632,21 +783,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"a238da10b1ac6ae88333811a9733ec3b" + - W/"553c4a17ce295194e09d9d48871b69ff" gitlab-lb: - - haproxy-main-48-lb-gprd + - haproxy-main-18-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '34' - ratelimit-remaining: - - '1966' - ratelimit-reset: - - '1702275959' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:25:59 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -658,16 +799,16 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"0e4a8905c2ec0273d2355da44cb07b3f","version":"1"}' + - '{"correlation_id":"284b720a297323dbbe54671c4244c320","version":"1"}' x-request-id: - - 0e4a8905c2ec0273d2355da44cb07b3f + - 284b720a297323dbbe54671c4244c320 x-runtime: - - '0.496919' + - '0.866586' status: code: 201 message: Created - request: - body: body=%0A%2A%2AMetadata+Update+from+%26t0xic0der%2A%2A%3A%0A-+Issue+status+updated+to%3A+Closed+%28was%3A+Open%29%0A%0A_This+comment+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F4%23comment-885233%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+under%0A%5Bthis%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F4%29+issue+ticket+on+a+Pagure+repository%2C+%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+on%0A%5B%2A%2ATue+Nov+21+08%3A08%3A01+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Fnov-21-2023%2F08-08%29._%0A%0A_This+comment+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: null headers: Accept: - '*/*' @@ -675,40 +816,125 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '818' + Content-type: + - application/json + Cookie: + - _cfuvid=dnhv9Q3qxJqRjBGDXznWZSMggYDWgxCeO4LQw28xsSk-1708594403428-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13155 + response: + body: + string: '{"id":142497578,"iid":13155,"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}' + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 85963a571c5994bc-CCU + Connection: + - keep-alive + Content-Encoding: + - gzip Content-Type: - - application/x-www-form-urlencoded + - application/json + Date: + - Thu, 22 Feb 2024 09:33: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=bQiXUIBVymN%2BjsCT7iTPOoTxTaAMCa7%2BZTwjynS%2FVO%2BCA0pTi665HjuDDBJ5zBLIEarDHMyd4Luvte3doNybIPXxKBM1fzke%2BizkzZtVwG6POgHqE4%2FZvFhQQ%2BFjwqOt4JyTupe8kog%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/"785421a344c719a2e0442ff24ad821d2" + gitlab-lb: + - haproxy-main-60-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":"fd8fd85de52e8132977a8a9f25b3201b","version":"1"}' + x-request-id: + - fd8fd85de52e8132977a8a9f25b3201b + x-runtime: + - '0.174335' + status: + code: 200 + message: OK +- request: + body: '{"body": "\n**Metadata Update from &t0xic0der**:\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)._\n"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '641' + Content-type: + - application/json + Cookie: + - _cfuvid=dnhv9Q3qxJqRjBGDXznWZSMggYDWgxCeO4LQw28xsSk-1708594403428-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/6099/notes + uri: https://gitlab.com/api/v4/projects/42823949/issues/13155/discussions response: body: - string: '{"id":1687901495,"type":null,"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) + string: '{"id":"bc6e2f15f12e16528ee88289d3691139be18fbfc","individual_note":false,"notes":[{"id":1784525337,"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/1b6289f6c729f1ba694aa2bc296a7277?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2023-12-11T06:25:00.061Z","updated_at":"2023-12-11T06:25:00.061Z","system":false,"noteable_id":139467138,"noteable_type":"Issue","project_id":42823949,"resolvable":false,"confidential":false,"internal":false,"noteable_iid":6099,"commands_changes":{}}' + 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":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba5d4eb716ed7-BOM + - 85963a5a68f194b0-CCU Connection: - keep-alive Content-Length: - - '1281' + - '1464' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:00 GMT + - Thu, 22 Feb 2024 09:33: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=42FYHtdzNfYzbSy8elMjG7GnAKWndGb01MstB0mEHRu0SMxogn8n7YOYnNtODhbnT%2BVNeRwS0JL59hJKpCW6DP0Z5mueYo0CpfR3ZZR8eMEW3xBGrtFN7iFwCuE%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Ve6w1niUDywYCmHqmyhQxMEGpgCSO5vpS6C1qx3ZdLbeeWXIZCFoLEQldzgs%2BwMqZsbI3XUO6JK0%2BzSqE%2FDvUOzLXiXvXjCalpx1IN0Z5mxOjDBOqV5gATSNJyLOLjYvrgAsMc96PhM%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -717,21 +943,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"0a997dc83e7ef341fe8c82887ce8d687" + - W/"7d8d31c03951c6c7b971ffe7e4e541c9" gitlab-lb: - - haproxy-main-54-lb-gprd + - haproxy-main-53-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '34' - ratelimit-remaining: - - '1966' - ratelimit-reset: - - '1702275960' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:00 GMT + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -743,16 +959,21 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"78a2542c6412ec645c8bd776cd10b364","version":"1"}' + - '{"correlation_id":"f4a9198c5a347549ad627416c560c0f8","version":"1"}' x-request-id: - - 78a2542c6412ec645c8bd776cd10b364 + - f4a9198c5a347549ad627416c560c0f8 x-runtime: - - '0.352779' + - '0.910549' status: code: 201 message: Created - request: - body: title=%5BSN%232%5D+This+is+the+title+of+the+second+test+issue&description=%0AThis+is+the+body+of+the+second+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2AFri+Oct+13+04%3A01%3A16+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-01%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: '{"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)._\n"}' headers: Accept: - '*/*' @@ -761,40 +982,42 @@ interactions: Connection: - keep-alive Content-Length: - - '725' - Content-Type: - - application/x-www-form-urlencoded + - '591' + Content-type: + - application/json + Cookie: + - _cfuvid=dnhv9Q3qxJqRjBGDXznWZSMggYDWgxCeO4LQw28xsSk-1708594403428-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467140,"iid":6100,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142497583,"iid":13156,"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":"2023-12-11T06:25:00.797Z","updated_at":"2023-12-11T06:25:00.797Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6100","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/6100","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6100/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6100/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6100","relative":"#6100","full":"gridhead/protop2g-test#6100"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba5d95a47f2c6-BOM + - 85963a62a8a793c8-CCU Connection: - keep-alive Content-Length: - - '2152' + - '2192' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:01 GMT + - Thu, 22 Feb 2024 09:33: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=2AbZaVsvDjgZBnKJBpblZM55kDabNrssFGqsi5rpmZ%2BwzIozoUuXXsxQeFtVpMG8Zf4z6Cs4k2zv7VlNuSA5iTsNU2Ou8IDHdw9zBb3kJfdSjlIygFmIHnuT%2BWA%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=qbxcrjSZ7%2FT%2F%2BmpyvuBugFvfDorh2pNZsno8s%2F4j7%2FQQZ774RXAdaCXrpy1AQ9Zdq7Fvrus6Zm2EHNpYfjkwS9zc2JlG3GIgJRIIwrKV7cQwZKqahs8rYG2%2BonrRRRlOOVSd4H7CIZY%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -803,21 +1026,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"4730e9a3234bafcee34f0fcea87c57af" + - W/"9fbbcbbad86be9e1ce4abc956b7477e4" gitlab-lb: - - haproxy-main-04-lb-gprd + - haproxy-main-09-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '35' - ratelimit-remaining: - - '1965' - ratelimit-reset: - - '1702275960' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:00 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -829,16 +1042,16 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"c0c3b4c06acff5ea97eb821fed71ddbc","version":"1"}' + - '{"correlation_id":"2d5ef23313f4674b1ca4d3ed9e2ec0c9","version":"1"}' x-request-id: - - c0c3b4c06acff5ea97eb821fed71ddbc + - 2d5ef23313f4674b1ca4d3ed9e2ec0c9 x-runtime: - - '0.495386' + - '0.457082' status: code: 201 message: Created - request: - body: body=%0A%2A%2AMetadata+Update+from+%26t0xic0der%2A%2A%3A%0A-+Issue+tagged+with%3A+cccc%2C+dddd%0A%0A_This+comment+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%23comment-878472%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+under%0A%5Bthis%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%29+issue+ticket+on+a+Pagure+repository%2C+%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+on%0A%5B%2A%2AFri+Oct+13+04%3A03%3A30+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-03%29._%0A%0A_This+comment+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: null headers: Accept: - '*/*' @@ -846,39 +1059,125 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '800' + Content-type: + - application/json + Cookie: + - _cfuvid=dnhv9Q3qxJqRjBGDXznWZSMggYDWgxCeO4LQw28xsSk-1708594403428-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13156 + response: + body: + string: '{"id":142497583,"iid":13156,"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}' + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 85963a67eb3e94bc-CCU + Connection: + - keep-alive + Content-Encoding: + - gzip Content-Type: - - application/x-www-form-urlencoded + - application/json + Date: + - Thu, 22 Feb 2024 09:33: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=zj2gOEFk%2FbBWK7DLwzbjU%2FRHnao6u8m%2B4f2AE6Zh2cDLjHJJi7tMNpftgbFej42B4EwZ5BM5vAgmUnrkkC45uluMqgRuUIIr2wyIrW%2FwVg8vY7SCK0mB%2FK1jyL5wC6H6Xnv5vwJxQKQ%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/"9fbbcbbad86be9e1ce4abc956b7477e4" + gitlab-lb: + - haproxy-main-51-lb-gprd + gitlab-sv: + - gke-cny-api + 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":"93027f83063c7d20b8f5baefa4d7b49b","version":"1"}' + x-request-id: + - 93027f83063c7d20b8f5baefa4d7b49b + x-runtime: + - '0.219330' + status: + code: 200 + message: OK +- request: + body: '{"body": "\n**Metadata Update from &t0xic0der**:\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)._\n"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-type: + - application/json + Cookie: + - _cfuvid=dnhv9Q3qxJqRjBGDXznWZSMggYDWgxCeO4LQw28xsSk-1708594403428-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/6100/notes + uri: https://gitlab.com/api/v4/projects/42823949/issues/13156/discussions response: body: - string: '{"id":1687901546,"type":null,"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) + string: '{"id":"c450a64f82b8b8f4a1ed4ca4ff754cb410b48a88","individual_note":false,"notes":[{"id":1784525422,"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/1b6289f6c729f1ba694aa2bc296a7277?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2023-12-11T06:25:01.793Z","updated_at":"2023-12-11T06:25:01.793Z","system":false,"noteable_id":139467140,"noteable_type":"Issue","project_id":42823949,"resolvable":false,"confidential":false,"internal":false,"noteable_iid":6100,"commands_changes":{}}' + 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":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba5df2dcbf3dd-BOM + - 85963a6c0f5193c2-CCU Connection: - keep-alive Content-Length: - - '1267' + - '1450' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:03 GMT + - Thu, 22 Feb 2024 09:33: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=iKKFaWTv9R43hCFBODdjYYY55D77LZJgvrwFgI5hxW16hWnka%2FU2RQN%2FNgszKfwl%2FdSmEkRY%2B1Eivt1eb5pXGhBYWRAtP%2BafXvDlChjV%2FUv3iOxCocghgHp%2BdKY%3D"}],"group":"cf-nel","max_age":604800}' + - '{"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}' Server: - cloudflare Set-Cookie: '' @@ -887,21 +1186,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"69306c826c05ea0567e979a0a320b0c4" + - W/"524647475d0027af6cc9ce523b925cf2" gitlab-lb: - - haproxy-main-39-lb-gprd + - haproxy-main-03-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '34' - ratelimit-remaining: - - '1965' - ratelimit-reset: - - '1702275963' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:03 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -913,16 +1202,16 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"52f217ea141c281278f90617cc5d807d","version":"1"}' + - '{"correlation_id":"e028d06a8066c42f358cbc7ab24bdd4d","version":"1"}' x-request-id: - - 52f217ea141c281278f90617cc5d807d + - e028d06a8066c42f358cbc7ab24bdd4d x-runtime: - - '1.698315' + - '0.940121' status: code: 201 message: Created - request: - body: body=%0AThe+is+the+first+comment+under+the+second+test+issue%0A%0A_This+comment+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%23comment-878475%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+under%0A%5Bthis%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%29+issue+ticket+on+a+Pagure+repository%2C+%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+on%0A%5B%2A%2AFri+Oct+13+04%3A06%3A04+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-06%29._%0A%0A_This+comment+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: null headers: Accept: - '*/*' @@ -930,39 +1219,125 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '766' + Content-type: + - application/json + Cookie: + - _cfuvid=dnhv9Q3qxJqRjBGDXznWZSMggYDWgxCeO4LQw28xsSk-1708594403428-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13156 + response: + body: + string: '{"id":142497583,"iid":13156,"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}' + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 85963a744d9294ce-CCU + Connection: + - keep-alive + Content-Encoding: + - gzip Content-Type: - - application/x-www-form-urlencoded + - application/json + Date: + - Thu, 22 Feb 2024 09:33: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=9iFgMe99AumgxWaffW%2FGJUmhn4Xo6LgKOAgo926z9QVqHpC5siiM3GUJ0U%2Bgvy7FsPVTHx6BcWFY6LZ9RYWP3113P30Pq9WwcaJF%2B5%2FJ%2FXziiCpC36x2Qp93kmRjfO0AdoOgKDezj5Q%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/"9bca752fa7dad76576610e7529e01383" + 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":"e2383ecf4c9999519d7b2a9c0df23781","version":"1"}' + x-request-id: + - e2383ecf4c9999519d7b2a9c0df23781 + x-runtime: + - '0.164337' + status: + code: 200 + message: OK +- request: + body: '{"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)._\n"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '610' + Content-type: + - application/json + Cookie: + - _cfuvid=dnhv9Q3qxJqRjBGDXznWZSMggYDWgxCeO4LQw28xsSk-1708594403428-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/6100/notes + uri: https://gitlab.com/api/v4/projects/42823949/issues/13156/discussions response: body: - string: '{"id":1687901585,"type":null,"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) + string: '{"id":"a847a60575cb9a0bc8cb929bc034fe570b6ed9cb","individual_note":false,"notes":[{"id":1784525475,"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/1b6289f6c729f1ba694aa2bc296a7277?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2023-12-11T06:25:04.131Z","updated_at":"2023-12-11T06:25:04.131Z","system":false,"noteable_id":139467140,"noteable_type":"Issue","project_id":42823949,"resolvable":false,"confidential":false,"internal":false,"noteable_iid":6100,"commands_changes":{}}' + 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":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba5ede943f29a-BOM + - 85963a77afb994bf-CCU Connection: - keep-alive Content-Length: - - '1245' + - '1428' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:04 GMT + - Thu, 22 Feb 2024 09:33: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=zlyQLR%2BAIcYdSluytFPOtwRdmbq5r444M4f2WBKErbMumtdG%2BG5llMkt9PayzQfLekssAk3jWsLSg3VxNcj%2BXF8yKjFRvQMqwW4YCAJ7%2BPjIwAKf3plgX5Q6Tbs%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=CPhJiwTlBJXnEyKenBrWm2CIxom5sfF27HsAlEqGHKQ9duQ4HVfSPm47eWYrJRTVEqT6JOFUYmR61aSzak44n1%2FGOkEvxuvwQwItqlg%2FotJ4uPswhL8yl22rok1PeKXgHNRY%2FEfEAQ0%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -971,21 +1346,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"f332c831a1e5b4d029c12f6b90727889" + - W/"8468b63f41963fe3ce502666af990c92" gitlab-lb: - - haproxy-main-12-lb-gprd + - haproxy-main-38-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '35' - ratelimit-remaining: - - '1965' - ratelimit-reset: - - '1702275964' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:04 GMT + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -997,16 +1362,16 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"098d2153d6857940fe100f6def2abf84","version":"1"}' + - '{"correlation_id":"1bb3cdd0a74bcba61f1032d654fbf972","version":"1"}' x-request-id: - - 098d2153d6857940fe100f6def2abf84 + - 1bb3cdd0a74bcba61f1032d654fbf972 x-runtime: - - '0.409490' + - '0.488637' status: code: 201 message: Created - request: - body: body=%0AThe+is+the+second+comment+under+the+second+test+issue%0A%0A_This+comment+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%23comment-878476%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+under%0A%5Bthis%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%29+issue+ticket+on+a+Pagure+repository%2C+%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+on%0A%5B%2A%2AFri+Oct+13+04%3A06%3A16+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-06%29._%0A%0A_This+comment+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: null headers: Accept: - '*/*' @@ -1014,39 +1379,125 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '767' + Content-type: + - application/json + Cookie: + - _cfuvid=dnhv9Q3qxJqRjBGDXznWZSMggYDWgxCeO4LQw28xsSk-1708594403428-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13156 + response: + body: + string: '{"id":142497583,"iid":13156,"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}' + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 85963a7d0f0894b9-CCU + Connection: + - keep-alive + Content-Encoding: + - gzip Content-Type: - - application/x-www-form-urlencoded + - application/json + Date: + - Thu, 22 Feb 2024 09:33: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=Ljrn%2Bdn6Xh7xNB4pgQuGSsyGgSHzk%2BUCgO16MSzx4sOimjmnla8OZP1e%2FpnMi7SsxZmNsPo%2FaFS8qdL2hrvr5lD8cWvAAXm23wDa6gnkn8dzUKnTAZE%2B353BocwaF4UECT9WYtylkCU%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/"f895c370c8b559960171bd9797b1e5e1" + gitlab-lb: + - haproxy-main-27-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":"456f05da2ca55806967f3f049d0b4947","version":"1"}' + x-request-id: + - 456f05da2ca55806967f3f049d0b4947 + x-runtime: + - '0.153377' + status: + code: 200 + message: OK +- request: + body: '{"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)._\n"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '611' + Content-type: + - application/json + Cookie: + - _cfuvid=dnhv9Q3qxJqRjBGDXznWZSMggYDWgxCeO4LQw28xsSk-1708594403428-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/6100/notes + uri: https://gitlab.com/api/v4/projects/42823949/issues/13156/discussions response: body: - string: '{"id":1687901605,"type":null,"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) + string: '{"id":"5004e0e8ff7f60a5d09b21ecd9c3f30e12e88d7d","individual_note":false,"notes":[{"id":1784525522,"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/1b6289f6c729f1ba694aa2bc296a7277?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2023-12-11T06:25:05.006Z","updated_at":"2023-12-11T06:25:05.006Z","system":false,"noteable_id":139467140,"noteable_type":"Issue","project_id":42823949,"resolvable":false,"confidential":false,"internal":false,"noteable_iid":6100,"commands_changes":{}}' + 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":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba5f2fe81856c-BOM + - 85963a815b6994b9-CCU Connection: - keep-alive Content-Length: - - '1246' + - '1429' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:05 GMT + - Thu, 22 Feb 2024 09:33: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=jShIq1nalt0duwc5yPVmleU8NxKNDOD9frPrR%2B3jMOjkhpG2nBb7o0Yc207eXnLKbr3mpyliBEw2707VfqoNz3NoFSiU0sxOyyR1%2F4tm9b%2BqQEo8V7Etop9iq9s%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=X4RXWjmnIWu1G4hUISmQN9qwfP5D9vCNwUphXSc7VXpS3No%2B5vvEukSDkItTWOb%2BgkeazwjY8A7EL9cqiLx0oZmF%2FlsoHcWGQXsR4HpFFOVILJCUbtm45tcYyITFaS2JQErxF0IlPO4%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1055,21 +1506,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"d25c18969d5e909a35878f4b49105bcb" + - W/"a45aa73e738a8a898a583089560f3a64" gitlab-lb: - - haproxy-main-35-lb-gprd + - haproxy-main-28-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '35' - ratelimit-remaining: - - '1965' - ratelimit-reset: - - '1702275965' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:05 GMT + - gke-cny-api referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -1081,16 +1522,16 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"4917b3751b3bc462bf667939c4ea22b5","version":"1"}' + - '{"correlation_id":"8941308cb8720a86d811a78d8dd8b0a9","version":"1"}' x-request-id: - - 4917b3751b3bc462bf667939c4ea22b5 + - 8941308cb8720a86d811a78d8dd8b0a9 x-runtime: - - '0.851966' + - '1.084581' status: code: 201 message: Created - request: - body: body=%0A%2A%2AMetadata+Update+from+%26t0xic0der%2A%2A%3A%0A-+Issue+status+updated+to%3A+Closed+%28was%3A+Open%29%0A%0A_This+comment+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%23comment-878477%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+under%0A%5Bthis%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%29+issue+ticket+on+a+Pagure+repository%2C+%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+on%0A%5B%2A%2AFri+Oct+13+04%3A07%3A12+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-07%29._%0A%0A_This+comment+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: null headers: Accept: - '*/*' @@ -1098,40 +1539,125 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '818' + Content-type: + - application/json + Cookie: + - _cfuvid=dnhv9Q3qxJqRjBGDXznWZSMggYDWgxCeO4LQw28xsSk-1708594403428-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13156 + response: + body: + string: '{"id":142497583,"iid":13156,"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}' + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 85963a8a6fd893cb-CCU + Connection: + - keep-alive + Content-Encoding: + - gzip Content-Type: - - application/x-www-form-urlencoded + - application/json + Date: + - Thu, 22 Feb 2024 09:33: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=Aoxan0A0n8Jky7qc1weqIm1KzCXl6pEwVn%2BFhbzD%2FPQZ1mZc1t2hryGS9PpMbfyBTWlOSjAQPLQ9ghdkI2ojQrxqoYODzxGy2cmOFmuFji2S5Dl24TVKmfBcSt6M2%2B78iXTyxbgCQA4%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/"693009d187013fb04070b084981a0fca" + gitlab-lb: + - haproxy-main-46-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":"810badf2a62d046d8389c1c9a096ea16","version":"1"}' + x-request-id: + - 810badf2a62d046d8389c1c9a096ea16 + x-runtime: + - '0.238476' + status: + code: 200 + message: OK +- request: + body: '{"body": "\n**Metadata Update from &t0xic0der**:\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)._\n"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '641' + Content-type: + - application/json + Cookie: + - _cfuvid=dnhv9Q3qxJqRjBGDXznWZSMggYDWgxCeO4LQw28xsSk-1708594403428-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/6100/notes + uri: https://gitlab.com/api/v4/projects/42823949/issues/13156/discussions response: body: - string: '{"id":1687901637,"type":null,"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) + string: '{"id":"0aa79e8ddcdda6fe536e838ddc11dd2058eb6b20","individual_note":false,"notes":[{"id":1784525569,"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/1b6289f6c729f1ba694aa2bc296a7277?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2023-12-11T06:25:06.138Z","updated_at":"2023-12-11T06:25:06.138Z","system":false,"noteable_id":139467140,"noteable_type":"Issue","project_id":42823949,"resolvable":false,"confidential":false,"internal":false,"noteable_iid":6100,"commands_changes":{}}' + 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":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba5faba5cf296-BOM + - 85963a8e3b4e93cb-CCU Connection: - keep-alive Content-Length: - - '1281' + - '1464' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:06 GMT + - Thu, 22 Feb 2024 09:33: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=r%2F5hXR1KFS%2FFnfUdK%2B5vn3L11Z%2By43YVAtUR7bgwpvR%2BVzHHNPJ%2BUMCVM%2BKUzif2Ja%2BMfvBg2lSn8n4lwDWVff9gqa8EvuIoyMTaNNK287cuhLNYqwDU400kII0%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=FwM4p1VPALfBDHkFn%2F6UrMaB9IDECkToyqIBHO7pF8cSZHXMmv2ZM9JBk%2BIbaXDEZb6Rb%2F%2Fd9LdqQiRmXfvm6PFQLtJILDmasB%2FQH7iGBBH9gS%2FC2Akdq9WDEhhxnTsXpaDS9ujhr0Y%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -1140,21 +1666,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"bf0312da8b8e5eca22c7ffbcd5d653ba" + - W/"a1b63d0bd95e62bf25508352d379b0a4" gitlab-lb: - - haproxy-main-41-lb-gprd + - haproxy-main-53-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '36' - ratelimit-remaining: - - '1964' - ratelimit-reset: - - '1702275966' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:06 GMT + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -1166,11 +1682,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"557f6a099be49aa582b33f1329e3b477","version":"1"}' + - '{"correlation_id":"298914681c32275dc59699d1be065e43","version":"1"}' x-request-id: - - 557f6a099be49aa582b33f1329e3b477 + - 298914681c32275dc59699d1be065e43 x-runtime: - - '0.386188' + - '0.390454' 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 57a5755..a89bc7c 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-yTBTYUFTmJyVXkssRaUjERKTd'; style-src - 'self' 'nonce-yTBTYUFTmJyVXkssRaUjERKTd'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-P6Z0ckvSZlN5pgWw0jk8FSiqX'; style-src + 'self' 'nonce-P6Z0ckvSZlN5pgWw0jk8FSiqX'; 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: - - Mon, 11 Dec 2023 06:24:24 GMT + - Thu, 22 Feb 2024 09:32:51 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -71,21 +71,23 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-type: + - application/json User-Agent: - - python-requests/2.31.0 + - 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":"2023-12-11T05:36:06.620Z","namespace":{"id":13984834,"name":"Akashdeep - Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/eba3058f529195e3b87d3383ada41661?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/eba3058f529195e3b87d3383ada41661?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"},"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","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":5081,"description_html":"","updated_at":"2023-12-11T05:36:06.620Z","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":"REMOVED","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,"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 / 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","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}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 833ba4faac40f3b5-BOM + - 85963965aaba94b0-CCU Connection: - keep-alive Content-Encoding: @@ -93,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:24:25 GMT + - Thu, 22 Feb 2024 09:32: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=o60uvhlQMrireYxnpNdTj83TQrMvfK4DJ2APU0geZLNlMTR7JW6rqbL7Iqi59J%2BDAahRR4onfOI%2FvenhVmNGrkMTlxzNi%2F1VuLYNawNf%2BcauDTK86iAzb0IO3Zo%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=wxnhv2LTo3Aplu5kV%2B0Kx4cjJVIcPUp%2FPqNJzIoKefZWAmoSX2XK5J7pqvFmIhe15h7EXfeym7xfXDEafkGx6oSX61oYDgYUMHNqGUHh2%2BnapI0D1xw2xwr%2F%2BaMqQvm2gEdD8bYsYw4%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -108,21 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"8fc2e1c94421cb85d997e7ea8759697b" + - W/"b93d5687a775788cecc27f1846ca73f6" gitlab-lb: - - haproxy-main-55-lb-gprd + - haproxy-main-08-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '33' - ratelimit-remaining: - - '1966' - ratelimit-reset: - - '1702275925' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:25:25 GMT + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -134,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"4e52cd1d0a732fba8d1ea1a35a114f21","version":"1"}' + - '{"correlation_id":"c1f49bccef6257bed3ab08a273ad9f8f","version":"1"}' x-request-id: - - 4e52cd1d0a732fba8d1ea1a35a114f21 + - c1f49bccef6257bed3ab08a273ad9f8f x-runtime: - - '0.469988' + - '0.176741' status: code: 200 message: OK @@ -249,14 +241,14 @@ interactions: Content-Length: - '6409' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-7ccYhjYluDQ58vTRpp9PpqfPv'; style-src - 'self' 'nonce-7ccYhjYluDQ58vTRpp9PpqfPv'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-dtGLp8eswAnEhhXO7nWkGH85E'; style-src + 'self' 'nonce-dtGLp8eswAnEhhXO7nWkGH85E'; 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: - - Mon, 11 Dec 2023 06:24:26 GMT + - Thu, 22 Feb 2024 09:32:52 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -384,14 +376,14 @@ interactions: Content-Length: - '6409' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-U8iS5dtGJMLXTglGOdXFt1cyX'; style-src - 'self' 'nonce-U8iS5dtGJMLXTglGOdXFt1cyX'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-V3KC0WTYjtXonqiME52cd579K'; style-src + 'self' 'nonce-V3KC0WTYjtXonqiME52cd579K'; 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: - - Mon, 11 Dec 2023 06:24:27 GMT + - Thu, 22 Feb 2024 09:32:53 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -413,7 +405,13 @@ interactions: code: 200 message: OK - request: - body: title=%5BSN%234%5D+This+is+the+title+of+the+fourth+test+issue&description=%0AThis+is+the+body+of+the+fourth+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F4%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2ATue+Nov+21+08%3A06%3A56+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Fnov-21-2023%2F08-06%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A&labels=gggg%2Chhhh + body: '{"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)._\n", + "labels": ["gggg", "hhhh"]}' headers: Accept: - '*/*' @@ -422,40 +420,42 @@ interactions: Connection: - keep-alive Content-Length: - - '744' - Content-Type: - - application/x-www-form-urlencoded + - '619' + Content-type: + - application/json + Cookie: + - _cfuvid=o1vcfQqx8fQ0JgAURYCGs1Jdn1H_qyimtEdfLVQAumc-1708594371984-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467122,"iid":6091,"project_id":42823949,"title":"[SN#4] This + string: '{"id":142497547,"iid":13147,"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":"2023-12-11T06:24:28.738Z","updated_at":"2023-12-11T06:24:28.738Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6091","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/6091","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6091/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6091/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6091","relative":"#6091","full":"gridhead/protop2g-test#6091"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba5103c56f442-BOM + - 859639777f3193bb-CCU Connection: - keep-alive Content-Length: - - '2165' + - '2205' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:24:29 GMT + - Thu, 22 Feb 2024 09:32: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=5RyFZyUINnWcLr35ko9UV%2FOTvU%2FObfVrJSXEAPx81Ev3yJGNgqvgM7lseXUykuef%2FfrnjldzGhkmdMAKJmruiQNXOFzP3TWxanaA9m7aMTqzRP3Eb9VxDtXCUIM%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=qigdU9D2LUNB%2BdmGU%2FXHZ%2Bh6gyYSgp0BkZ6UYTULnnDyLcUvLp9aBhPz01j3SVceD7EPE6iTCGduwhD6AagGR5i2%2FMrhWm4RFknh9gSDjDKoScbRyJ932x7Z819qa9k2orm57ZFlHuk%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -464,21 +464,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"3158120a743526f151ca761337fde4d2" + - W/"fbb7412f5d1732add900ce5d7543a253" gitlab-lb: - - haproxy-main-15-lb-gprd + - haproxy-main-22-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '32' - ratelimit-remaining: - - '1967' - ratelimit-reset: - - '1702275929' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:25:29 GMT + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -490,16 +480,22 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"294198de3c6b86a41a436773b6164358","version":"1"}' + - '{"correlation_id":"abc2a87cd417bc14ef57d3db78bcbab3","version":"1"}' x-request-id: - - 294198de3c6b86a41a436773b6164358 + - abc2a87cd417bc14ef57d3db78bcbab3 x-runtime: - - '1.111509' + - '0.523402' status: code: 201 message: Created - request: - body: title=%5BSN%232%5D+This+is+the+title+of+the+second+test+issue&description=%0AThis+is+the+body+of+the+second+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2AFri+Oct+13+04%3A01%3A16+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-01%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A&labels=cccc%2Cdddd + body: '{"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)._\n", + "labels": ["cccc", "dddd"]}' headers: Accept: - '*/*' @@ -508,40 +504,42 @@ interactions: Connection: - keep-alive Content-Length: - - '744' - Content-Type: - - application/x-www-form-urlencoded + - '619' + Content-type: + - application/json + Cookie: + - _cfuvid=o1vcfQqx8fQ0JgAURYCGs1Jdn1H_qyimtEdfLVQAumc-1708594371984-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467123,"iid":6092,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142497548,"iid":13148,"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":"2023-12-11T06:24:30.401Z","updated_at":"2023-12-11T06:24:30.401Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6092","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/6092","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6092/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6092/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6092","relative":"#6092","full":"gridhead/protop2g-test#6092"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba51a09386f01-BOM + - 8596397d7ea193c2-CCU Connection: - keep-alive Content-Length: - - '2165' + - '2205' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:24:30 GMT + - Thu, 22 Feb 2024 09:32: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=oqLtwspPXr%2BgowxX96vkR8VF0BLG0JX8GC%2B2FOPgo1u9rwyUdNFz6GW4d9l7ZuJiKJrWSFQuaiU67TVIiZ1mzR0ZK5qBP%2FSBK0iE1HUQg2lORejN6%2Fi8v%2FQFOlw%3D"}],"group":"cf-nel","max_age":604800}' + - '{"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}' Server: - cloudflare Set-Cookie: '' @@ -550,21 +548,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"99a9d292e038fd297d8cc05af393f57c" + - W/"ce05ca2808c477048591afa60fd8c0f4" gitlab-lb: - - haproxy-main-01-lb-gprd + - haproxy-main-30-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '32' - ratelimit-remaining: - - '1967' - ratelimit-reset: - - '1702275930' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:25:30 GMT + - gke-cny-api referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -576,11 +564,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"520115f9e15e8f0510025005e68793d1","version":"1"}' + - '{"correlation_id":"e9b5add48721c735f1a8c38839a6e67c","version":"1"}' x-request-id: - - 520115f9e15e8f0510025005e68793d1 + - e9b5add48721c735f1a8c38839a6e67c x-runtime: - - '0.822525' + - '0.743757' 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 1cc3c7b..5d9c5a9 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-8VMbIa53y9ndwsUBIXL6lKhIA'; style-src - 'self' 'nonce-8VMbIa53y9ndwsUBIXL6lKhIA'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-s8APs3rHlvao1nN86soA0uQlY'; style-src + 'self' 'nonce-s8APs3rHlvao1nN86soA0uQlY'; 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: - - Mon, 11 Dec 2023 06:23:42 GMT + - Thu, 22 Feb 2024 09:31:55 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -71,21 +71,23 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-type: + - application/json User-Agent: - - python-requests/2.31.0 + - 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":"2023-12-11T05:36:06.620Z","namespace":{"id":13984834,"name":"Akashdeep - Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/eba3058f529195e3b87d3383ada41661?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/eba3058f529195e3b87d3383ada41661?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"},"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","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":5075,"description_html":"","updated_at":"2023-12-11T05:36:06.620Z","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":"REMOVED","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,"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 / 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","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}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 833ba3f22e07f3ed-BOM + - 8596380d4c9a93bb-CCU Connection: - keep-alive Content-Encoding: @@ -93,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:23:42 GMT + - Thu, 22 Feb 2024 09:31: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=CHGIIYYfi6s5vcz%2BF03NQEfSNAXncOlAfn5TggbVXyzpGL%2BUvvJHC3Q51xQXBZYygF6K4OjtQPr02zOIuQUmmUuUUp68VLjCd9lO1BY4XSMFLRganEgHjggqtXg%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=egYkJqoXny4yDZUbgXp5ZxSOC5JinZYM23ZFbHMD2TpVS8pi01Q%2BVeytnRzt4IzQ34ILgaArvuYSFrLYWi4YFtq1F212eDVgGbvgFmhs5V9bxeINiwY00vfjEfLFqEM9RuTzNhMGAkk%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -108,21 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"22016ec2538766f67a59ee483881cb00" + - W/"911a5aabf7d48b62911faa6137953ba1" gitlab-lb: - - haproxy-main-01-lb-gprd + - haproxy-main-59-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '24' - ratelimit-remaining: - - '1976' - ratelimit-reset: - - '1702275882' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:24:42 GMT + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -134,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"5c601adc96b8e2ab7a295b4375e6f6b9","version":"1"}' + - '{"correlation_id":"edb546fe8325f97c1b8d1b47e6e151fd","version":"1"}' x-request-id: - - 5c601adc96b8e2ab7a295b4375e6f6b9 + - edb546fe8325f97c1b8d1b47e6e151fd x-runtime: - - '0.157763' + - '0.129904' status: code: 200 message: OK @@ -249,14 +241,14 @@ interactions: Content-Length: - '6409' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-6GWRhbUfLWw4Ppr6eActWx6hp'; style-src - 'self' 'nonce-6GWRhbUfLWw4Ppr6eActWx6hp'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-TycgoSmjZBdDnoBo8nticacpq'; style-src + 'self' 'nonce-TycgoSmjZBdDnoBo8nticacpq'; 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: - - Mon, 11 Dec 2023 06:23:43 GMT + - Thu, 22 Feb 2024 09:31:57 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -384,14 +376,14 @@ interactions: Content-Length: - '6409' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-hfOXLujnxouHHcPXowTcBrwvq'; style-src - 'self' 'nonce-hfOXLujnxouHHcPXowTcBrwvq'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-RiFANMvFLYdjt9EL8Q3179UHa'; style-src + 'self' 'nonce-RiFANMvFLYdjt9EL8Q3179UHa'; 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: - - Mon, 11 Dec 2023 06:23:45 GMT + - Thu, 22 Feb 2024 09:31:58 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -413,7 +405,13 @@ interactions: code: 200 message: OK - request: - body: title=%5BSN%234%5D+This+is+the+title+of+the+fourth+test+issue&description=%0AThis+is+the+body+of+the+fourth+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F4%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2ATue+Nov+21+08%3A06%3A56+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Fnov-21-2023%2F08-06%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A&confidential=True + body: '{"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)._\n", + "confidential": true}' headers: Accept: - '*/*' @@ -422,40 +420,42 @@ interactions: Connection: - keep-alive Content-Length: - - '743' - Content-Type: - - application/x-www-form-urlencoded + - '613' + Content-type: + - application/json + Cookie: + - _cfuvid=jQkFkp.z_IyQr9tKfyQRS0uJxdxiEPBoiO76QadEXek-1708594316774-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467078,"iid":6081,"project_id":42823949,"title":"[SN#4] This + string: '{"id":142497501,"iid":13137,"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":"2023-12-11T06:23:46.138Z","updated_at":"2023-12-11T06:23:46.138Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6081","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/6081","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6081/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6081/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6081","relative":"#6081","full":"gridhead/protop2g-test#6081"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba406cd388540-BOM + - 8596381f1c2294bc-CCU Connection: - keep-alive Content-Length: - - '2151' + - '2191' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:23:46 GMT + - Thu, 22 Feb 2024 09:32: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=HP4r2RgbWupj93SW46BUqHFr3PY8KqFkbDJSj4Kx7W8PF6yA7CL1LE0XcKZzA5ZRXH3May%2B6RgZajPwUPmt7222kcVXk0%2FSGusmSZ04X8AfBmNZUM1k3V9Z2PB4%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=IWdSLOcDIeJh0C8AgYZyV4YxartEELPAV%2Fa8Ixsnhh0IQ5qjrtegSmZMoSJs1nv4up0eYDVhwe%2B50hDQlXCypRncbzsp9s0eEyvLfXfgpUdjAzEsJBzz%2FFNrZ6hGQeFJgp6y2KoDfPg%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -464,21 +464,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"39a86599edbad38d0f7d7e68f283e788" + - W/"e716399e83aeb156c42f074fa34718d7" gitlab-lb: - - haproxy-main-46-lb-gprd + - haproxy-main-58-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '24' - ratelimit-remaining: - - '1976' - ratelimit-reset: - - '1702275886' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:24:46 GMT + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -490,16 +480,22 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"6171f0d5c936e359a8d4ace9ce9a9262","version":"1"}' + - '{"correlation_id":"988117c67d8c03602d0bfbaf727f8b8d","version":"1"}' x-request-id: - - 6171f0d5c936e359a8d4ace9ce9a9262 + - 988117c67d8c03602d0bfbaf727f8b8d x-runtime: - - '0.532530' + - '0.504831' status: code: 201 message: Created - request: - body: title=%5BSN%232%5D+This+is+the+title+of+the+second+test+issue&description=%0AThis+is+the+body+of+the+second+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2AFri+Oct+13+04%3A01%3A16+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-01%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A&confidential=False + body: '{"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)._\n", + "confidential": false}' headers: Accept: - '*/*' @@ -508,40 +504,42 @@ interactions: Connection: - keep-alive Content-Length: - - '744' - Content-Type: - - application/x-www-form-urlencoded + - '614' + Content-type: + - application/json + Cookie: + - _cfuvid=jQkFkp.z_IyQr9tKfyQRS0uJxdxiEPBoiO76QadEXek-1708594316774-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467080,"iid":6082,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142497503,"iid":13138,"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":"2023-12-11T06:23:47.122Z","updated_at":"2023-12-11T06:23:47.122Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6082","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/6082","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6082/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6082/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6082","relative":"#6082","full":"gridhead/protop2g-test#6082"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba40ca8b6f456-BOM + - 85963824af6f94d0-CCU Connection: - keep-alive Content-Length: - - '2152' + - '2192' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:23:47 GMT + - Thu, 22 Feb 2024 09:32: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=Z597zGZRH5VMSLt02lzQr3WTfQyOnX1V6olKvryhTDdvr1YhFyLGr9aWPk%2B5PISa6t2sETiy7JoHqWUSzV5sdtxQADktpZNY1wkdjt7rPJshRu76drb%2BjRhS%2Flw%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=kfwYwPcLCh3%2BC7Gm1KuRPInw0zyh%2FiSLueY96IJsatZUd0jaJB7wpip1voFCkroMJfm331moAaXFna%2BpssiLK0JvH9c6zQRKuhUrOvyhcyRx8e19QdomzAqNjUMpOIuH4T2zEnX9DxQ%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -550,21 +548,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"8a90b31f56f73fcd14e066b424f4f60a" + - W/"0ab335c3ee78dae2c50bbc643acccea2" gitlab-lb: - - haproxy-main-27-lb-gprd + - haproxy-main-18-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '25' - ratelimit-remaining: - - '1975' - ratelimit-reset: - - '1702275887' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:24:47 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -576,11 +564,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"63c12684ce9e8cb2cab6f69aa2be9f1c","version":"1"}' + - '{"correlation_id":"0f17c783e9090f2dc667eb9cca8b5aee","version":"1"}' x-request-id: - - 63c12684ce9e8cb2cab6f69aa2be9f1c + - 0f17c783e9090f2dc667eb9cca8b5aee x-runtime: - - '0.517090' + - '0.507913' 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 f554f10..e589ec8 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-0CicLbsn4XjrqOHRqpeJLjU2y'; style-src - 'self' 'nonce-0CicLbsn4XjrqOHRqpeJLjU2y'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-a8p94i1yxV3hcdkyAbGDfbNmq'; style-src + 'self' 'nonce-a8p94i1yxV3hcdkyAbGDfbNmq'; 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: - - Mon, 11 Dec 2023 06:23:26 GMT + - Thu, 22 Feb 2024 09:31:36 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -71,21 +71,23 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-type: + - application/json User-Agent: - - python-requests/2.31.0 + - 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":"2023-12-11T05:36:06.620Z","namespace":{"id":13984834,"name":"Akashdeep - Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/eba3058f529195e3b87d3383ada41661?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/eba3058f529195e3b87d3383ada41661?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"},"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","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":5074,"description_html":"","updated_at":"2023-12-11T05:36:06.620Z","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":"REMOVED","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,"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 / 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","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}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 833ba38f2f021bd1-BOM + - 85963791ed4c94c4-CCU Connection: - keep-alive Content-Encoding: @@ -93,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:23:27 GMT + - Thu, 22 Feb 2024 09:31: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=t0OLDTz58s47kTGn6iKtRxxXx8FjPZovEPDo9eJx1uSLkifCYjMMAZCRHfwAj%2FHfaE5T21Y0fN8WS1l%2FgS2l3vFnnbZ%2BgFTmcpUejsNLElf6fWm%2F67FXNAcBhcw%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=koyqp4eSGTFXxF7pdmo8ONX3Gt%2BflGPLlxSvCTb2ZrKbZJ3Tn6Ww%2FvoP1UE3C8w3SgUTlyytmKQxZn04HsUDm7HMLTE3gl0g6sW1DVhUZah7K3hMocSGBFibpQvOQwQC4wFNlBO2r1E%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -108,21 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"712e9972deba9d88f04e3b24c8c7cd9b" + - W/"ef61ac7cb49ff5fb0f8a709a79e588fd" gitlab-lb: - - haproxy-main-16-lb-gprd + - haproxy-main-27-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '17' - ratelimit-remaining: - - '1982' - ratelimit-reset: - - '1702275866' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:24:26 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -134,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"f3e1a454c20a8b7c5ed46c322ac799b5","version":"1"}' + - '{"correlation_id":"85c4184f70d79d295db035bd933629b7","version":"1"}' x-request-id: - - f3e1a454c20a8b7c5ed46c322ac799b5 + - 85c4184f70d79d295db035bd933629b7 x-runtime: - - '0.160091' + - '0.195871' status: code: 200 message: OK @@ -249,14 +241,14 @@ interactions: Content-Length: - '6409' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-4Aq7uPZei3U7GyrHelYWP9l8g'; style-src - 'self' 'nonce-4Aq7uPZei3U7GyrHelYWP9l8g'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-5E1IdUkCZrHxfZYsrP6AssDWL'; style-src + 'self' 'nonce-5E1IdUkCZrHxfZYsrP6AssDWL'; 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: - - Mon, 11 Dec 2023 06:23:28 GMT + - Thu, 22 Feb 2024 09:31:37 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -384,14 +376,14 @@ interactions: Content-Length: - '6409' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-st54HgKRh5FOpyGaRx6ofm5p1'; style-src - 'self' 'nonce-st54HgKRh5FOpyGaRx6ofm5p1'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-fA9HzPeeGTj0KYAy0PeyvTwks'; style-src + 'self' 'nonce-fA9HzPeeGTj0KYAy0PeyvTwks'; 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: - - Mon, 11 Dec 2023 06:23:29 GMT + - Thu, 22 Feb 2024 09:31:38 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -413,7 +405,12 @@ interactions: code: 200 message: OK - request: - body: title=%5BSN%234%5D+This+is+the+title+of+the+fourth+test+issue&description=%0AThis+is+the+body+of+the+fourth+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F4%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2ATue+Nov+21+08%3A06%3A56+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Fnov-21-2023%2F08-06%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: '{"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)._\n"}' headers: Accept: - '*/*' @@ -422,40 +419,42 @@ interactions: Connection: - keep-alive Content-Length: - - '725' - Content-Type: - - application/x-www-form-urlencoded + - '591' + Content-type: + - application/json + Cookie: + - _cfuvid=08HLfzdUkFITf7QbA3p6RAzOTyAMBCLFUcOuW3kngVw-1708594297117-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467070,"iid":6077,"project_id":42823949,"title":"[SN#4] This + string: '{"id":142497486,"iid":13133,"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":"2023-12-11T06:23:30.248Z","updated_at":"2023-12-11T06:23:30.248Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6077","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/6077","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6077/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6077/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6077","relative":"#6077","full":"gridhead/protop2g-test#6077"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba3a39f336ef8-BOM + - 859637a28f6494bf-CCU Connection: - keep-alive Content-Length: - - '2152' + - '2192' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:23:30 GMT + - Thu, 22 Feb 2024 09:31: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=o9OvRsc7W2tw%2FDhOvQSFnrr6jKQCmk0bAX0ErIPiur1n4PPwTUby56hU%2F1nE%2BQhheoz3%2FWZCyKZegeLvrB4iWeQWHKdMO4Eqw%2B6PyWoaXiWA%2FIplMtjBAHv%2BNXE%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=2afKBhskDez9lt8a66ThMHVFH7NNEhEveiF6PcWkz0xCGgU52Vfa7r491r%2FWWJflZ05D9112JacUdrj9a6vJYhzKblQxasOIoVXqj5%2BThMnIWUTnCUSND3FKBxSNZCio05r9cxmHCgM%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -464,21 +463,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"caa77d03101891712b74dc85d42df294" + - W/"29d1a54c9fb60a793ee3fcfc222ad839" gitlab-lb: - - haproxy-main-04-lb-gprd + - haproxy-main-08-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '18' - ratelimit-remaining: - - '1982' - ratelimit-reset: - - '1702275870' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:24:30 GMT + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -490,16 +479,16 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"95a6898b47d9ba39b70afb37a91f8ad1","version":"1"}' + - '{"correlation_id":"15172eb6b90dc64ac695b01c71de955b","version":"1"}' x-request-id: - - 95a6898b47d9ba39b70afb37a91f8ad1 + - 15172eb6b90dc64ac695b01c71de955b x-runtime: - - '0.478947' + - '0.558096' status: code: 201 message: Created - request: - body: state_event=close + body: null headers: Accept: - '*/*' @@ -507,29 +496,109 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '17' + Content-type: + - application/json + Cookie: + - _cfuvid=08HLfzdUkFITf7QbA3p6RAzOTyAMBCLFUcOuW3kngVw-1708594297117-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13133 + response: + body: + string: '{"id":142497486,"iid":13133,"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}' + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 859637a85f7493bb-CCU + Connection: + - keep-alive + Content-Encoding: + - gzip Content-Type: - - application/x-www-form-urlencoded + - application/json + Date: + - Thu, 22 Feb 2024 09:31: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=mh3ED5EaqYkyP5O5RyIxUIQuII5ElIt3iJ82iCyZfcC1Vhfkc04njklOllbRnFB5kXCbECNy77ZmacTsIaMtoQJFl0r2QfQHJzKGnuF9QLthDnQwjUQyWSLe%2F5If0bK90XbjELnjvhY%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/"29d1a54c9fb60a793ee3fcfc222ad839" + gitlab-lb: + - haproxy-main-38-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":"bd2576acef739c519772efbc1be87e43","version":"1"}' + x-request-id: + - bd2576acef739c519772efbc1be87e43 + x-runtime: + - '0.133471' + 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=08HLfzdUkFITf7QbA3p6RAzOTyAMBCLFUcOuW3kngVw-1708594297117-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: PUT - uri: https://gitlab.com/api/v4/projects/42823949/issues/6077 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13133 response: body: - string: '{"id":139467070,"iid":6077,"project_id":42823949,"title":"[SN#4] This + string: '{"id":142497486,"iid":13133,"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":"2023-12-11T06:23:30.248Z","updated_at":"2023-12-11T06:23:31.624Z","closed_at":"2023-12-11T06:23:31.612Z","closed_by":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/1b6289f6c729f1ba694aa2bc296a7277?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/1b6289f6c729f1ba694aa2bc296a7277?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/6077","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/6077","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6077/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6077/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6077","relative":"#6077","full":"gridhead/protop2g-test#6077"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba3a96db029f3-BOM + - 859637ab8fbf94b0-CCU Connection: - keep-alive Content-Encoding: @@ -537,11 +606,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:23:32 GMT + - Thu, 22 Feb 2024 09:31: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=GOvF1QmhkKbiYIZ33sfuC%2FGWHm6Jcz8w6L5eERuA8lHLPytLMsfqIZJK8SnOn9HhxE2FWenn4O7jI3GRrg2gv2tkVuBYBrwXooi9%2BkMb3rHmTmU28t7sUkw3nNo%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=GSeDqq2rU2QCnIVpU46R6pVvWlzAEeBMmX1InPJtppAbsWrVjOy98mwvfbU4PFfW2WhAMpRkL%2FL5NtI3IEHiG3Bb9NrqYZs37fKkBSZlerVckchQgURdDWSrgKoROrSVWOs1m45Dfbs%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -552,21 +621,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"2a27ac2faa0f0047008ca5662ff5e133" + - W/"faa13c4c875cddda061a9985165d2a9a" gitlab-lb: - - haproxy-main-21-lb-gprd + - haproxy-main-49-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '19' - ratelimit-remaining: - - '1981' - ratelimit-reset: - - '1702275871' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:24:31 GMT + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -578,16 +637,21 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"a051f1a1e92b4e892c7d7107a5ad888c","version":"1"}' + - '{"correlation_id":"390207fdde0dcd662b456375fa393b2f","version":"1"}' x-request-id: - - a051f1a1e92b4e892c7d7107a5ad888c + - 390207fdde0dcd662b456375fa393b2f x-runtime: - - '0.505299' + - '0.418669' status: code: 200 message: OK - request: - body: title=%5BSN%232%5D+This+is+the+title+of+the+second+test+issue&description=%0AThis+is+the+body+of+the+second+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2AFri+Oct+13+04%3A01%3A16+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-01%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: '{"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)._\n"}' headers: Accept: - '*/*' @@ -596,40 +660,42 @@ interactions: Connection: - keep-alive Content-Length: - - '725' - Content-Type: - - application/x-www-form-urlencoded + - '591' + Content-type: + - application/json + Cookie: + - _cfuvid=08HLfzdUkFITf7QbA3p6RAzOTyAMBCLFUcOuW3kngVw-1708594297117-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467071,"iid":6078,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142497489,"iid":13134,"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":"2023-12-11T06:23:32.624Z","updated_at":"2023-12-11T06:23:32.624Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6078","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/6078","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6078/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6078/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6078","relative":"#6078","full":"gridhead/protop2g-test#6078"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba3b25ed68581-BOM + - 859637b4e86494b0-CCU Connection: - keep-alive Content-Length: - - '2152' + - '2192' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:23:33 GMT + - Thu, 22 Feb 2024 09:31: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=PVuTk9b5Wt11gZjGI3JvHNshhE%2BMbxMdXh5Bdb8GPRCmg9LIQ1ZfO%2B7KO3k%2FDWalPILMsG5GfAof9OjPFqsEwXl36gEBXGTHngIbmaYYvFXZXB25ty%2FCLLuAypI%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=fmigEGGslOYil1u1wBFh3RITd91SGtKQu%2BhfpIW%2BDX%2FQdvD5bh7Dn1m9JXAvS37PaOw8CFEhlZo%2Fdmf%2BpZEIeTbml1y5bPzuTrTSDBAVh6uay0p0J6RAmOkL2CNt6W2dffYdjwgSbvo%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -638,21 +704,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"9fc959d76ec35b8339298cc83fb5805f" + - W/"15c7cb677a57fadad431d0f78b9078ff" gitlab-lb: - - haproxy-main-23-lb-gprd + - haproxy-main-09-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '19' - ratelimit-remaining: - - '1980' - ratelimit-reset: - - '1702275873' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:24:33 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -664,16 +720,16 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"92075a0eb77d145e42b80dead258deee","version":"1"}' + - '{"correlation_id":"9610ea5957eda91a4831cf4a6bf7ad35","version":"1"}' x-request-id: - - 92075a0eb77d145e42b80dead258deee + - 9610ea5957eda91a4831cf4a6bf7ad35 x-runtime: - - '0.791467' + - '2.265285' status: code: 201 message: Created - request: - body: state_event=close + body: null headers: Accept: - '*/*' @@ -681,29 +737,109 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '17' + Content-type: + - application/json + Cookie: + - _cfuvid=08HLfzdUkFITf7QbA3p6RAzOTyAMBCLFUcOuW3kngVw-1708594297117-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13134 + response: + body: + string: '{"id":142497489,"iid":13134,"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}' + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 859637c57f0294be-CCU + Connection: + - keep-alive + Content-Encoding: + - gzip Content-Type: - - application/x-www-form-urlencoded + - application/json + Date: + - Thu, 22 Feb 2024 09:31: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=WPW9vaFeD%2BjK7W1l46M50oCZQEt%2B3%2FvjPTwsqnbdbyr6bTj1vZOmx0Dt8p2rqX5gn%2BvTgIEkxwvGFG9w%2F3D4SbfFZ3jNHaPjz0siQlnSMO78sd9O5KB8766uOsymcyKJzwt05bodz1U%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/"15c7cb677a57fadad431d0f78b9078ff" + 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":"26afa438c73fda73d6cb4b2b90b4b374","version":"1"}' + x-request-id: + - 26afa438c73fda73d6cb4b2b90b4b374 + x-runtime: + - '0.189474' + 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=08HLfzdUkFITf7QbA3p6RAzOTyAMBCLFUcOuW3kngVw-1708594297117-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: PUT - uri: https://gitlab.com/api/v4/projects/42823949/issues/6078 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13134 response: body: - string: '{"id":139467071,"iid":6078,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142497489,"iid":13134,"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":"2023-12-11T06:23:32.624Z","updated_at":"2023-12-11T06:23:33.597Z","closed_at":"2023-12-11T06:23:33.586Z","closed_by":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/1b6289f6c729f1ba694aa2bc296a7277?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/1b6289f6c729f1ba694aa2bc296a7277?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/6078","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/6078","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6078/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6078/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6078","relative":"#6078","full":"gridhead/protop2g-test#6078"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba3b968376efb-BOM + - 859637c928bd94b6-CCU Connection: - keep-alive Content-Encoding: @@ -711,11 +847,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:23:34 GMT + - Thu, 22 Feb 2024 09:31: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=wRR1Vr0TjfXg07K4MCtiqJLDJyEFeRzVUxlh5Eav5xAkTLrIffm%2FLXsnX1CbJWDeVVdF50T38yTtgvSA6a8D%2BYll9IfoPRlD4xSeqNSCTVVrgRFWoBIeRuDWb8E%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=lFKpESqgquWK5U8mMQ6ZmwJVyy3Lh14qbKiSx5HljH3v%2F2HMdjEFVKSm6atmgIdc6l24gRzVVcJ9XmAADyn%2Bqcl8a8UyX1ZbaPwZ5Fu5Y7G7Dotucn8ASByqFzjryvuny4qetCWV2Zk%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -726,21 +862,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"9eaab97be791d3bf15df16f558b30afe" + - W/"e541c26a87f8ec76b342811c715fc698" gitlab-lb: - - haproxy-main-30-lb-gprd + - haproxy-main-07-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '20' - ratelimit-remaining: - - '1980' - ratelimit-reset: - - '1702275874' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:24:34 GMT + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -752,11 +878,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"687566c68f30e5ca4eaf17856b79d3a9","version":"1"}' + - '{"correlation_id":"a14c1b4677a39c391c891438408454b3","version":"1"}' x-request-id: - - 687566c68f30e5ca4eaf17856b79d3a9 + - a14c1b4677a39c391c891438408454b3 x-runtime: - - '0.598773' + - '0.409586' 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 69dd58a..1fe6882 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-JbqpOvOaniAWihxm088rb0rIy'; style-src - 'self' 'nonce-JbqpOvOaniAWihxm088rb0rIy'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-3iI7oyiaGo5i2gvxUT1YdjLHI'; style-src + 'self' 'nonce-3iI7oyiaGo5i2gvxUT1YdjLHI'; 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: - - Mon, 11 Dec 2023 06:25:34 GMT + - Thu, 22 Feb 2024 09:34:15 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -71,21 +71,23 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-type: + - application/json User-Agent: - - python-requests/2.31.0 + - 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":"2023-12-11T05:36:06.620Z","namespace":{"id":13984834,"name":"Akashdeep - Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/eba3058f529195e3b87d3383ada41661?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/eba3058f529195e3b87d3383ada41661?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"},"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","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":5096,"description_html":"","updated_at":"2023-12-11T05:36:06.620Z","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":"REMOVED","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,"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 / 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","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}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 833ba6b19f45f55b-BOM + - 85963b733aa194b2-CCU Connection: - keep-alive Content-Encoding: @@ -93,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:35 GMT + - Thu, 22 Feb 2024 09:34: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=7KtHe2a52ZTwF6EZT5g0L6BZrg4%2FB3SBPhDNTf5Km9yppE9hdcoHvpqLaynimbAjBUwGgMGn5TMpF1ghw0Fr8cgyrYaRVDdiW9eqQHQUp%2BSuYzjwED0wGK9Jfrg%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=QaTWhbqxAobdpZQh87qIZYJyqRm%2Fadl%2BCVBiD%2BmumuwS1LptzVwLgtrikO7sTPM1iaKcckZ11MnAGrz7QPVDM43rBTYHlJJptW6UQmGmjokeUbPXmfx9fhU7Dk%2ByZebaFcD9Sdc66Yc%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -108,21 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"b2f1e7c90ecdb34cc89851c507954160" + - W/"d0a2c70ea4236c02abb548f94470cfa3" gitlab-lb: - - haproxy-main-21-lb-gprd + - haproxy-main-10-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '40' - ratelimit-remaining: - - '1960' - ratelimit-reset: - - '1702275995' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:35 GMT + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -134,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"1e79dc482edfc0617a471857c46d9a6f","version":"1"}' + - '{"correlation_id":"b462ba774f86dae2a6a99812d045e7b8","version":"1"}' x-request-id: - - 1e79dc482edfc0617a471857c46d9a6f + - b462ba774f86dae2a6a99812d045e7b8 x-runtime: - - '0.171928' + - '0.131233' status: code: 200 message: OK @@ -194,14 +186,14 @@ interactions: Content-Length: - '2135' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-KTYTyIgnF9zuPzCcxW9NNUg38'; style-src - 'self' 'nonce-KTYTyIgnF9zuPzCcxW9NNUg38'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-c3eOQH6wXs3lnoIvokW0vwHVK'; style-src + 'self' 'nonce-c3eOQH6wXs3lnoIvokW0vwHVK'; 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: - - Mon, 11 Dec 2023 06:25:36 GMT + - Thu, 22 Feb 2024 09:34:16 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -283,14 +275,14 @@ interactions: Content-Length: - '2784' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-Tfgq0hpVCEPbC1rhItdU0xSal'; style-src - 'self' 'nonce-Tfgq0hpVCEPbC1rhItdU0xSal'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-nLJl6lfo7f1DOjcaCVG3xPnkK'; style-src + 'self' 'nonce-nLJl6lfo7f1DOjcaCVG3xPnkK'; 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: - - Mon, 11 Dec 2023 06:25:37 GMT + - Thu, 22 Feb 2024 09:34:18 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -312,7 +304,12 @@ interactions: code: 200 message: OK - request: - body: title=%5BSN%232%5D+This+is+the+title+of+the+second+test+issue&description=%0AThis+is+the+body+of+the+second+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2AFri+Oct+13+04%3A01%3A16+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-01%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: '{"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)._\n"}' headers: Accept: - '*/*' @@ -321,40 +318,42 @@ interactions: Connection: - keep-alive Content-Length: - - '725' - Content-Type: - - application/x-www-form-urlencoded + - '591' + Content-type: + - application/json + Cookie: + - _cfuvid=wZxBLHyWv8sxe2a9ZBvNnmOU7KVrxApiyqGYpsDBcPE-1708594455986-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467161,"iid":6106,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142497613,"iid":13162,"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":"2023-12-11T06:25:38.062Z","updated_at":"2023-12-11T06:25:38.062Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6106","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/6106","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6106/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6106/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6106","relative":"#6106","full":"gridhead/protop2g-test#6106"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba6c239c6f55b-BOM + - 85963b864f6394ce-CCU Connection: - keep-alive Content-Length: - - '2152' + - '2192' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:38 GMT + - Thu, 22 Feb 2024 09:34: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=1XTl5oXVYIuvgSArvjyoGa%2FKaiT60nW9eXdHTFFSNDhc3C9KbLJjNjEkoxSIvXq%2BO13UzLmGMwUxHUr7MB1EmogHfQy87fSVZCW3AKEkxLwSgD9y05%2BZORb1yw8%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=M6CJoApC0bD94WX9l71tLLAvDWKE7XYucp3tsmHZt70MxR0kPUesAyPf5n0JyXnjTFoc18fSR7ntJGSANoNSUQN42MsuNaj4ipwAhwtGv5ucmTcRxiJsW33zbyYwurPryDDXnYwnZsE%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -363,21 +362,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"cd447674a69a9a9f003cc094055b2a1c" + - W/"f0814255128c570b7171363abdb4ee5f" gitlab-lb: - - haproxy-main-52-lb-gprd + - haproxy-main-25-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '39' - ratelimit-remaining: - - '1961' - ratelimit-reset: - - '1702275998' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:38 GMT + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -389,11 +378,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"c54ce7fa777869eb850c186de7ad6b0a","version":"1"}' + - '{"correlation_id":"b82727a8082460d1435b8dbc36ef8dc4","version":"1"}' x-request-id: - - c54ce7fa777869eb850c186de7ad6b0a + - b82727a8082460d1435b8dbc36ef8dc4 x-runtime: - - '0.464713' + - '0.864192' 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 2ca0506..cc4baf3 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-UNHDdKc8dxm7SeMBtTCfxBdZu'; style-src - 'self' 'nonce-UNHDdKc8dxm7SeMBtTCfxBdZu'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-ds551v8cy7ItYAz4zESNsBXl1'; style-src + 'self' 'nonce-ds551v8cy7ItYAz4zESNsBXl1'; 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: - - Mon, 11 Dec 2023 06:25:51 GMT + - Thu, 22 Feb 2024 09:34:32 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -71,21 +71,23 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-type: + - application/json User-Agent: - - python-requests/2.31.0 + - 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":"2023-12-11T05:36:06.620Z","namespace":{"id":13984834,"name":"Akashdeep - Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/eba3058f529195e3b87d3383ada41661?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/eba3058f529195e3b87d3383ada41661?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"},"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","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":5100,"description_html":"","updated_at":"2023-12-11T05:36:06.620Z","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":"REMOVED","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,"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 / 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","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}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 833ba718cce7f367-BOM + - 85963bdfb91394d0-CCU Connection: - keep-alive Content-Encoding: @@ -93,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:51 GMT + - Thu, 22 Feb 2024 09:34: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=Qh8rpO3xiSlXZ187MVfmVIWaEXLDSChYHwBI%2B4bwfG85ozVjGC9HOG5Rb8pTPXdXyZ5YwhIhEryB46mTXhyXoGhzgBYVucm5rh%2BMyq5nafoTt%2FcHlBqw4WPwVlM%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=PX1yag9kvcK5Fm0MONuJQH7nD5TUOIucYZnht94Mgl5IhDjXl0P0O4GxyoDIC4KxPVNgzc8WmCdmgAGPziEsMLtCi%2FpZPls7AiK%2F%2FHay363hSa1tod91mwo%2BZ4lTvigXlnqboKCQQd4%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -108,21 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"3cdcab23f52b01f711513ecc7f458d3f" + - W/"5ab72570e050bb8ee3de28cd9e6c9aee" gitlab-lb: - - haproxy-main-09-lb-gprd + - haproxy-main-52-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '37' - ratelimit-remaining: - - '1963' - ratelimit-reset: - - '1702276011' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:51 GMT + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -134,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"badd4cc596b61ff7fade40ba7f2659be","version":"1"}' + - '{"correlation_id":"a74fb650fa82c00bed74c95fc77944bb","version":"1"}' x-request-id: - - badd4cc596b61ff7fade40ba7f2659be + - a74fb650fa82c00bed74c95fc77944bb x-runtime: - - '0.124643' + - '0.269872' status: code: 200 message: OK @@ -194,14 +186,14 @@ interactions: Content-Length: - '2135' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-OWASJOMP7FlXbaDuIt3ceL3MV'; style-src - 'self' 'nonce-OWASJOMP7FlXbaDuIt3ceL3MV'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-V99Q2DzcvABRFMO609cgIRNpE'; style-src + 'self' 'nonce-V99Q2DzcvABRFMO609cgIRNpE'; 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: - - Mon, 11 Dec 2023 06:25:52 GMT + - Thu, 22 Feb 2024 09:34:34 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -283,14 +275,14 @@ interactions: Content-Length: - '2784' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-e9UaV6ZSLAa5nm2GEiELyYzJj'; style-src - 'self' 'nonce-e9UaV6ZSLAa5nm2GEiELyYzJj'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-plhbS8Owz8CBqKF6NFgv4gUKY'; style-src + 'self' 'nonce-plhbS8Owz8CBqKF6NFgv4gUKY'; 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: - - Mon, 11 Dec 2023 06:25:54 GMT + - Thu, 22 Feb 2024 09:34:35 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -312,7 +304,12 @@ interactions: code: 200 message: OK - request: - body: title=%5BSN%232%5D+This+is+the+title+of+the+second+test+issue&description=%0AThis+is+the+body+of+the+second+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2AFri+Oct+13+04%3A01%3A16+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-01%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: '{"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)._\n"}' headers: Accept: - '*/*' @@ -321,40 +318,42 @@ interactions: Connection: - keep-alive Content-Length: - - '725' - Content-Type: - - application/x-www-form-urlencoded + - '591' + Content-type: + - application/json + Cookie: + - _cfuvid=SNtFN2cIGEdggXkMXyq7pHw205f7wDG5waRYtEbdzAE-1708594473474-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467170,"iid":6110,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142497625,"iid":13166,"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":"2023-12-11T06:25:54.937Z","updated_at":"2023-12-11T06:25:54.937Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6110","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/6110","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6110/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6110/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6110","relative":"#6110","full":"gridhead/protop2g-test#6110"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba72b5ca1f2da-BOM + - 85963bf0ae6794b6-CCU Connection: - keep-alive Content-Length: - - '2152' + - '2192' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:25:55 GMT + - Thu, 22 Feb 2024 09:34: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=7pTIwJh6dLvjedPPReB0ME2lbUES1q1rgsCKchWDiftTE2DSHAFBytyXGXnfFr69Mj8w1gdBRuYWE3QO29vXr5TcFuPutDOjnRw2XojiRsFSGLnvpjUtw%2FzxoVg%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=Xt5Sj1f9tKWEzMpYkSTUfYVspD1mO7hm1pjYA%2BJ06WxuDWyiSf4%2BrElJjbPfVvCAI5qZVm4BNZwlIIdVjMAtHCPgvt58Vt52VWLySYJPufD6gJtmI7fW5dpddBG%2FYABjaK62PgdNW%2Bg%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -363,21 +362,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"3b6d661bfc1e44cd6edecb4b00c785a8" + - W/"55f6d14a531987d9163d20cbeacbfc19" gitlab-lb: - - haproxy-main-33-lb-gprd + - haproxy-main-30-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '36' - ratelimit-remaining: - - '1964' - ratelimit-reset: - - '1702276015' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:26:55 GMT + - gke-cny-api referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -389,11 +378,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"695c2f0143c012366cc320a1e5161b5e","version":"1"}' + - '{"correlation_id":"f567f53529f8189164a1d30fb84eca69","version":"1"}' x-request-id: - - 695c2f0143c012366cc320a1e5161b5e + - f567f53529f8189164a1d30fb84eca69 x-runtime: - - '0.598108' + - '0.592401' 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 36d19be..d45a7ec 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 @@ -34,14 +34,14 @@ interactions: Content-Length: - '902' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-E7rsbXuQCNY2hx8cv5Dw6SSPC'; style-src - 'self' 'nonce-E7rsbXuQCNY2hx8cv5Dw6SSPC'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-qyacHFhlerreaLBuxmR5SMdMN'; style-src + 'self' 'nonce-qyacHFhlerreaLBuxmR5SMdMN'; 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: - - Mon, 11 Dec 2023 06:23:01 GMT + - Thu, 22 Feb 2024 09:31:10 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -71,21 +71,23 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-type: + - application/json User-Agent: - - python-requests/2.31.0 + - 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":"2023-12-11T05:36:06.620Z","namespace":{"id":13984834,"name":"Akashdeep - Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/eba3058f529195e3b87d3383ada41661?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/eba3058f529195e3b87d3383ada41661?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"},"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","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":5066,"description_html":"","updated_at":"2023-12-11T05:36:06.620Z","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":"REMOVED","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,"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 / 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","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}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 833ba2f739988595-BOM + - 859636f28c2594c2-CCU Connection: - keep-alive Content-Encoding: @@ -93,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:23:02 GMT + - Thu, 22 Feb 2024 09:31: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=pzYT5nOSPPPeDU75nF%2FzbLJs33SeeW6vWdj9bPZNYfyzCZ6q54HNkcORzHFGLo1eI6RvcGwLnpQS2LjHwhEBvGdHi3tF%2BzMTdh%2F%2BZOL5WnVrKv46ow%2BBsoUu4og%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=nDlYU%2FSh%2F3gX%2B7XUjCexcn33FgwRhqw2MZ80TseR4OldBeK7BdxvILatBXa3f1HPGmPjAxAyZPzZgXKRiZYOttktxQSLT%2B6ttUQ9jDtDjT7Vxnni0ugC3JS2EJVgCbakTe6HkRK1sw0%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -108,21 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"1553e24dd4dd8c7d489abddd09e4da09" + - W/"c3385c91fd4a451d4eed0fd48fb80de9" gitlab-lb: - - haproxy-main-18-lb-gprd + - haproxy-main-14-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '10' - ratelimit-remaining: - - '1990' - ratelimit-reset: - - '1702275842' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:24:02 GMT + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -134,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"4578f706ae491c001eedc1467fcad44b","version":"1"}' + - '{"correlation_id":"35ad21e71cb2bde9b56bae7b506a232e","version":"1"}' x-request-id: - - 4578f706ae491c001eedc1467fcad44b + - 35ad21e71cb2bde9b56bae7b506a232e x-runtime: - - '0.184971' + - '0.161947' status: code: 200 message: OK @@ -249,14 +241,14 @@ interactions: Content-Length: - '6409' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-chwQY8RsbjHUWWZSRj4aSRsJr'; style-src - 'self' 'nonce-chwQY8RsbjHUWWZSRj4aSRsJr'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-4yx6UdqhfoxiTGtYMhVYpE8Z1'; style-src + 'self' 'nonce-4yx6UdqhfoxiTGtYMhVYpE8Z1'; 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: - - Mon, 11 Dec 2023 06:23:03 GMT + - Thu, 22 Feb 2024 09:31:12 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -384,14 +376,14 @@ interactions: Content-Length: - '6409' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-3RrEAFfamSzZQwcM8hqRWiTEY'; style-src - 'self' 'nonce-3RrEAFfamSzZQwcM8hqRWiTEY'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-BAJ1CjecUh7Yk7ctEJXl5RXiw'; style-src + 'self' 'nonce-BAJ1CjecUh7Yk7ctEJXl5RXiw'; 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: - - Mon, 11 Dec 2023 06:23:04 GMT + - Thu, 22 Feb 2024 09:31:13 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -413,7 +405,12 @@ interactions: code: 200 message: OK - request: - body: title=%5BSN%234%5D+This+is+the+title+of+the+fourth+test+issue&description=%0AThis+is+the+body+of+the+fourth+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F4%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2ATue+Nov+21+08%3A06%3A56+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Fnov-21-2023%2F08-06%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: '{"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)._\n"}' headers: Accept: - '*/*' @@ -422,40 +419,42 @@ interactions: Connection: - keep-alive Content-Length: - - '725' - Content-Type: - - application/x-www-form-urlencoded + - '591' + Content-type: + - application/json + Cookie: + - _cfuvid=6QkKhRC7He.gvi2wvuCs3V.dvlN8Xrfu4lZYF03c4CI-1708594271627-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467054,"iid":6069,"project_id":42823949,"title":"[SN#4] This + string: '{"id":142497473,"iid":13125,"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":"2023-12-11T06:23:05.766Z","updated_at":"2023-12-11T06:23:05.766Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6069","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/6069","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6069/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6069/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6069","relative":"#6069","full":"gridhead/protop2g-test#6069"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba30aab4d85e5-BOM + - 859637037da393c5-CCU Connection: - keep-alive Content-Length: - - '2152' + - '2192' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:23:06 GMT + - Thu, 22 Feb 2024 09:31: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=PfR229Yiq9EhgvoZR9RfRPPNjnJ23%2FkK6Ka5P7OpA4VGwqKdDNdU8GARF6FUFEgY0EVhgcEsUgYGqYiHNy2vxgAWHtLpfQlcz7IzYUWEKV0St7GHTKTHJDcqWEQ%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=1XtNmvpU2Va7KthqB3OEeqobyJXMXlKbNGBHNjRikOcu3QtJ1Kxi5ek%2FSHIYEY3y10Jh2AB0xjl2FofLrc3UEbXbSgOxzMmKLDKHclYkVTvnfEZI%2BFWhOPn8kcng2il71BtZCrPY6Pg%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -464,21 +463,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"b73f4bf9c4830506bec605895d62ebc2" + - W/"ef9e2c3f7d1b9aff154b09f58cbe7648" gitlab-lb: - - haproxy-main-05-lb-gprd + - haproxy-main-52-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '10' - ratelimit-remaining: - - '1990' - ratelimit-reset: - - '1702275845' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:24:05 GMT + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -490,16 +479,21 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"68a3200766372a238610cb23da8c2d29","version":"1"}' + - '{"correlation_id":"141245e8620ce12273ccef69252f3da9","version":"1"}' x-request-id: - - 68a3200766372a238610cb23da8c2d29 + - 141245e8620ce12273ccef69252f3da9 x-runtime: - - '0.449879' + - '1.285756' status: code: 201 message: Created - request: - body: title=%5BSN%232%5D+This+is+the+title+of+the+second+test+issue&description=%0AThis+is+the+body+of+the+second+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2AFri+Oct+13+04%3A01%3A16+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-01%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: '{"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)._\n"}' headers: Accept: - '*/*' @@ -508,40 +502,42 @@ interactions: Connection: - keep-alive Content-Length: - - '725' - Content-Type: - - application/x-www-form-urlencoded + - '591' + Content-type: + - application/json + Cookie: + - _cfuvid=6QkKhRC7He.gvi2wvuCs3V.dvlN8Xrfu4lZYF03c4CI-1708594271627-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467055,"iid":6070,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142497474,"iid":13126,"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":"2023-12-11T06:23:06.726Z","updated_at":"2023-12-11T06:23:06.726Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6070","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/6070","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6070/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6070/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6070","relative":"#6070","full":"gridhead/protop2g-test#6070"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba30fdb5af480-BOM + - 8596370ddd6694bc-CCU Connection: - keep-alive Content-Length: - - '2152' + - '2192' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:23:07 GMT + - Thu, 22 Feb 2024 09:31: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=qAojOhr3VxJVx27Oldh369eyOLzHDixWdSPqMtwjiZsCxZmdbSmAzwHfR0%2FCm%2FR3gDykVWMT3gfhLOnC91BhOcSheWTKOyT1BWRiuZ8XBtK%2BWc7TINs4wK51KHU%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=JYJ6WRP9H8EsDfBjk85kpG2oRNxHP81X3MBYLhNKAYeZ%2BAUyGVNGrEonC6vh%2FIinJ5Y8KgrSIeHCJodUUWqbEEBVkY6i9M6adhURTFunYT10JlGYpV2I%2FCIsDNxwZQ8HN2KDMsKSjUs%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -550,21 +546,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"d2f7627c592ae9b748042916e36e6272" + - W/"243e044c77f1b8546436773287267dd7" gitlab-lb: - - haproxy-main-54-lb-gprd + - haproxy-main-39-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '11' - ratelimit-remaining: - - '1989' - ratelimit-reset: - - '1702275847' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:24:07 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -576,11 +562,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"e0d7db9944450c1725195124d0114043","version":"1"}' + - '{"correlation_id":"3047fd757d93b019f59eaa25461c6572","version":"1"}' x-request-id: - - e0d7db9944450c1725195124d0114043 + - 3047fd757d93b019f59eaa25461c6572 x-runtime: - - '0.922068' + - '0.525613' 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 648ec57..5bad877 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-2oKUzkTonhpsrKrA9GEMPY0eO'; style-src - 'self' 'nonce-2oKUzkTonhpsrKrA9GEMPY0eO'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-t3Bgo1GsPTBNrGtGkvZAFN3fX'; style-src + 'self' 'nonce-t3Bgo1GsPTBNrGtGkvZAFN3fX'; 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: - - Mon, 11 Dec 2023 06:23:48 GMT + - Thu, 22 Feb 2024 09:32:02 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -71,21 +71,23 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-type: + - application/json User-Agent: - - python-requests/2.31.0 + - 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":"2023-12-11T05:36:06.620Z","namespace":{"id":13984834,"name":"Akashdeep - Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/eba3058f529195e3b87d3383ada41661?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/eba3058f529195e3b87d3383ada41661?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"},"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","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":5076,"description_html":"","updated_at":"2023-12-11T05:36:06.620Z","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":"REMOVED","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,"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 / 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","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}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 833ba4193aa4f2ff-BOM + - 859638331eed94bc-CCU Connection: - keep-alive Content-Encoding: @@ -93,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:23:49 GMT + - Thu, 22 Feb 2024 09:32: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=%2BlqO2EahN8ge4ULXyNrSmKtzVqCONs1EcoZH1irpnhaFQapUPe57y%2F%2Bz19XXsubkfjU7HDYh0hCsuAoanTKiJQqPkhhGwk2hGUr4CkHzLCErUWh2lwB5sbvXAw8%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=bu8LZhDbspApjLhtQ9wr5SyCwrLY%2BkPB1FUzn5MiOl%2Fe444EYbh6byQEvq5LO6XQ8UGjNc5FkdWI4IP91ZtPaaXKEnSf%2BYtf7KLtDhop9BMvGOr%2BYO4gLXqBJZyk1JJKCxh7Aj2CzAY%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -108,21 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"f0da5adbd03853b83a57fdfd022f5133" + - W/"1bd38e8b719946efa61be57d021ea4a9" gitlab-lb: - - haproxy-main-57-lb-gprd + - haproxy-main-39-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '26' - ratelimit-remaining: - - '1974' - ratelimit-reset: - - '1702275888' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:24:48 GMT + - gke-cny-api referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -134,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"5703da08751606f1257f39a6d9953d88","version":"1"}' + - '{"correlation_id":"4a4be2a5176ea532f540fcea920243d8","version":"1"}' x-request-id: - - 5703da08751606f1257f39a6d9953d88 + - 4a4be2a5176ea532f540fcea920243d8 x-runtime: - - '0.128647' + - '0.353751' status: code: 200 message: OK @@ -194,14 +186,14 @@ interactions: Content-Length: - '2135' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-dYpdqH93kp8CSuwD930XwkqQT'; style-src - 'self' 'nonce-dYpdqH93kp8CSuwD930XwkqQT'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-eqKpbJm6LyU6t1RCFWxpbnC5l'; style-src + 'self' 'nonce-eqKpbJm6LyU6t1RCFWxpbnC5l'; 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: - - Mon, 11 Dec 2023 06:23:50 GMT + - Thu, 22 Feb 2024 09:32:03 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -223,7 +215,12 @@ interactions: code: 200 message: OK - request: - body: title=%5BSN%231%5D+This+is+the+title+of+the+first+test+issue&description=%0AThis+is+the+body+of+the+first+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2AFri+Oct+13+03%3A57%3A42+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F03-57%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + 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 + 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)._\n"}' headers: Accept: - '*/*' @@ -232,40 +229,42 @@ interactions: Connection: - keep-alive Content-Length: - - '723' - Content-Type: - - application/x-www-form-urlencoded + - '589' + Content-type: + - application/json + Cookie: + - _cfuvid=QIMAcqWphlvcF0PkCva6tY7GGa34hGPWvVVEvsL5yxE-1708594323086-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467082,"iid":6083,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142497508,"iid":13139,"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":"2023-12-11T06:23:50.885Z","updated_at":"2023-12-11T06:23:50.885Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6083","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/6083","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6083/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6083/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6083","relative":"#6083","full":"gridhead/protop2g-test#6083"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba4247dd44da9-BOM + - 8596383f8f1e93c5-CCU Connection: - keep-alive Content-Length: - - '2150' + - '2190' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:23:51 GMT + - Thu, 22 Feb 2024 09:32: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=gT8Y%2F1S0%2FFIuQ%2F8HJJciIpP8bxc0yBbXNZdPant9FXpKtTdznm6ilVeGt1a9FYPcH%2BgQ3ccGbdzszaQQedO99Teo0sovleQZIpx8QVxhqhUO1P3ZVeDb7oEfq7w%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=M9pAvJoxbuoaATjltRpT44M5M2NStoMsPNzxH0UCNiaGvOqOsuvml8mRXgeoeBhg674NbI831rDEZupbmlhT87oZVcFPiXXELgu%2FEjRy0dv23PR0hreDD5AdXyOr0EODrVaEraVBAc8%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -274,21 +273,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"050acf99e498006a4a8a73e05502fb87" + - W/"ca6be91d7c9173a9588de4526d551ea4" gitlab-lb: - - haproxy-main-52-lb-gprd + - haproxy-main-53-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '26' - ratelimit-remaining: - - '1973' - ratelimit-reset: - - '1702275891' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:24:51 GMT + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -300,16 +289,16 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"22d7ba3c9875f829d6f87d75be03a009","version":"1"}' + - '{"correlation_id":"ba2ef1f713b9c50934c50618ae3f970c","version":"1"}' x-request-id: - - 22d7ba3c9875f829d6f87d75be03a009 + - ba2ef1f713b9c50934c50618ae3f970c x-runtime: - - '0.781540' + - '0.813273' status: code: 201 message: Created - request: - body: body=%0A%2A%2AMetadata+Update+from+%26t0xic0der%2A%2A%3A%0A-+Issue+tagged+with%3A+aaaa%2C+bbbb%0A%0A_This+comment+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%23comment-878471%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+under%0A%5Bthis%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%29+issue+ticket+on+a+Pagure+repository%2C+%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+on%0A%5B%2A%2AFri+Oct+13+04%3A01%3A39+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-01%29._%0A%0A_This+comment+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: null headers: Accept: - '*/*' @@ -317,39 +306,125 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '800' + Content-type: + - application/json + Cookie: + - _cfuvid=QIMAcqWphlvcF0PkCva6tY7GGa34hGPWvVVEvsL5yxE-1708594323086-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13139 + response: + body: + string: '{"id":142497508,"iid":13139,"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}' + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 859638473cbb93cb-CCU + Connection: + - keep-alive + Content-Encoding: + - gzip Content-Type: - - application/x-www-form-urlencoded + - application/json + Date: + - Thu, 22 Feb 2024 09:32: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=pVI%2FNcT8TnBWRkqRh9t1tdc30pRbeOD027qM%2FVKikvx3anCczKNcUuIE7qzalmVmOpqRq6%2FS0Ff6dIaNnJUoZgqux6Y%2BXC9VLl3%2F6Y7%2B4A2OrRwLajV4ig6MrCCi%2BAwzlkI9YoMyPnU%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/"ca6be91d7c9173a9588de4526d551ea4" + gitlab-lb: + - haproxy-main-21-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":"ed71fb7e6e2775b7f530bba2138a64a0","version":"1"}' + x-request-id: + - ed71fb7e6e2775b7f530bba2138a64a0 + x-runtime: + - '0.123947' + status: + code: 200 + message: OK +- request: + body: '{"body": "\n**Metadata Update from &t0xic0der**:\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)._\n"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-type: + - application/json + Cookie: + - _cfuvid=QIMAcqWphlvcF0PkCva6tY7GGa34hGPWvVVEvsL5yxE-1708594323086-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/6083/notes + uri: https://gitlab.com/api/v4/projects/42823949/issues/13139/discussions response: body: - string: '{"id":1687900268,"type":null,"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) + string: '{"id":"ff4797bf0c7748b4c708a0dc89b801f0cc9ccbcd","individual_note":false,"notes":[{"id":1784522894,"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/1b6289f6c729f1ba694aa2bc296a7277?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2023-12-11T06:23:52.088Z","updated_at":"2023-12-11T06:23:52.088Z","system":false,"noteable_id":139467082,"noteable_type":"Issue","project_id":42823949,"resolvable":false,"confidential":false,"internal":false,"noteable_iid":6083,"commands_changes":{}}' + 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":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba42bed20f390-BOM + - 8596384f199294b6-CCU Connection: - keep-alive Content-Length: - - '1267' + - '1450' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:23:52 GMT + - Thu, 22 Feb 2024 09:32: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=3wKLXFJthBOexI9dRM46wX%2BumKQs0j3JwsDGKeQpzRuS43s07GoKC6SN3BUdaZZH%2FTOjWkfZW0Oi98JulJaS7qgHJhQjgJsnvb61LboqnAkeoxKRlcQ940NWXcA%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=uOGyoF%2FY%2FIdMDhrbPgpGwaDO2X8ofpbqBF8Xk1kkZlSezdcHISYOqsZlFFHL6NWEK11mxflRSlTJDE80Fd8asdjs4i8OM6nBqD%2BoR%2FUR3cvxgGt9dJTm4WQg1Ga2StFbgu9D%2FPx3JDE%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -358,21 +433,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"6c8049b5d9cdd4868726ed3001c591bb" + - W/"3d10651cccb2992d72ec4cb3833ba61c" gitlab-lb: - - haproxy-main-20-lb-gprd + - haproxy-main-47-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '27' - ratelimit-remaining: - - '1973' - ratelimit-reset: - - '1702275892' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:24:52 GMT + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -384,16 +449,16 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"b89feebd28cb4604ca312901ad4b99bb","version":"1"}' + - '{"correlation_id":"854400135bdb1ce290b5395a8d514f19","version":"1"}' x-request-id: - - b89feebd28cb4604ca312901ad4b99bb + - 854400135bdb1ce290b5395a8d514f19 x-runtime: - - '0.377284' + - '0.472396' status: code: 201 message: Created - request: - body: body=%0AThis+is+the+first+comment+under+the+first+test+issue%0A%0A_This+comment+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%23comment-878473%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+under%0A%5Bthis%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%29+issue+ticket+on+a+Pagure+repository%2C+%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+on%0A%5B%2A%2AFri+Oct+13+04%3A04%3A40+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-04%29._%0A%0A_This+comment+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: null headers: Accept: - '*/*' @@ -401,39 +466,125 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '766' + Content-type: + - application/json + Cookie: + - _cfuvid=QIMAcqWphlvcF0PkCva6tY7GGa34hGPWvVVEvsL5yxE-1708594323086-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13139 + response: + body: + string: '{"id":142497508,"iid":13139,"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}' + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 859638549e1e94b0-CCU + Connection: + - keep-alive + Content-Encoding: + - gzip Content-Type: - - application/x-www-form-urlencoded + - application/json + Date: + - Thu, 22 Feb 2024 09:32: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=cofq%2BFMKzlKZsToheM%2Bp5KCAmrfSIpCDuA3jFhcit2qvBeIki%2BrbBgd%2B8rel8bYLDFF4txkg6ff%2Fur3bMNAPEqHF9I%2FCFrAGdjO5MJKFEmjQ3JHJe8%2BCdG99ctflLGyXB0yw%2BB9PiUw%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/"1e80cc8f1dc5f6347afc005a6e6f6ed2" + gitlab-lb: + - haproxy-main-01-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":"eab1f999edb7c6f749b7544a20f8bc39","version":"1"}' + x-request-id: + - eab1f999edb7c6f749b7544a20f8bc39 + x-runtime: + - '0.210959' + status: + code: 200 + message: OK +- request: + body: '{"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)._\n"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '610' + Content-type: + - application/json + Cookie: + - _cfuvid=QIMAcqWphlvcF0PkCva6tY7GGa34hGPWvVVEvsL5yxE-1708594323086-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/6083/notes + uri: https://gitlab.com/api/v4/projects/42823949/issues/13139/discussions response: body: - string: '{"id":1687900271,"type":null,"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) + string: '{"id":"3c8276f0e06fa1eca9e22f5cb3ffcc61f7bea225","individual_note":false,"notes":[{"id":1784522955,"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/1b6289f6c729f1ba694aa2bc296a7277?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2023-12-11T06:23:52.859Z","updated_at":"2023-12-11T06:23:52.859Z","system":false,"noteable_id":139467082,"noteable_type":"Issue","project_id":42823949,"resolvable":false,"confidential":false,"internal":false,"noteable_iid":6083,"commands_changes":{}}' + 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":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba4306bdff31f-BOM + - 85963858199794be-CCU Connection: - keep-alive Content-Length: - - '1245' + - '1428' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:23:53 GMT + - Thu, 22 Feb 2024 09:32: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=K1ziWHZtQ7LQOIEroDF6NN59l24Dvic56AKFYdMiEeIeC0lilvgmVyhbPFdMDXi80HQuIhbZ6m9YbVJ6t%2FDLnMf%2B3HZd0Rojj5GNRjmYj3wENgsdANRdZ3%2B9LUE%3D"}],"group":"cf-nel","max_age":604800}' + - '{"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}' Server: - cloudflare Set-Cookie: '' @@ -442,21 +593,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"f23dde53df641370a2deb2fda3d4a969" + - W/"615e64119029c4e0e983d346345b65f4" gitlab-lb: - - haproxy-main-19-lb-gprd + - haproxy-main-07-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '28' - ratelimit-remaining: - - '1972' - ratelimit-reset: - - '1702275892' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:24:52 GMT + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -468,16 +609,16 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"e442e28edc53b3850e27d92744d1b56e","version":"1"}' + - '{"correlation_id":"5c0f315ddc1a10512675aa8887e1ed13","version":"1"}' x-request-id: - - e442e28edc53b3850e27d92744d1b56e + - 5c0f315ddc1a10512675aa8887e1ed13 x-runtime: - - '0.464486' + - '2.068261' status: code: 201 message: Created - request: - body: body=%0AThis+is+the+second+comment+under+the+first+test+issue%0A%0A_This+comment+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%23comment-878474%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+under%0A%5Bthis%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%29+issue+ticket+on+a+Pagure+repository%2C+%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+on%0A%5B%2A%2AFri+Oct+13+04%3A05%3A24+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-05%29._%0A%0A_This+comment+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: null headers: Accept: - '*/*' @@ -485,39 +626,125 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '767' + Content-type: + - application/json + Cookie: + - _cfuvid=QIMAcqWphlvcF0PkCva6tY7GGa34hGPWvVVEvsL5yxE-1708594323086-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13139 + response: + body: + string: '{"id":142497508,"iid":13139,"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}' + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 85963867ca1a93cb-CCU + Connection: + - keep-alive + Content-Encoding: + - gzip Content-Type: - - application/x-www-form-urlencoded + - application/json + Date: + - Thu, 22 Feb 2024 09:32: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=q6UKNW0C2F%2F1RXzchrw7Ev9J3pzMQRvb0WXiyEKZsshefe%2BprfJe0ppBitXtiVOTrqwlEsAG3%2B9hm1N%2BfDfvQm2VAmHkKevmPTyTgTv9BIH%2BC8B7H0SsVXHMvImuhdWNpvfsT6nBtOo%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/"3fd80d08de2768e64b37c084ef66ea02" + 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":"0af1bbb75277b12f5cdac8b793771f76","version":"1"}' + x-request-id: + - 0af1bbb75277b12f5cdac8b793771f76 + x-runtime: + - '0.170797' + status: + code: 200 + message: OK +- request: + body: '{"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)._\n"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '611' + Content-type: + - application/json + Cookie: + - _cfuvid=QIMAcqWphlvcF0PkCva6tY7GGa34hGPWvVVEvsL5yxE-1708594323086-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/6083/notes + uri: https://gitlab.com/api/v4/projects/42823949/issues/13139/discussions response: body: - string: '{"id":1687900277,"type":null,"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) + string: '{"id":"439cc9abfa44d68b95a886b5d44c7219eab6c157","individual_note":false,"notes":[{"id":1784523037,"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/1b6289f6c729f1ba694aa2bc296a7277?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2023-12-11T06:23:53.728Z","updated_at":"2023-12-11T06:23:53.728Z","system":false,"noteable_id":139467082,"noteable_type":"Issue","project_id":42823949,"resolvable":false,"confidential":false,"internal":false,"noteable_iid":6083,"commands_changes":{}}' + 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":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba4362a8cf29a-BOM + - 8596386b28f093bb-CCU Connection: - keep-alive Content-Length: - - '1246' + - '1429' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:23:53 GMT + - Thu, 22 Feb 2024 09:32: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=2OCI9gB3Q4oGxyyslYoX1bFUYL5%2BlCi%2B5z%2BzCTR93FOCycXL8kxDpOKGlhbtF1Fd%2B654OIYpOP%2FmudU0DN9OZMdf14w5LWMLWpS1%2FgpjVd7RwwyqPiXCFfQ68K8%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=qS7t6XQWL%2Ft1JsZuBcEraKt8nXPztaz1UumUBFPo%2BWy1jKDqtl42rqdQzcJhVg9A3D9fViUiTckCVcU3Wdiv3DHRuEt2mJK770JOyyV7nn%2BPmHeGIHfpPbumhfIY0uO10gvzRcZkzZ0%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -526,21 +753,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"d5bf5aea762b1e2b8a68ad86c5b93afa" + - W/"da89682b86e3791a57bc0947e0ffe441" gitlab-lb: - - haproxy-main-36-lb-gprd + - haproxy-main-01-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '29' - ratelimit-remaining: - - '1971' - ratelimit-reset: - - '1702275893' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:24:53 GMT + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -552,11 +769,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"98649c3e68a5ccfff2ea12f800ca7f15","version":"1"}' + - '{"correlation_id":"d2e8670f276afe85d6e792d075141387","version":"1"}' x-request-id: - - 98649c3e68a5ccfff2ea12f800ca7f15 + - d2e8670f276afe85d6e792d075141387 x-runtime: - - '0.366858' + - '0.832991' 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 475b285..fe1a29f 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-YD4uIajt9PAz1Wj2muGgA0XPA'; style-src - 'self' 'nonce-YD4uIajt9PAz1Wj2muGgA0XPA'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-AufEq5W9XT0VBKdtMwedS03oW'; style-src + 'self' 'nonce-AufEq5W9XT0VBKdtMwedS03oW'; 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: - - Mon, 11 Dec 2023 06:24:03 GMT + - Thu, 22 Feb 2024 09:32:31 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -71,21 +71,23 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-type: + - application/json User-Agent: - - python-requests/2.31.0 + - 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":"2023-12-11T05:36:06.620Z","namespace":{"id":13984834,"name":"Akashdeep - Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/eba3058f529195e3b87d3383ada41661?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/eba3058f529195e3b87d3383ada41661?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"},"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","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":5077,"description_html":"","updated_at":"2023-12-11T05:36:06.620Z","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":"REMOVED","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,"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 / 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","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}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 833ba47a7f6184cb-BOM + - 859638e83db893c2-CCU Connection: - keep-alive Content-Encoding: @@ -93,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:24:04 GMT + - Thu, 22 Feb 2024 09:32: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=ta2zD3Bl1eYRYUNHeGjh1DsVVHCwkIvfzehXnDMykQ39dimEP6NJnV0WvK%2BFXO2IxKBIB5U3pzZ6I7lnhQj78yKcL325p5bzlyVE%2BH7232ERwhZc5%2BkFTi%2FkPoo%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=BLjrqw9yiNljbqNchDG0lz2p6yTwX9yKQ%2FhQy0H8ifKgqBXLkr23ATQSdLn8U3R1nvPIy3s8fOgOYPv%2F8b6ajrp%2FYEQr60hE%2FpRgbxXWwWbbPvRPzTMl6u3yHFzukEpnTNnZ9INBfMg%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -108,21 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"52e87c40f723a14847db33a32e95c09c" + - W/"a937f65292ea5589e6eb054dc9a6e1f6" gitlab-lb: - - haproxy-main-05-lb-gprd + - haproxy-main-03-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '35' - ratelimit-remaining: - - '1965' - ratelimit-reset: - - '1702275904' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:25:04 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -134,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"90ed1f12a89b32c31ad63c539ef4fe8e","version":"1"}' + - '{"correlation_id":"f0788468c235ece35833ca1152bc36fb","version":"1"}' x-request-id: - - 90ed1f12a89b32c31ad63c539ef4fe8e + - f0788468c235ece35833ca1152bc36fb x-runtime: - - '0.124348' + - '0.164462' status: code: 200 message: OK @@ -194,14 +186,14 @@ interactions: Content-Length: - '2135' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-cUAgwiPPIfnCbr0z16tUXHVNM'; style-src - 'self' 'nonce-cUAgwiPPIfnCbr0z16tUXHVNM'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-aVJA5ZdZjeIl5Xc5dkUxQIORY'; style-src + 'self' 'nonce-aVJA5ZdZjeIl5Xc5dkUxQIORY'; 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: - - Mon, 11 Dec 2023 06:24:05 GMT + - Thu, 22 Feb 2024 09:32:32 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 d87fa03..51eb81c 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-oOvJJLCzFPnrKbDGF1jsXLfbn'; style-src - 'self' 'nonce-oOvJJLCzFPnrKbDGF1jsXLfbn'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-jsa9ZeQlh630wTAdy5CP0Lv0o'; style-src + 'self' 'nonce-jsa9ZeQlh630wTAdy5CP0Lv0o'; 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: - - Mon, 11 Dec 2023 06:23:54 GMT + - Thu, 22 Feb 2024 09:32:13 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -71,21 +71,23 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-type: + - application/json User-Agent: - - python-requests/2.31.0 + - 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":"2023-12-11T05:36:06.620Z","namespace":{"id":13984834,"name":"Akashdeep - Dhar","path":"gridhead","kind":"user","full_path":"gridhead","parent_id":null,"avatar_url":"https://secure.gravatar.com/avatar/eba3058f529195e3b87d3383ada41661?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/eba3058f529195e3b87d3383ada41661?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"},"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","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":5077,"description_html":"","updated_at":"2023-12-11T05:36:06.620Z","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":"REMOVED","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,"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 / 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","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}}' headers: CF-Cache-Status: - MISS CF-RAY: - - 833ba441bb85f452-BOM + - 859638798e6294c2-CCU Connection: - keep-alive Content-Encoding: @@ -93,11 +95,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:23:55 GMT + - Thu, 22 Feb 2024 09:32: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=ztgLMEVn5Uony5m826fUhWINM2OzrirrCpl5PChZE8aDA6Z0waJlv%2BP30H2CB%2FuJme9%2BOP%2F4ZnG6bRzbY%2BXoboaA3DA3RRBgXTq4zf0omA25viTK1dYOYC7dCgw%3D"}],"group":"cf-nel","max_age":604800}' + - '{"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}' Server: - cloudflare Set-Cookie: '' @@ -108,21 +110,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"52e87c40f723a14847db33a32e95c09c" + - W/"a937f65292ea5589e6eb054dc9a6e1f6" gitlab-lb: - - haproxy-main-18-lb-gprd + - haproxy-main-52-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '30' - ratelimit-remaining: - - '1970' - ratelimit-reset: - - '1702275895' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:24:55 GMT + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -134,11 +126,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"d3147afcb5c03506670e158a7d414f70","version":"1"}' + - '{"correlation_id":"3b7a555f998e85a3e8c6eee717af88b9","version":"1"}' x-request-id: - - d3147afcb5c03506670e158a7d414f70 + - 3b7a555f998e85a3e8c6eee717af88b9 x-runtime: - - '0.163247' + - '0.160023' status: code: 200 message: OK @@ -203,14 +195,14 @@ interactions: Content-Length: - '2784' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-QP5iRWOI1aFPJOAUttVeCLUwc'; style-src - 'self' 'nonce-QP5iRWOI1aFPJOAUttVeCLUwc'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-QM9stQaYfUdUN4sm3N1trmALt'; style-src + 'self' 'nonce-QM9stQaYfUdUN4sm3N1trmALt'; 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: - - Mon, 11 Dec 2023 06:23:56 GMT + - Thu, 22 Feb 2024 09:32:14 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -232,7 +224,12 @@ interactions: code: 200 message: OK - request: - body: title=%5BSN%232%5D+This+is+the+title+of+the+second+test+issue&description=%0AThis+is+the+body+of+the+second+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+on%0A%5B%2A%2AFri+Oct+13+04%3A01%3A16+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-01%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: '{"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)._\n"}' headers: Accept: - '*/*' @@ -241,40 +238,42 @@ interactions: Connection: - keep-alive Content-Length: - - '725' - Content-Type: - - application/x-www-form-urlencoded + - '591' + Content-type: + - application/json + Cookie: + - _cfuvid=qhdACFZtwIWRTwc5OrEz3EsHCaovTRfjJ37PoN94Fno-1708594334123-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467085,"iid":6084,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142497517,"iid":13140,"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":"2023-12-11T06:23:57.339Z","updated_at":"2023-12-11T06:23:57.339Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6084","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/6084","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6084/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6084/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6084","relative":"#6084","full":"gridhead/protop2g-test#6084"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba44c9a68f4a4-BOM + - 85963884adf293c8-CCU Connection: - keep-alive Content-Length: - - '2152' + - '2192' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:23:57 GMT + - Thu, 22 Feb 2024 09:32: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=3UdPSRCIM74YwKciTXfRyHdU3DNznIKQDHAuxCL6AXjDs7p8OYBxo9WWIS0wii8N4CUYuhkwha%2Bp4K%2BLrcgWMIdNqEBiJK1twyDFGApGAMOyYrww8Rx3h8TKqkM%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=K%2FW1XHUTCDXRGW17PN6nXODzS39g1uzUd6N%2FNUgQ01P1PuPNo0oGNlYlS7IhV4yRRI0lcfF6ksVgMIxkfkh%2FchUtpMeigmbjR1E95Cz2sGj8NCvg0lDWfsp%2Fk09NntXbRhrqS79GIkU%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -283,21 +282,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"737632f792bd8ac70d16b5aa899a47e8" + - W/"b14d57af466b2cb85c1ee22dcf0de67f" gitlab-lb: - - haproxy-main-38-lb-gprd + - haproxy-main-57-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '30' - ratelimit-remaining: - - '1970' - ratelimit-reset: - - '1702275897' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:24:57 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -309,16 +298,16 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"1187cee1823490847035cc04987a9864","version":"1"}' + - '{"correlation_id":"b2c513be055f07a3d445ebf33e3438f2","version":"1"}' x-request-id: - - 1187cee1823490847035cc04987a9864 + - b2c513be055f07a3d445ebf33e3438f2 x-runtime: - - '0.849862' + - '6.520942' status: code: 201 message: Created - request: - body: state_event=close + body: null headers: Accept: - '*/*' @@ -326,29 +315,109 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '17' + Content-type: + - application/json + Cookie: + - _cfuvid=qhdACFZtwIWRTwc5OrEz3EsHCaovTRfjJ37PoN94Fno-1708594334123-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13140 + response: + body: + string: '{"id":142497517,"iid":13140,"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}' + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 859638b0184d93bb-CCU + Connection: + - keep-alive + Content-Encoding: + - gzip Content-Type: - - application/x-www-form-urlencoded + - application/json + Date: + - Thu, 22 Feb 2024 09:32: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=w8164unpN8H2IWQ1NP3WRb9fZHT%2Fo3UvAY9L0Kp564ASxiu8AeYiIc3K%2B6EsBwdfbieiPHMm81ovCytfHnAxJDF%2FijROpqUNUJSDeBIiNFcDpRfEdwuwxNVPBq4CAxQ%2FXKZgdXoFt74%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/"b14d57af466b2cb85c1ee22dcf0de67f" + gitlab-lb: + - haproxy-main-18-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":"42a85f5002227b24911c6c36c9c55599","version":"1"}' + x-request-id: + - 42a85f5002227b24911c6c36c9c55599 + x-runtime: + - '0.171386' + 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=qhdACFZtwIWRTwc5OrEz3EsHCaovTRfjJ37PoN94Fno-1708594334123-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: PUT - uri: https://gitlab.com/api/v4/projects/42823949/issues/6084 + uri: https://gitlab.com/api/v4/projects/42823949/issues/13140 response: body: - string: '{"id":139467085,"iid":6084,"project_id":42823949,"title":"[SN#2] This + string: '{"id":142497517,"iid":13140,"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":"2023-12-11T06:23:57.339Z","updated_at":"2023-12-11T06:23:58.373Z","closed_at":"2023-12-11T06:23:58.363Z","closed_by":{"id":18339343,"username":"project_42823949_bot_992e5e9e997a7b44822ff32a4c634472","name":"protop2g-test","state":"active","locked":false,"avatar_url":"https://secure.gravatar.com/avatar/1b6289f6c729f1ba694aa2bc296a7277?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/1b6289f6c729f1ba694aa2bc296a7277?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/6084","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/6084","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6084/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6084/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6084","relative":"#6084","full":"gridhead/protop2g-test#6084"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba4544e2ff4ac-BOM + - 859638b37d3c94b2-CCU Connection: - keep-alive Content-Encoding: @@ -356,11 +425,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:23:58 GMT + - Thu, 22 Feb 2024 09:32: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=CkL2v1XBM8AX%2BWDhIr5ooTdecAIvdHlPNzsWgL7bTWRs92sRgSdFJTo0COn81eeTdYV%2B8%2FLujEhKHWp%2B0yleNjPp7MIkPTNh%2Blmde89HjXEjTr93CAvP9q%2BZvRk%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=i9KqA2PdxLmkhLYORXiJ1PZJJCyq7WripP2vy%2Fz3pXEeDydr4lNlTN2Mx9JeuF8kS5wOs%2F4CgYUQKyFcySWiLjwVs%2B2z%2B0AyrLK6cBVPXxpCQq3cIlXwOptMehZYPlHkFmh3cST8QSs%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -371,21 +440,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"e13666d225702abcf7a9e0b5204b6c12" + - W/"ecaeede227a4ec2cb20164ec65bd63aa" gitlab-lb: - - haproxy-main-03-lb-gprd + - haproxy-main-58-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '31' - ratelimit-remaining: - - '1969' - ratelimit-reset: - - '1702275898' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:24:58 GMT + - gke-cny-api referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -397,16 +456,16 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"0c348a35af2a18983b1abe5c30bbd57c","version":"1"}' + - '{"correlation_id":"cd3be74cba1c589efee6c56077733ae3","version":"1"}' x-request-id: - - 0c348a35af2a18983b1abe5c30bbd57c + - cd3be74cba1c589efee6c56077733ae3 x-runtime: - - '0.295370' + - '0.326695' status: code: 200 message: OK - request: - body: body=%0A%2A%2AMetadata+Update+from+%26t0xic0der%2A%2A%3A%0A-+Issue+tagged+with%3A+cccc%2C+dddd%0A%0A_This+comment+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%23comment-878472%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+under%0A%5Bthis%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%29+issue+ticket+on+a+Pagure+repository%2C+%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+on%0A%5B%2A%2AFri+Oct+13+04%3A03%3A30+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-03%29._%0A%0A_This+comment+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: null headers: Accept: - '*/*' @@ -414,39 +473,125 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '800' + Content-type: + - application/json + Cookie: + - _cfuvid=qhdACFZtwIWRTwc5OrEz3EsHCaovTRfjJ37PoN94Fno-1708594334123-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13140 + response: + body: + string: '{"id":142497517,"iid":13140,"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}' + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 859638b8286694c4-CCU + Connection: + - keep-alive + Content-Encoding: + - gzip Content-Type: - - application/x-www-form-urlencoded + - application/json + Date: + - Thu, 22 Feb 2024 09:32: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=zEFvnKUJ4JtqPogeITbNgWKQMI19DtK8jKADsZN9vB7GrMWJoPOsCSN8GSJVqDZG54kynvMccfTp1hzK%2B%2BeVdWMAu%2F5p7hVUl7H6VhiQhv8yPbTXZvcYqAGJvLOovaawWo2zU%2BqhnN8%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/"ecaeede227a4ec2cb20164ec65bd63aa" + gitlab-lb: + - haproxy-main-07-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":"4d2de48852aee11fcf3e3844a3fc56c1","version":"1"}' + x-request-id: + - 4d2de48852aee11fcf3e3844a3fc56c1 + x-runtime: + - '0.172785' + status: + code: 200 + message: OK +- request: + body: '{"body": "\n**Metadata Update from &t0xic0der**:\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)._\n"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '627' + Content-type: + - application/json + Cookie: + - _cfuvid=qhdACFZtwIWRTwc5OrEz3EsHCaovTRfjJ37PoN94Fno-1708594334123-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/6084/notes + uri: https://gitlab.com/api/v4/projects/42823949/issues/13140/discussions response: body: - string: '{"id":1687900323,"type":null,"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) + string: '{"id":"7e644b569db5453f0cc9fcda0823a7cf50f4cda5","individual_note":false,"notes":[{"id":1784523439,"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/1b6289f6c729f1ba694aa2bc296a7277?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2023-12-11T06:23:59.257Z","updated_at":"2023-12-11T06:23:59.257Z","system":false,"noteable_id":139467085,"noteable_type":"Issue","project_id":42823949,"resolvable":false,"confidential":false,"internal":false,"noteable_iid":6084,"commands_changes":{}}' + 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":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba458cf2c29ef-BOM + - 859638bb896093c1-CCU Connection: - keep-alive Content-Length: - - '1267' + - '1450' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:23:59 GMT + - Thu, 22 Feb 2024 09:32: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=rOhjLNkuniOsBqI2mE24RrKSNMNk7PCu5XgNncNNjvD8DdF9%2Ful46JqOAcvxvHPMLjKLL%2FxR71hMTv9%2BzqIVXSiORRbAoI%2F4knyyL1a%2BXCv2kwgxA0sjTHW5jtM%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=ga8Gsr6KByVJMzTM75qNNr4P%2Fr7AOwjMTPDB%2Ba7DODKwT3zjNGt2lu6o5dJIhl59x68C0axrOqEltMAYvlxB6r3aqSEC37zB75BeIt2X5RuZLw8oljU8pbmpz58gOEpgDfkO6R%2BQUCQ%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -455,21 +600,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"69fc84cdbcc59f8e7226bab6e6a44535" + - W/"4f68ec7cb170fcb103905898c85755b6" gitlab-lb: - - haproxy-main-16-lb-gprd + - haproxy-main-47-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '32' - ratelimit-remaining: - - '1968' - ratelimit-reset: - - '1702275899' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:24:59 GMT + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -481,16 +616,16 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"6fc04b7a0efecdc508fe727727f59524","version":"1"}' + - '{"correlation_id":"ce894a6ed088b4ef41474e929c9dc63a","version":"1"}' x-request-id: - - 6fc04b7a0efecdc508fe727727f59524 + - ce894a6ed088b4ef41474e929c9dc63a x-runtime: - - '0.437612' + - '0.396261' status: code: 201 message: Created - request: - body: body=%0AThe+is+the+first+comment+under+the+second+test+issue%0A%0A_This+comment+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%23comment-878475%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+under%0A%5Bthis%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%29+issue+ticket+on+a+Pagure+repository%2C+%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+on%0A%5B%2A%2AFri+Oct+13+04%3A06%3A04+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-06%29._%0A%0A_This+comment+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: null headers: Accept: - '*/*' @@ -498,39 +633,125 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '766' + Content-type: + - application/json + Cookie: + - _cfuvid=qhdACFZtwIWRTwc5OrEz3EsHCaovTRfjJ37PoN94Fno-1708594334123-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13140 + response: + body: + string: '{"id":142497517,"iid":13140,"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}' + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 859638c04c6894c2-CCU + Connection: + - keep-alive + Content-Encoding: + - gzip Content-Type: - - application/x-www-form-urlencoded + - application/json + Date: + - Thu, 22 Feb 2024 09:32: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=E2xJc53axA%2F7YUTEI%2Bey4Jp6VoKVmO8P34jowQJQ8vP1iUVQUMrntkr2hSGfIfn%2FnUYR2aWd3GosXAVj1PCpefXOL21cRDm5jjKdm%2FjU6Dgo3vzwak0kMp7rhhpm62WPTKX3mTjDvag%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/"2ecf7f136248bce1502f33439a62f826" + gitlab-lb: + - haproxy-main-51-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":"1a4e929f0ca19258c93ce36022befead","version":"1"}' + x-request-id: + - 1a4e929f0ca19258c93ce36022befead + x-runtime: + - '0.152326' + status: + code: 200 + message: OK +- request: + body: '{"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)._\n"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '610' + Content-type: + - application/json + Cookie: + - _cfuvid=qhdACFZtwIWRTwc5OrEz3EsHCaovTRfjJ37PoN94Fno-1708594334123-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/6084/notes + uri: https://gitlab.com/api/v4/projects/42823949/issues/13140/discussions response: body: - string: '{"id":1687900336,"type":null,"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) + string: '{"id":"7405457d015f6ee4afaeda237551292f2626bf2c","individual_note":false,"notes":[{"id":1784523500,"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/1b6289f6c729f1ba694aa2bc296a7277?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2023-12-11T06:24:00.141Z","updated_at":"2023-12-11T06:24:00.141Z","system":false,"noteable_id":139467085,"noteable_type":"Issue","project_id":42823949,"resolvable":false,"confidential":false,"internal":false,"noteable_iid":6084,"commands_changes":{}}' + 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":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba45ddf5e2e38-BOM + - 859638c39a7294c4-CCU Connection: - keep-alive Content-Length: - - '1245' + - '1428' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:24:00 GMT + - Thu, 22 Feb 2024 09:32: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=VmBs51yG%2FBg0ooENjD2PzOILQh%2BK3ToOo%2F8Ptsm667CNDC%2FqQ4U75lyg%2F4rwXKZxuM%2Frp38Q%2Bb9v8HBShVmKzbKzz21fBmPgiXrAYgdbiBO5QCVV3gxB%2BIIimIk%3D"}],"group":"cf-nel","max_age":604800}' + - '{"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}' Server: - cloudflare Set-Cookie: '' @@ -539,21 +760,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"dc2714f01886247922406ecae1af9e38" + - W/"5a4847dd56160de050da3370fb0c7dbf" gitlab-lb: - haproxy-main-48-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '33' - ratelimit-remaining: - - '1967' - ratelimit-reset: - - '1702275900' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:25:00 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -565,16 +776,16 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"a0f96949fc69d3fd925a31e16ba9eb5d","version":"1"}' + - '{"correlation_id":"83b8d6ba37ef228b8c02d5224be97377","version":"1"}' x-request-id: - - a0f96949fc69d3fd925a31e16ba9eb5d + - 83b8d6ba37ef228b8c02d5224be97377 x-runtime: - - '0.468982' + - '0.830792' status: code: 201 message: Created - request: - body: body=%0AThe+is+the+second+comment+under+the+second+test+issue%0A%0A_This+comment+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%23comment-878476%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+under%0A%5Bthis%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%29+issue+ticket+on+a+Pagure+repository%2C+%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+on%0A%5B%2A%2AFri+Oct+13+04%3A06%3A16+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-06%29._%0A%0A_This+comment+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: null headers: Accept: - '*/*' @@ -582,39 +793,125 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '767' + Content-type: + - application/json + Cookie: + - _cfuvid=qhdACFZtwIWRTwc5OrEz3EsHCaovTRfjJ37PoN94Fno-1708594334123-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13140 + response: + body: + string: '{"id":142497517,"iid":13140,"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}' + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 859638ce681d94c2-CCU + Connection: + - keep-alive + Content-Encoding: + - gzip Content-Type: - - application/x-www-form-urlencoded + - application/json + Date: + - Thu, 22 Feb 2024 09:32: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=%2F%2F2aRpVtlEo1oyZ08ZRykKqzqSePHtjxntxM1cc%2Bw5HvGT72rZ65lnj%2B5EcWEOjaytc%2FT6xOGygvNztlGzCeFaSrZ6tWuD2dq%2Fwdvy4imfB0dzNMv9%2F%2F2s5MfP9RfQvT1mgsw9g0S88%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/"a63622f49033e79b1ef076eb39becc5b" + gitlab-lb: + - haproxy-main-55-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":"9b14a839851055ea8212bc7e9460f376","version":"1"}' + x-request-id: + - 9b14a839851055ea8212bc7e9460f376 + x-runtime: + - '0.196488' + status: + code: 200 + message: OK +- request: + body: '{"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)._\n"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '611' + Content-type: + - application/json + Cookie: + - _cfuvid=qhdACFZtwIWRTwc5OrEz3EsHCaovTRfjJ37PoN94Fno-1708594334123-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/6084/notes + uri: https://gitlab.com/api/v4/projects/42823949/issues/13140/discussions response: body: - string: '{"id":1687900344,"type":null,"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) + string: '{"id":"7bd020d236e6e68db61c747bc64dc3c2d50d681d","individual_note":false,"notes":[{"id":1784523564,"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/1b6289f6c729f1ba694aa2bc296a7277?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2023-12-11T06:24:01.004Z","updated_at":"2023-12-11T06:24:01.004Z","system":false,"noteable_id":139467085,"noteable_type":"Issue","project_id":42823949,"resolvable":false,"confidential":false,"internal":false,"noteable_iid":6084,"commands_changes":{}}' + 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":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba4631854f3c5-BOM + - 859638d21bd794b9-CCU Connection: - keep-alive Content-Length: - - '1246' + - '1429' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:24:01 GMT + - Thu, 22 Feb 2024 09:32: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=Y%2BUbTeNm2bgYQyCiSaCoTt1dDG8soDtm6QqgOrL4qD2evubY%2Buzqe81zo2giWmSRn7zTRd8P8BUcpGCSSbyznZBU5Ra9f%2BEW4SMPCcGhJdccQX08EynHbYB1lCs%3D"}],"group":"cf-nel","max_age":604800}' + - '{"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}' Server: - cloudflare Set-Cookie: '' @@ -623,21 +920,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"4ccbb108b9614dc1573c625d52b12584" + - W/"acedc40a6e623259ffd82951ef3f5fd5" gitlab-lb: - - haproxy-main-07-lb-gprd + - haproxy-main-53-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '34' - ratelimit-remaining: - - '1966' - ratelimit-reset: - - '1702275901' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:25:01 GMT + - api-gke-us-east1-d referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -649,16 +936,16 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"a4a1549c6f46c229a28bf2f6f20a3fa9","version":"1"}' + - '{"correlation_id":"61bdb0d3f67e20d52042488a16d9f825","version":"1"}' x-request-id: - - a4a1549c6f46c229a28bf2f6f20a3fa9 + - 61bdb0d3f67e20d52042488a16d9f825 x-runtime: - - '0.788447' + - '0.570188' status: code: 201 message: Created - request: - body: body=%0A%2A%2AMetadata+Update+from+%26t0xic0der%2A%2A%3A%0A-+Issue+status+updated+to%3A+Closed+%28was%3A+Open%29%0A%0A_This+comment+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%23comment-878477%29+by+%5B%2A%2AAkashdeep+Dhar%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fuser%2Ft0xic0der%29+under%0A%5Bthis%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F2%29+issue+ticket+on+a+Pagure+repository%2C+%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+on%0A%5B%2A%2AFri+Oct+13+04%3A07%3A12+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F04-07%29._%0A%0A_This+comment+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: null headers: Accept: - '*/*' @@ -666,40 +953,125 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '818' + Content-type: + - application/json + Cookie: + - _cfuvid=qhdACFZtwIWRTwc5OrEz3EsHCaovTRfjJ37PoN94Fno-1708594334123-0.0-604800000 + User-Agent: + - python-gitlab/4.4.0 + method: GET + uri: https://gitlab.com/api/v4/projects/42823949/issues/13140 + response: + body: + string: '{"id":142497517,"iid":13140,"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}' + headers: + CF-Cache-Status: + - MISS + CF-RAY: + - 859638d7ecb794bf-CCU + Connection: + - keep-alive + Content-Encoding: + - gzip Content-Type: - - application/x-www-form-urlencoded + - application/json + Date: + - Thu, 22 Feb 2024 09:32:29 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}' + Server: + - cloudflare + Set-Cookie: '' + Transfer-Encoding: + - chunked + cache-control: + - max-age=0, private, must-revalidate + content-security-policy: + - default-src 'none' + etag: + - W/"1c34652f8b206aa6ee63b9b64e9a175d" + gitlab-lb: + - haproxy-main-15-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":"77389039aa5ca729ad47c66ac77dfbcd","version":"1"}' + x-request-id: + - 77389039aa5ca729ad47c66ac77dfbcd + x-runtime: + - '0.151826' + status: + code: 200 + message: OK +- request: + body: '{"body": "\n**Metadata Update from &t0xic0der**:\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)._\n"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '641' + Content-type: + - application/json + Cookie: + - _cfuvid=qhdACFZtwIWRTwc5OrEz3EsHCaovTRfjJ37PoN94Fno-1708594334123-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/6084/notes + uri: https://gitlab.com/api/v4/projects/42823949/issues/13140/discussions response: body: - string: '{"id":1687900357,"type":null,"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) + string: '{"id":"c805cf28e6c7f9cb1edd2de95f70d0f28622ef2a","individual_note":false,"notes":[{"id":1784523595,"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/1b6289f6c729f1ba694aa2bc296a7277?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2023-12-11T06:24:02.585Z","updated_at":"2023-12-11T06:24:02.585Z","system":false,"noteable_id":139467085,"noteable_type":"Issue","project_id":42823949,"resolvable":false,"confidential":false,"internal":false,"noteable_iid":6084,"commands_changes":{}}' + 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":{}}]}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833ba46d7c52f476-BOM + - 859638db5f8593c1-CCU Connection: - keep-alive Content-Length: - - '1281' + - '1464' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:24:02 GMT + - Thu, 22 Feb 2024 09:32: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=zCyEArz%2FLL%2Baqm4xZFeyxYO2qz4yL0um3Ex1L%2FU0hIZ08HTZKH9TzrHCyBc7Q8jWBXflBK55Jos0hujsBtYPQ308VHLj8tkGYAreIdOtOCWQwUjobOCFJtO324I%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=xfL%2FBNyXOmr0GPOeGaIqCnj%2BTBQN9UbOhqjVjCJifAZkoCt7UZheYiWT0cOSSFWlMzbip1ImaOVXdpNMF4Tp3vTZh2RR%2Bwv%2F02I4D%2F9M1RmvMBABlJ%2FSd2SoEC1ZLDhMxzDWU6KGtFs%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -708,21 +1080,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"f03cdd5a88012bd82927b9dacf090e1f" + - W/"febcf26172f62dc3d2aa9e75edec8f40" gitlab-lb: - - haproxy-main-15-lb-gprd + - haproxy-main-54-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '35' - ratelimit-remaining: - - '1965' - ratelimit-reset: - - '1702275902' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:25:02 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -734,11 +1096,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"70330aa7c18f5f92d14b55b16e1767a5","version":"1"}' + - '{"correlation_id":"f123076718f87442bd137b1ff3d18cfe","version":"1"}' x-request-id: - - 70330aa7c18f5f92d14b55b16e1767a5 + - f123076718f87442bd137b1ff3d18cfe x-runtime: - - '0.438979' + - '0.450148' 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 f99c388..6729689 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,102 +18,157 @@ 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\": null, \n \"closed_at\": - null, \n \"closed_by\": null, \n \"comments\": [\n {\n \"comment\": - \"Ditto from IP 67.169.215.NNN , ICMP \\\"tcp port https unreachable\\\".\\r\\n\", - \n \"date_created\": \"1702055368\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 887471, \n \"notification\": + \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/fche\", \n \"fullname\": - \"Frank Ch. Eigler\", \n \"name\": \"fche\", \n \"url_path\": - \"user/fche\"\n }\n }, \n {\n \"comment\": - \"sorry about that. We have been getting large spikes in koji requests, driving - the db load way up, and I tried blocking ip's with a lot of requests around - those times. ;( \\r\\n\\r\\nUnfortunately this blocked some legit ip's as - well. \\r\\n\\r\\nI have cleared them all out for now, as that wasn't in the - end really helping the load issues either. ;( \\r\\n\\r\\nPlease confirm you - are all able to access things again now and we can then close this. \\r\\n\", - \n \"date_created\": \"1702056278\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 887478, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {\n \"Heart\": - [\n \"tuliom\"\n ]\n }, \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 clear from me on the 67.169.215.NNN IP, thanks!\", \n \"date_created\": - \"1702056592\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887479, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/jistone\", \n \"fullname\": \"Josh Stone\", - \n \"name\": \"jistone\", \n \"url_path\": \"user/jistone\"\n - \ }\n }, \n {\n \"comment\": \"@fbo can you - confirm you are back and working?\", \n \"date_created\": \"1702066300\", + \"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\": - 887494, \n \"notification\": false, \n \"parent\": null, + 896692, \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\": \"Hello,\\r\\n\\r\\nSince - today, CI jobs performing Koji scratch builds fail to authenticate on Kerberos.\\r\\nReported - here: https://pagure.io/fedora-ci/general/issue/449\\r\\n\\r\\nThe issue happen - from two different hosts: 38.102.83.139 and 38.102.83.54\\r\\n\\r\\nFrom other - hosts of our network we are not able to reproduce the issue.\\r\\n\\r\\n```\\r\\nKRB5_TRACE=/dev/stdout - kinit zuul@FEDORAPROJECT.ORG\\r\\n[456] 1702047410.011961: Getting initial - credentials for zuul@FEDORAPROJECT.ORG\\r\\n[456] 1702047410.011963: Sending - unauthenticated request\\r\\n[456] 1702047410.011964: Sending request (207 - bytes) to FEDORAPROJECT.ORG\\r\\n[456] 1702047410.011965: Resolving hostname - id.fedoraproject.org\\r\\n[456] 1702047410.011966: Terminating TCP connection - to https 38.145.60.20:443\\r\\n[456] 1702047410.011967: Terminating TCP connection - to https 38.145.60.21:443\\r\\nkinit: Cannot contact any KDC for realm 'FEDORAPROJECT.ORG' - while getting initial credentials\\r\\n```\\r\\n\\r\\nTrying a simple curl:\\r\\n\\r\\n```\\r\\ncurl - -v https://38.145.60.20\\r\\n* Trying 38.145.60.20:443...\\r\\n* connect - to 38.145.60.20 port 443 failed: Connection refused\\r\\n* Failed to connect - to 38.145.60.20 port 443 after 23 ms: Couldn't connect to server\\r\\n* Closing - connection 0\\r\\ncurl: (7) Failed to connect to 38.145.60.20 port 443 after - 23 ms: Couldn't connect to server\\r\\n\\r\\ncurl -v https://id.fedoraproject.org\\r\\n* - \ Trying 38.145.60.20:443...\\r\\n* connect to 38.145.60.20 port 443 failed: - Connection refused\\r\\n* Trying 38.145.60.21:443...\\r\\n* connect to 38.145.60.21 - port 443 failed: Connection refused\\r\\n* Failed to connect to id.fedoraproject.org - port 443 after 257 ms: Couldn't connect to server\\r\\n* Closing connection - 0\\r\\ncurl: (7) Failed to connect to id.fedoraproject.org port 443 after - 257 ms: Couldn't connect to server\\r\\n```\\r\\n\\r\\nThis same curl command - is working as expected from other hosts of our network excepted from the both - specified IP addresses.\\r\\n```\\r\\n\\r\\nCould it be possible that those - IP addresses have been banned ?\\r\\n\\r\\nThanks for your help \", \n \"custom_fields\": - [], \n \"date_created\": \"1702049213\", \n \"depends\": [], \n - \ \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11672\", - \n \"id\": 11672, \n \"last_updated\": \"1702066300\", \n \"milestone\": + \"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\": \"Open\", \n \"tags\": [], \n \"title\": - \"Unable to contact id.fedoraproject.org from some hosts of our network (Fedora - Zuul CI)\", \n \"user\": {\n \"full_url\": \"https://pagure.io/user/fbo\", - \n \"fullname\": \"Fabien Boucher\", \n \"name\": \"fbo\", \n - \ \"url_path\": \"user/fbo\"\n }\n }, \n {\n \"assignee\": - null, \n \"blocks\": [], \n \"close_status\": null, \n \"closed_at\": - null, \n \"closed_by\": null, \n \"comments\": [], \n \"content\": - \"I'm trying to manage the freeipa-users mailing list subscription requests - at https://lists.fedoraproject.org/admin/lists/freeipa-users.lists.fedorahosted.org/subscription_requests - and after a lengthy timeout it consistently returns a 500 error:\\r\\n\\r\\nInternal - Server Error\\r\\n\\r\\nThe server encountered an internal error or misconfiguration - and was unable to complete your request.\\r\\n\\r\\nPlease 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.\\r\\n\\r\\nMore information - about this error may be available in the server error log.\\r\\n\\r\\nI've - been seeing this since 12pm EST yesterday.\\r\\n\\r\\nThis is not urgent as - users can still subscribe (one did this morning). But it would be nice to - eventually be able to manage things.\", \n \"custom_fields\": [], \n - \ \"date_created\": \"1702045811\", \n \"depends\": [], \n \"full_url\": - \"https://pagure.io/fedora-infrastructure/issue/11671\", \n \"id\": 11671, - \n \"last_updated\": \"1702045811\", \n \"milestone\": null, \n - \ \"priority\": 1, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Open\", \n \"tags\": [], \n \"title\": - \"Trying to manage mailing list subscription requests throws a 500 error\", - \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\": - {\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 \"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, @@ -136,92 +191,131 @@ 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\": 787, \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\": \"1701984028\", \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 priority set to: Waiting on Assignee (was: - Needs Review)\\n- Issue tagged with: low-gain, low-trouble, ops\", \n \"date_created\": - \"1701976124\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887358, \n \"notification\": true, \n \"parent\": + 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\": \"Does this need - to be a packager group? or just a regular plain group that has nothing to - do with acls on src.fedoraproject.org ?\", \n \"date_created\": \"1701976883\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 887360, \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\": \"Just a regular - group. I hope to eventually extend it to things like\\nkernel01 access and - a few scripts, but not packaging.\\n\\nJustin\\n\\nOn Thu, Dec 7, 2023 at - 1:21=E2=80=AFPM Kevin Fenzi wrote=\\n:\\n>\\n>\\n> kevin - added a new comment to an issue you are following:\\n> ``\\n> Does this need - to be a packager group? or just a regular plain group that=\\n has nothing - to do with acls on src.fedoraproject.org ?\\n> ``\\n>\\n> To reply, visit - the link below or just reply to this email\\n> https://pagure.io/fedora-infrastructure/issue/11669\\n\\n\", - \n \"date_created\": \"1701976978\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 887361, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/jforbes\", \n \"fullname\": - \"Justin M. Forbes\", \n \"name\": \"jforbes\", \n \"url_path\": - \"user/jforbes\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @kevin**:\\n- Issue assigned to kevin\", \n \"date_created\": - \"1701984022\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887374, \n \"notification\": true, \n \"parent\": + \ }\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\": \"Done. You should - be in the group and also a manager so you can add whoever you like. \\r\\n\\r\\nLet - us know if you need anything else. \\r\\n\", \n \"date_created\": - \"1701984029\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887375, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \ }\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 \"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\": - \"1701984031\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887376, \n \"notification\": true, \n \"parent\": + \"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 \"comment\": \"Appreciate it!\\n\\nOn - Thu, Dec 7, 2023 at 3:20=E2=80=AFPM Kevin Fenzi wrote=\\n:\\n>\\n>\\n> - kevin added a new comment to an issue you are following:\\n> ``\\n> Done. - You should be in the group and also a manager so you can add whoeve=\\nr you - like.\\n>\\n> Let us know if you need anything else.\\n>\\n> ``\\n>\\n> To - reply, visit the link below or just reply to this email\\n> https://pagure.io/fedora-infrastructure/issue/11669\\n\\n\", - \n \"date_created\": \"1701984203\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 887377, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/jforbes\", \n \"fullname\": - \"Justin M. Forbes\", \n \"name\": \"jforbes\", \n \"url_path\": - \"user/jforbes\"\n }\n }\n ], \n \"content\": \"# - Describe what you would like us to do:\\r\\n----\\r\\nI would like a kernel - maintainer FAS group created. Partially as a vanity for being able to use - the title in Discourse, but also because it can be useful to more easily manage - the few people rotating in and out from the RHEL maintainer side to help out - my workload.\\r\\n\\r\\n# When do you need this to be done by? (YYYY/MM/DD)\\r\\nNo - rush, not a huge priority.\\r\\n\", \n \"custom_fields\": [], \n \"date_created\": - \"1701971657\", \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11669\", - \n \"id\": 11669, \n \"last_updated\": \"1701984203\", \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\": - \"Request for a \\\"kernel-maintainer\\\" FAS group.\", \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/jforbes\", \n \"fullname\": - \"Justin M. Forbes\", \n \"name\": \"jforbes\", \n \"url_path\": - \"user/jforbes\"\n }\n }, \n {\n \"assignee\": {\n \"full_url\": + \ }\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\": @@ -247,85 +341,159 @@ 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\": 788, \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 with Explanation\", \n \"closed_at\": \"1701980725\", \n \"closed_by\": - {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": + \"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\": \"Yeah, - one possible issue is that it was still trying to schedule f37... \\r\\n\\r\\nI - have deleted the f37 collection, but deleing takes a long time. \\r\\n\\r\\nWill - see if that solves the issue or if it's something else once thats done.\", - \n \"date_created\": \"1701970500\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 887343, \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\": - \"**Metadata Update from @kevin**:\\n- Issue priority set to: Waiting on Assignee - (was: Needs Review)\\n- Issue tagged with: medium-gain, medium-trouble, ops, - outage\", \n \"date_created\": \"1701976210\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 887359, \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 assigned to kevin\", \n \"date_created\": - \"1701980721\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887366, \n \"notification\": true, \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\": \"I think it should - be stable again now. I increased some limits and also vacuumed it's database. - \\r\\n\\r\\nPlease let us know if you see any further problems with it. \", - \n \"date_created\": \"1701980727\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 887367, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {\n \"Thumbs - up\": [\n \"vondruch\"\n ]\n }, \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\": - \"1701980728\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887368, \n \"notification\": true, \n \"parent\": + \ }\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 \"content\": \"~~~\\r\\n$ curl -L - https://koschei.fedoraproject.org/\\r\\n\\r\\n\\r\\n ... snip ...\\r\\n\\r\\n - \ \\r\\n
\\r\\n

Application is not available

\\r\\n - \

The application is currently not serving requests at this endpoint. - It may not have been started or is still starting.

\\r\\n\\r\\n
\\r\\n

\\r\\n - \ Possible reasons you are seeing this page:\\r\\n

\\r\\n - \
    \\r\\n
  • \\r\\n The host doesn't - exist.\\r\\n Make sure the hostname was typed correctly - and that a route matching this hostname exists.\\r\\n
  • \\r\\n - \
  • \\r\\n The host exists, but doesn't have - a matching path.\\r\\n Check if the URL path was typed - correctly and that the route was created using the desired path.\\r\\n
  • \\r\\n - \
  • \\r\\n Route and path matches, but all pods - are down.\\r\\n Make sure that the resources exposed by - this route (pods, services, deployment configs, etc) have at least one pod - running.\\r\\n
  • \\r\\n
\\r\\n
\\r\\n
\\r\\n - \ \\r\\n\\r\\n\\r\\n~~~\", \n \"custom_fields\": [], \n - \ \"date_created\": \"1701959519\", \n \"depends\": [], \n \"full_url\": - \"https://pagure.io/fedora-infrastructure/issue/11668\", \n \"id\": 11668, - \n \"last_updated\": \"1701980728\", \n \"milestone\": null, \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\": \"Koschei is down\", \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/kevin\", + \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 \"blocks\": [], \n - \ \"boards\": [\n {\n \"board\": {\n \"active\": + \ \"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, @@ -348,190 +516,138 @@ 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\": 785, \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\", \n \"closed_at\": \"1701941850\", \n \"closed_by\": {\n - \ \"full_url\": \"https://pagure.io/user/mvadkert\", \n \"fullname\": - \"Miroslav Vadkerti\", \n \"name\": \"mvadkert\", \n \"url_path\": - \"user/mvadkert\"\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: aws, medium-gain, medium-trouble, - ops\", \n \"date_created\": \"1701889626\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 887217, \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 we delete it? or just make a new one in one of those? \\r\\n\\r\\nThis - is just blocking a staging deployment right?\\r\\n\", \n \"date_created\": - \"1701889661\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887218, \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\": \"@kevin it is - blocking development :(\\r\\n\\r\\n@kevin I did not check, but if another - subnet can be added (VPC range is sufficient), feel free just to add another - one (or even 2 ...), more subnets we have the better.\\r\\n\\r\\nWe are in - the process of refactoring, and this is a PITA a bit.\", \n \"date_created\": - \"1701890832\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887222, \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\": - \"**Metadata Update from @kevin**:\\n- Issue assigned to kevin\", \n \"date_created\": - \"1701902145\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887248, \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\": \"I created subnet-0f1ff10d17ff540d7 - can you see if that works for you?\\r\\n\", \n \"date_created\": - \"1701902148\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887249, \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\": \"@kevin thanks, - can you also set `Enable auto-assign public IPv4` in the subnet settings? - Others have this and I believe it is needed.\\r\\n\", \n \"date_created\": - \"1701904320\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887250, \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\": - \"You have successfully changed subnet settings:\\r\\n\\r\\n Enable auto-assign - public IPv4 address\\r\\n\\r\\n\", \n \"date_created\": \"1701905002\", + 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\", \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 887251, \n \"notification\": false, \n \"parent\": null, + 896246, \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, trying\", - \n \"date_created\": \"1701905172\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 887252, \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\": - \"Looks it is working, thank you for quick turnaround!\\r\\n\\r\\nClosing - as resolved\", \n \"date_created\": \"1701905307\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 887253, \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\": - \"**Metadata Update from @mvadkert**:\\n- Issue close_status updated to: Fixed\\n- - Issue status updated to: Closed (was: Open)\", \n \"date_created\": - \"1701905308\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887254, \n \"notification\": true, \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\": - \"Sorry, it failed after some time seems on tagging?\\r\\n\\r\\n{code}\\r\\n\\u2502 - Error: creating EC2 resource (subnet-0f1ff10d17ff540d7) tag (kubernetes.io/cluster/testing-farm-staging): - tagging resource (subnet-0f1ff10d17ff540d7): tagging resource (subnet-0f1ff10d17ff540d7): - UnauthorizedOperation: You are not authorized to perform this operation. User: - arn:aws:iam::125523088429:user/fedora-ci-testing-farm is not authorized to - perform: ec2:CreateTags on resource: arn:aws:ec2:us-east-1:125523088429:subnet/subnet-0f1ff10d17ff540d7 - because no identity-based policy allows the ec2:CreateTags action. Encoded - authorization failure message: LZrE9BWv9fL2B34Xg-tE8nTbWwjH1kClw1PJYR4LEwDeJwRsgG-n9xLUg2I-AoEX6XHjEjjo010XDoI5R9swA8qAQ96LwErxP5h_rpmymn9A8xtjoVwQ_Siz6tamUD7p7_V2ipeg4lEkVRtWKCeLRcfatWhDexioJaoKokWrZR6rl-jq9o0WAaL3zGpLmSYXtBXXDZICBwwYErsNZz5lAD0khysheUCRK8o13raMiXv6rfHnBiv3eRtUim4zjP4smAJpNOHBmOmXqWVismMLEU6bLRQKbk0yvmkzco4rM2bHdNKGu690vGf27UTkCKDsqgqMzwS9Zkozr58d3oNXgZZnsHssHuHdFWpqJz1OoBTk2_6R6uLepkBReahFfJ7OGtJCZqUPuiRd4RcU-e8l3n3DVC4WD9wH15tiUcuQc00i7THNEYwIreQj-KXcXqlPGlhBlwW1rROwxQ7dYxxE4EK3XSlDDB1yJDY7fSmMdCLmr6_H8ier8r3JSVVOHoF0up39gnMGMtF55IvzHAY7nCEssdoDxxk8GtMSFoXdzuL0_HgK0gn6IH-WvKvuKqT91suJTswOnvauPWzJyUyCvW_UlC13bNrnLhnMu5e_M-JfMPcCG_b6_A-z4qBbMFbm7m2JNz0lTxRue9QDgCceqbRBQRwNzrKgPEyfGj7DINhZXtNKFw\\r\\n\\u2502 - \\tstatus code: 403, request id: b2949172-8bf1-4267-970c-aacdb666b8f7\\r\\n\\u2502 - \\r\\n\\u2502 with aws_ec2_tag.subnet_tag[1],\\r\\n\\u2502 on main.tf - line 151, in resource \\\"aws_ec2_tag\\\" \\\"subnet_tag\\\":\\r\\n\\u2502 - \ 151: resource \\\"aws_ec2_tag\\\" \\\"subnet_tag\\\" {\\r\\n\\u2502 \\r\\n\\u2575\\r\\nERRO[0839] - Terraform invocation failed in /var/home/mvadkert/git/gitlab.com/testing-farm/infrastructure/terragrunt/environments/staging/eks/.terragrunt-cache/-xNELQhIOW4oW5Xwa5nOSdHCpOw/wVSGLr7UvmjExjcVh2QG2ibu7uA/eks - \ prefix=[terragrunt/environments/staging/eks] \\r\\nERRO[0839] 1 error occurred:\\r\\n\\t* - [/var/home/mvadkert/git/gitlab.com/testing-farm/infrastructure/terragrunt/environments/staging/eks/.terragrunt-cache/-xNELQhIOW4oW5Xwa5nOSdHCpOw/wVSGLr7UvmjExjcVh2QG2ibu7uA/eks] - exit status 1\\r\\n \\r\\nmake: *** [Makefile:108: staging/apply] Error 1\\r\\n{code}\", - \n \"date_created\": \"1701907361\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 887255, \n \"notification\": + \"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/mvadkert\", \n \"fullname\": - \"Miroslav Vadkerti\", \n \"name\": \"mvadkert\", \n \"url_path\": - \"user/mvadkert\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @mvadkert**:\\n- Issue status updated to: Open (was: - Closed)\", \n \"date_created\": \"1701907375\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 887256, \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 **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/mvadkert\", \n \"fullname\": - \"Miroslav Vadkerti\", \n \"name\": \"mvadkert\", \n \"url_path\": - \"user/mvadkert\"\n }\n }, \n {\n \"comment\": - \"@kevin not sure what is different, could we maybe get that permission?\", - \n \"date_created\": \"1701907611\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 887257, \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\": - \"I think I had the tag wrong on that subnet. I had 'fedora-ci' but it was - expecting 'ci' \\r\\n\\r\\ntry again now?\\r\\n\", \n \"date_created\": - \"1701909670\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887258, \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\": \"Ah, that will - be it! I was blind :)\", \n \"date_created\": \"1701940492\", \n - \ \"edited_on\": null, \n \"editor\": null, \n \"id\": - 887286, \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\": - \"@kevin now ti works, ty!\", \n \"date_created\": \"1701941852\", + {\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\": - 887287, \n \"notification\": false, \n \"parent\": null, + 896533, \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\": - \"**Metadata Update from @mvadkert**:\\n- Issue close_status updated to: Fixed\\n- - Issue status updated to: Closed (was: Open)\", \n \"date_created\": - \"1701941853\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887288, \n \"notification\": true, \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 \"content\": \"Hi,\\r\\n\\r\\nSeems - the subnet `subnet-05832fde7f7f9cca0` is useless to us, we cannot use it for - EKS:\\r\\n\\r\\n```\\r\\n\\u2502 Error: creating EKS Cluster (testing-farm-staging): - UnsupportedAvailabilityZoneException: Cannot create cluster 'testing-farm-staging' - because us-east-1a, the targeted availability zone, does not currently have - sufficient capacity to support the cluster. Retry and choose from these availability - zones: us-east-1b, us-east-1c, us-east-1d, us-east-1e, us-east-1f\\r\\n\\u2502 - {\\r\\n\\u2502 RespMetadata: {\\r\\n\\u2502 StatusCode: 400,\\r\\n\\u2502 - \ RequestID: \\\"b7688631-85aa-45ba-b18e-f1c230949198\\\"\\r\\n\\u2502 - \ },\\r\\n\\u2502 ClusterName: \\\"testing-farm-staging\\\",\\r\\n\\u2502 - \ Message_: \\\"Cannot create cluster 'testing-farm-staging' because us-east-1a, - the targeted availability zone, does not currently have sufficient capacity - to support the cluster. Retry and choose from these availability zones: us-east-1b, - us-east-1c, us-east-1d, us-east-1e, us-east-1f\\\",\\r\\n\\u2502 ValidZones: - [\\r\\n\\u2502 \\\"us-east-1b\\\",\\r\\n\\u2502 \\\"us-east-1c\\\",\\r\\n\\u2502 - \ \\\"us-east-1d\\\",\\r\\n\\u2502 \\\"us-east-1e\\\",\\r\\n\\u2502 - \ \\\"us-east-1f\\\"\\r\\n\\u2502 ]\\r\\n\\u2502 }\\r\\n\\u2502 \\r\\n\\u2502 - \ with module.eks.aws_eks_cluster.this[0],\\r\\n\\u2502 on .terraform/modules/eks/main.tf - line 25, in resource \\\"aws_eks_cluster\\\" \\\"this\\\":\\r\\n\\u2502 25: - resource \\\"aws_eks_cluster\\\" \\\"this\\\" {\\r\\n```\\r\\n\\r\\nWould - it be possible to remove this subnet and create another one in `us-east-1e` - or `us-east-1f` zone please?\\r\\n\", \n \"custom_fields\": [], \n \"date_created\": - \"1701888851\", \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11667\", - \n \"id\": 11667, \n \"last_updated\": \"1701941853\", \n \"milestone\": - null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Closed\", \n \"tags\": [\n \"aws\", - \n \"medium-gain\", \n \"medium-trouble\", \n \"ops\"\n - \ ], \n \"title\": \"AWS change subnet settings for vpc-0896aedab4753e76f\", - \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 \"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\": \"**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 \"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\", + \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, @@ -554,163 +670,58 @@ 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\": 786, \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\": \"1701893650\", \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\": - \"1701889707\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887219, \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\": - \"1701893645\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887226, \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\": \"User unsubscribed, - banned and posts deleted. \\r\\n\\r\\nThanks for the heads up!\\r\\n\", \n - \ \"date_created\": \"1701893652\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 887227, \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\": - \"1701893653\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887228, \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\": \"Two spam messages - from the same source:\\r\\n\\r\\nFrom: seo 2023 \\r\\nDate: - Wed, 6 Dec 2023 15:29:47 +0200\\r\\nMessage-ID: \\r\\nSubject: - The Best Digital Marketing Agency in Egypt: Unleashing Your\\r\\n Business's - Online Potential\\r\\nTo: users@lists.fedoraproject.org\\r\\n\\r\\nand\\r\\n\\r\\nFrom: - seo 2023 \\r\\nDate: Wed, 6 Dec 2023 15:51:45 +0200\\r\\nMessage-ID: - \\r\\nSubject: - Elevate Safety with ATISystems.com: Your Destination for\\r\\n Cutting-Edge - Giant Voice and Outdoor Warning Systems\\r\\nTo: users@lists.fedoraproject.org\\r\\n\\r\\n**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\\nRemove spam and ban user.\\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\": \"1701875411\", \n \"depends\": [], \n - \ \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11666\", - \n \"id\": 11666, \n \"last_updated\": \"1701893653\", \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\": - \"Spam on the 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 \"assignee\": null, \n \"blocks\": [], \n \"close_status\": - \"Fixed with Explanation\", \n \"closed_at\": \"1701892238\", \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, low-gain\", \n \"date_created\": - \"1701862997\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887195, \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/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", - \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n - \ }\n }, \n {\n \"comment\": \"Yep. It was - suck. Unstuck now and should update in a few here. \\r\\n\\r\\nFYI: \\r\\n\\r\\nssh - people02.fedoraproject.org\\r\\nps -axuww | grep planet\\r\\n(see that there - are processes from nov 30th)\\r\\npkill -9 -f planet\\r\\n\\r\\nIt gets stuck - this was sometimes gathering feeds. Hopefully the new planet will not have - this same issue. \\r\\n\", \n \"date_created\": \"1701892240\", \n - \ \"edited_on\": null, \n \"editor\": null, \n \"id\": - 887224, \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/kalev\", \n \"fullname\": \"Kalev Lember\", + \n \"name\": \"kalev\", \n \"url_path\": \"user/kalev\"\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\": - \"1701892241\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887225, \n \"notification\": true, \n \"parent\": + 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\": 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\\n\\r\\nI think the planet may be stuck again. - The last post is from Nov 30. I published a blog post on Dec 2 but it hasn't - appeared on the planet yet.\\r\\n\\r\\n# When do you need this to be done - by? (YYYY/MM/DD)\\r\\n----\\r\\nWhenever convenient, not urgent at all.\", - \n \"custom_fields\": [], \n \"date_created\": \"1701853393\", \n - \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11665\", - \n \"id\": 11665, \n \"last_updated\": \"1701892241\", \n \"milestone\": - null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Closed\", \n \"tags\": [\n \"Needs investigation\", - \n \"low-gain\"\n ], \n \"title\": \"Planet seems stuck, - last post from Nov 30\", \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 \"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\": \"1701824819\", \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\": - \"1701824816\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887178, \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\": \"Oops. For some - reason I thought this cert was no longer in use. ;( \\r\\n\\r\\nThe cert is - in your homedir in a centos-stream-robosignatory-20231205\\r\\n\\r\\nLet me - know if you have any issues with it, and sorry about this. \", \n \"date_created\": - \"1701824821\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887179, \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\": - \"1701824830\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887181, \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\": \"\\r\\n# Describe what - you would like us to do:\\r\\nI have the following certificate for the rpm - signing service in CentOS Stream:\\r\\n```\\r\\n Issuer: CN = RabbitMQ - PRODUCTION CA\\r\\n Validity\\r\\n Not Before: Sep 1 14:06:22 - 2021 GMT\\r\\n Not After : Dec 5 14:06:22 2023 GMT\\r\\n Subject: - CN = centos-stream-robosignatory\\r\\n```\\r\\n\\r\\nThis cert expired today. - Can I have someone regenerate this cert and place the key/cert in my homedir - on batcave? \\r\\n\\r\\n# When do you need this to be done by? (YYYY/MM/DD)\\r\\n----\\r\\n\\r\\nWhenever - convenient. \", \n \"custom_fields\": [], \n \"date_created\": \"1701820444\", - \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11664\", - \n \"id\": 11664, \n \"last_updated\": \"1701824830\", \n \"milestone\": - null, \n \"priority\": 1, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": - \"Reissue rabbitmq certificate for centos-stream-robosignatory\", \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/bstinson\", \n \"fullname\": - \"Brian Stinson\", \n \"name\": \"bstinson\", \n \"url_path\": - \"user/bstinson\"\n }\n }, \n {\n \"assignee\": {\n \"full_url\": - \"https://pagure.io/user/aheath1992\", \n \"fullname\": \"Andrew Heath\", - \n \"name\": \"aheath1992\", \n \"url_path\": \"user/aheath1992\"\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/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\": + 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, @@ -732,245 +743,83 @@ 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\": 784, \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\": \"I think that the log copying script - may need patching if it looks for .gz files and they are no longer there, - but that is the only other thing I can think of.\", \n \"date_created\": - \"1701800555\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887125, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/smooge\", \n \"fullname\": \"Stephen J - Smoogen\", \n \"name\": \"smooge\", \n \"url_path\": - \"user/smooge\"\n }\n }, \n {\n \"comment\": - \"My understanding was that the log copying part only did httpd logs? I might - be mistaken tho, so thats something to check for sure. \\r\\n\", \n \"date_created\": - \"1701801056\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887126, \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 does - ... geez I really have forgotten how things were set up.\", \n \"date_created\": - \"1701801610\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887127, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/smooge\", \n \"fullname\": \"Stephen J - Smoogen\", \n \"name\": \"smooge\", \n \"url_path\": - \"user/smooge\"\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\": \"1701803134\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 887133, \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 @aheath1992**:\\n- Issue assigned to aheath1992\", - \n \"date_created\": \"1701808436\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 887164, \n \"notification\": - true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/aheath1992\", \n \"fullname\": - \"Andrew Heath\", \n \"name\": \"aheath1992\", \n \"url_path\": - \"user/aheath1992\"\n }\n }\n ], \n \"content\": - \"Currently, proxies are using the default fedora logrotate config for syslog - files:\\r\\n\\r\\n```\\r\\n# cat /etc/logrotate.d/rsyslog \\r\\n/var/log/cron\\r\\n/var/log/maillog\\r\\n/var/log/messages\\r\\n/var/log/secure\\r\\n/var/log/spooler\\r\\n{\\r\\n - \ missingok\\r\\n sharedscripts\\r\\n postrotate\\r\\n /usr/bin/systemctl - reload rsyslog.service >/dev/null 2>&1 || true\\r\\n endscript\\r\\n}\\r\\n```\\r\\n\\r\\nI'd - like to change that to use the same as we currently use for pagure: \\r\\n./roles/pagure/files/syslog-logrotate\\r\\n\\r\\nThis - will keep 7 days of logs, but xz compress them and rotate daily. We don't - need more than that on there since they are moved to a central log host anyhow, - and we want to save space on proxies because they are all space constrained. - \", \n \"custom_fields\": [], \n \"date_created\": \"1701799932\", - \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11663\", - \n \"id\": 11663, \n \"last_updated\": \"1701808436\", \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\": - \"proxies: adjust logrotate to xz logs\", \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\": - 783, \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\": \"1701851959\", - \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 @phsmoura**:\\n- - Issue priority set to: Waiting on Assignee (was: Needs Review)\\n- Issue tagged - with: medium-gain, medium-trouble, ops\", \n \"date_created\": \"1701803056\", + [\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\": - 887131, \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\": \"@kevin Thanks - for the report. I tried restarting the machine and I cannot ssh to it anymore - :/ Is there any AWS console or something where I could see what the problem - might be?\", \n \"date_created\": \"1701849496\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 887188, \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/msrb\", \n \"fullname\": - \"Michal Srb\", \n \"name\": \"msrb\", \n \"url_path\": - \"user/msrb\"\n }\n }, \n {\n \"comment\": - \"Nevermind, the instance is back online and it seems to be working properly - ;) \", \n \"date_created\": \"1701850323\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 887189, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {\n \"Heart\": - [\n \"ckujau\"\n ]\n }, \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 close_status updated to: Fixed\\n- - Issue status updated to: Closed (was: Open)\", \n \"date_created\": - \"1701851961\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887190, \n \"notification\": true, \n \"parent\": + {\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\": 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\": \"retrace03 seems to - be not processing correctly. \\r\\n\\r\\nUsers are reporting: \\r\\n\\r\\n```\\r\\nretrace.fedoraproject.org - appears to be down: \\\"The server at 'https://retrace.fedoraproject.org/faf' - currently can't handle the request (got error 503)\\\"\\r\\n```\\r\\n\\r\\nThis - may be related to a network outage at that datacenter yesterday/this morning. - \\r\\nI can reach the machine, but the load is... high: \\r\\n\\r\\n 17:54:36 - up 19 days, 20:08, 1 user, load average: 829.99, 826.78, 813.84\\r\\n\\r\\nI - tried restarting httpd, but it never completed. \\r\\nI can try just rebooting - the server, but not sure that will fix the issues. \\r\\n\\r\\nCC: @msrb @msuchy - \", \n \"custom_fields\": [], \n \"date_created\": \"1701798933\", - \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11662\", - \n \"id\": 11662, \n \"last_updated\": \"1701851961\", \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\": \"retrace03 not processing correctly\", \n \"user\": + \"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 }, \n {\n \"assignee\": null, \n \"blocks\": [], - \n \"close_status\": \"Fixed\", \n \"closed_at\": \"1701760870\", - \n \"closed_by\": {\n \"full_url\": \"https://pagure.io/user/praiskup\", - \n \"fullname\": \"Pavel Raiskup\", \n \"name\": \"praiskup\", - \n \"url_path\": \"user/praiskup\"\n }, \n \"comments\": - [\n {\n \"comment\": \"ICMPv4 to `people01.fedoraproject.org` - fails, to `people02.fedoraproject.org` works.\", \n \"date_created\": - \"1701757996\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887063, \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\": \"Hm, ipv4 seems - to work fine again. Closing.\", \n \"date_created\": \"1701760756\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 887067, \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\": \"**Metadata Update - from @praiskup**:\\n- Issue close_status updated to: Fixed\\n- Issue status - updated to: Closed (was: Open)\", \n \"date_created\": \"1701760872\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 887068, \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 \"comment\": \"It is actually - the same issue as the last time (fiber cut), seehttps://pagure.io/centos-infra/issue/1326#comment-887062 - (and the internal ref it mentions).\", \n \"date_created\": \"1701761537\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 887069, \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\": - \"Also https://status.centos.org/ mentions it as well.\", \n \"date_created\": - \"1701761619\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887070, \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\": - \"This seems like a similar issue we had recently: https://pagure.io/fedora-infrastructure/issue/11640\\r\\n\\r\\n```\\r\\n[copr@copr-be - ~][PROD]$ ssh -vvv -4 copr@vmhost-x86-copr01.rdu-cc.fedoraproject.org\\r\\nOpenSSH_9.3p1, - OpenSSL 3.1.1 30 May 2023\\r\\ndebug1: Reading configuration data /home/copr/.ssh/config\\r\\ndebug1: - /home/copr/.ssh/config line 1: Applying options for *\\r\\ndebug1: /home/copr/.ssh/config - line 9: Applying options for vmhost-x86-copr01.rdu-cc.fedoraproject.org\\r\\ndebug1: - Reading configuration data /etc/ssh/ssh_config\\r\\ndebug3: /etc/ssh/ssh_config - line 55: Including file /etc/ssh/ssh_config.d/50-redhat.conf depth 0\\r\\ndebug1: - Reading configuration data /etc/ssh/ssh_config.d/50-redhat.conf\\r\\ndebug2: - checking match for 'final all' host vmhost-x86-copr01.rdu-cc.fedoraproject.org - originally vmhost-x86-copr01.rdu-cc.fedoraproject.org\\r\\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf - line 3: not matched 'final'\\r\\ndebug2: match not found\\r\\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf - line 5: Including file /etc/crypto-policies/back-ends/openssh.config depth - 1 (parse only)\\r\\ndebug1: Reading configuration data /etc/crypto-policies/back-ends/openssh.config\\r\\ndebug3: - gss kex names ok: [gss-curve25519-sha256-,gss-nistp256-sha256-,gss-group14-sha256-,gss-group16-sha512-]\\r\\ndebug3: - kex names ok: [curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha256,diffie-hellman-group16-sha512,diffie-hellman-group18-sha512]\\r\\ndebug1: - configuration requests final Match pass\\r\\ndebug1: re-parsing configuration\\r\\ndebug1: - Reading configuration data /home/copr/.ssh/config\\r\\ndebug1: /home/copr/.ssh/config - line 1: Applying options for *\\r\\ndebug2: add_identity_file: ignoring duplicate - key ~/.ssh/id_rsa\\r\\ndebug1: /home/copr/.ssh/config line 9: Applying options - for vmhost-x86-copr01.rdu-cc.fedoraproject.org\\r\\ndebug1: Reading configuration - data /etc/ssh/ssh_config\\r\\ndebug3: /etc/ssh/ssh_config line 55: Including - file /etc/ssh/ssh_config.d/50-redhat.conf depth 0\\r\\ndebug1: Reading configuration - data /etc/ssh/ssh_config.d/50-redhat.conf\\r\\ndebug2: checking match for - 'final all' host vmhost-x86-copr01.rdu-cc.fedoraproject.org originally vmhost-x86-copr01.rdu-cc.fedoraproject.org\\r\\ndebug3: - /etc/ssh/ssh_config.d/50-redhat.conf line 3: matched 'final'\\r\\ndebug2: - match found\\r\\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf line 5: Including - file /etc/crypto-policies/back-ends/openssh.config depth 1\\r\\ndebug1: Reading - configuration data /etc/crypto-policies/back-ends/openssh.config\\r\\ndebug3: - gss kex names ok: [gss-curve25519-sha256-,gss-nistp256-sha256-,gss-group14-sha256-,gss-group16-sha512-]\\r\\ndebug3: - kex names ok: [curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha256,diffie-hellman-group16-sha512,diffie-hellman-group18-sha512]\\r\\ndebug2: - resolving \\\"vmhost-x86-copr01.rdu-cc.fedoraproject.org\\\" port 22\\r\\ndebug3: - resolve_host: lookup vmhost-x86-copr01.rdu-cc.fedoraproject.org:22\\r\\ndebug3: - ssh_connect_direct: entering\\r\\ndebug1: Connecting to vmhost-x86-copr01.rdu-cc.fedoraproject.org - [8.43.85.57] port 22.\\r\\ndebug3: set_sock_tos: set socket 3 IP_TOS 0x48\\r\\ndebug2: - fd 3 setting O_NONBLOCK\\r\\ndebug1: connect to address 8.43.85.57 port 22: - Connection timed out\\r\\nssh: connect to host vmhost-x86-copr01.rdu-cc.fedoraproject.org - port 22: Connection timed out\\r\\n```\\r\\n\\r\\nWorking-around by:\\r\\n```\\r\\nHost - vmhost-x86-copr01.rdu-cc.fedoraproject.org vmhost-x86-copr02.rdu-cc.fedoraproject.org - vmhost-x86-copr03.rdu-cc.fedoraproject.org vmhost-x86-copr04.rdu-cc.fedoraproject.org - vmhost-p08-copr01.rdu-cc.fedoraproject.org vmhost-p08-copr02.rdu-cc.fedoraproject.org - vmhost-p09-copr01.rdu-cc.fedoraproject.org\\r\\n AddressFamily inet6\\r\\n - \ ControlPath=~/.ssh/skt_%h_%p_%r\\r\\n ControlMaster=auto\\r\\n ControlPersist=60\\r\\n```\\r\\n\\r\\nThis - way I can make Copr builders started over ipv6.\", \n \"custom_fields\": - [], \n \"date_created\": \"1701757716\", \n \"depends\": [], \n - \ \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11661\", - \n \"id\": 11661, \n \"last_updated\": \"1701761619\", \n \"milestone\": - null, \n \"priority\": 1, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": - \"Can not connect to rdu-cc lab over ipv4 from some locations\", \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 \"assignee\": null, \n \"blocks\": - [], \n \"boards\": [\n {\n \"board\": {\n \"active\": - true, \n \"full_url\": \"https://pagure.io/fedora-infrastructure/boards/ops\", + \ }, \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, @@ -992,49 +841,108 @@ 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\": 782, \n \"status\": + \ }\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 @phsmoura**:\\n- - Issue priority set to: Waiting on Assignee (was: Needs Review)\\n- Issue tagged - with: medium-gain, medium-trouble, ops\", \n \"date_created\": \"1701717153\", + [\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 \"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\": - 886997, \n \"notification\": true, \n \"parent\": null, + 895519, \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\": \"CC: @davdunc - \", \n \"date_created\": \"1701723677\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 887006, \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\": - \"CC: @obudai \", \n \"date_created\": \"1701888931\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 887216, \n \"notification\": + \"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\": + \"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/mvadkert\", \n \"fullname\": - \"Miroslav Vadkerti\", \n \"name\": \"mvadkert\", \n \"url_path\": - \"user/mvadkert\"\n }\n }\n ], \n \"content\": \"According - to:\\r\\n\\r\\nhttps://bugzilla.redhat.com/show_bug.cgi?id=2185883\\r\\n\\r\\nBut - we cannot confirm, see for example:\\r\\n\\r\\n125523088429/Fedora-Cloud-Base-39-20231204.0.x86_64-hvm-us-east-1-gp3-0 - it has boot method unset, i.e. `-`.\\r\\nI would expect `uefi-preferred`\\r\\n\\r\\nhttps://us-east-1.console.aws.amazon.com/ec2/home?region=us-east-1#ImageDetails:imageId=ami-04cc75b7613fdcc2f\\r\\n\\r\\nSo - I cannot confirm it happened, same for Rawhide.\\r\\n\", \n \"custom_fields\": - [], \n \"date_created\": \"1701705865\", \n \"depends\": [], \n - \ \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11660\", - \n \"id\": 11660, \n \"last_updated\": \"1701888931\", \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\": - \"Fedora Cloud Base 39+ AWS images should use uefi-preferred boot method\", - \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 \"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 \"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\": + 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\": @@ -1058,285 +966,103 @@ interactions: \ }\n ], \n \"tag\": {\n \"tag\": \"ops\", \n \"tag_color\": \"#3efa0e\", \n \"tag_description\": \"ops problem now...\"\n }\n }, \n \"rank\": - 781, \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 with Explanation\", \n \"closed_at\": - \"1701682222\", \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 assigned to zlopez\\n- Issue priority set to: Waiting on Assignee (was: - Needs Review)\\n- Issue tagged with: low-gain, low-trouble, ops\", \n \"date_created\": - \"1701681140\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886926, \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\": \"The certificate - is now renewed, for future reference [here](https://docs.fedoraproject.org/en-US/infra/sysadmin_guide/ssl-certificates/#_renew_a_ssl_certificate) - is a guide how to do it.\", \n \"date_created\": \"1701682224\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 886928, \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\": - \"1701682225\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886929, \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\": \"Replace renewed mirrors.centos.org - TLS cert \\r\\nIdeally we should find a way to no have to create ticket here - every ~90days\\r\\nWhen do you need this to be done by? (YYYY/MM/DD)\\r\\n\\r\\nBefore - actual cert is expired, which would block all centos stream 9 machines from - getting updates\\r\\n\\r\\n```\\r\\n Issuer: C = US, O = Let's Encrypt, - CN = R3\\r\\n Validity\\r\\n Not Before: Sep 21 04:10:01 - 2023 GMT\\r\\n Not After : Dec 20 04:10:00 2023 GMT\\r\\n Subject: - CN = mirrors.centos.org\\r\\n\\r\\n```\\r\\n\\r\\nFrom previous [ticket](https://pagure.io/fedora-infrastructure/issue/10829) - we understood that it was normally automated/monitored by fedora infra and - so renewed/pushed out automatically\", \n \"custom_fields\": [], \n \"date_created\": - \"1701680480\", \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11659\", - \n \"id\": 11659, \n \"last_updated\": \"1701682225\", \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\": - \" 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\": - null, \n \"blocks\": [], \n \"close_status\": \"Upstream\", \n \"closed_at\": - \"1701682281\", \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\": \"This should be opened in https://pagure.io/releng/issues/\", - \n \"date_created\": \"1701682283\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 886930, \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: Upstream\\n- - Issue status updated to: Closed (was: Open)\", \n \"date_created\": - \"1701682284\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886931, \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\": \"I'm working to create - a build for byobu on epel9.\\r\\n I could create a build for epel9-testing-candidate:\\r\\n\\r\\npriscila@Hyrule - ~/F/p/byobu (epel9) [1]> koji list-tagged epel9-testing-candidate |grep byobu - \ \\r\\nbyobu-5.133-8.el9 - \ epel9-testing-candidate prgutier\\r\\n\\r\\nBut - I cannot move it to epel9, to release this build as needed in this bz: https://bugzilla.redhat.com/show_bug.cgi?id=2069103:\\r\\n\\r\\npriscila@Hyrule - ~/F/p/byobu (epel9)> koji tag-pkg epel9 byobu-5.133-8.el9 \\r\\n2023-12-03 - 20:38:29,541 [ERROR] koji: ActionNotAllowed: tag requires autosign permission\\r\\n\\r\\nCan - you please help me to fix it?\\r\\n\", \n \"custom_fields\": [], \n \"date_created\": - \"1701647328\", \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11658\", - \n \"id\": 11658, \n \"last_updated\": \"1701682284\", \n \"milestone\": - null, \n \"priority\": 1, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": - \"Cannot tag byobu-5.133-8.el9 from epel9-testing-candidate to epel9\", \n - \ \"user\": {\n \"full_url\": \"https://pagure.io/user/prgutier\", - \n \"fullname\": \"Priscila Gutierres\", \n \"name\": \"prgutier\", - \n \"url_path\": \"user/prgutier\"\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\": - \"Seems like some sort of db issue?\\r\\n\\r\\n```\\r\\n2023-12-03 18:06:34,173 - INFO [bodhi.server][MainThread] Bodhi ready and at your service!\\r\\n2023-12-03 - 18:06:34,782 ERROR [bodhi.server][ThreadPoolExecutor-0_0] Error caught. Handling - HTML response.\\r\\nTraceback (most recent call last):\\r\\nFile \\\"/usr/lib64/python3.11/site-packages/sqlalchemy/engine/base.py\\\", - line 1910, in _execute_context\\r\\nself.dialect.do_execute(\\r\\nFile \\\"/usr/lib64/python3.11/site-packages/sqlalchemy/engine/default.py\\\", - line 736, in do_execute\\r\\ncursor.execute(statement, parameters)\\r\\npsycopg2.OperationalError: - unexpected response from server; first received character was \\\"\\ufffd\\\"\\r\\nlost - synchronization with server: got message type \\\"6\\\", length 876033280\\r\\n```\\r\\n\\r\\nsome - more tracebacks... then...\\r\\n\\r\\n```\\r\\n[SQL: SELECT releases.id AS - releases_id, releases.name AS releases_name, releases.long_name AS releases_long_name, - releases.version AS releases_version, releases.id_prefix AS releases_id_prefix, - releases.branch AS releases_branch, releases.dist_tag AS releases_dist_tag, - releases.stable_tag AS releases_stable_tag, releases.testing_tag AS releases_testing_tag, - releases.candidate_tag AS releases_candidate_tag, releases.pending_signing_tag - AS releases_pending_signing_tag, releases.pending_testing_tag AS releases_pending_testing_tag, - releases.pending_stable_tag AS releases_pending_stable_tag, releases.override_tag - AS releases_override_tag, releases.mail_template AS releases_mail_template, - releases.state AS releases_state, releases.composed_by_bodhi AS releases_composed_by_bodhi, - releases.create_automatic_updates AS releases_create_automatic_updates, releases.package_manager - AS releases_package_manager, releases.testing_repository AS releases_testing_repository, - releases.eol AS releases_eol\\r\\nFROM releases\\r\\nWHERE releases.name = - %(name_1)s OR releases.name = %(name_2)s OR releases.version = %(version_1)s\\r\\nLIMIT - %(param_1)s]\\r\\n[parameters: {'name_1': 'F26', 'name_2': 'F26', 'version_1': - 'F26', 'param_1': 1}]\\r\\n(Background on this error at: https://sqlalche.me/e/14/e3q8)\\r\\n```\\r\\n\\r\\nIt - might be that it's getting a big request and failing liveness probe? Not sure. - \\r\\n\", \n \"date_created\": \"1701632272\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 886891, \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\": - \"The 'lost of synch' just after the pod restart is something I've always - seen (perhaps it is trying to access the database before everything is fully - up).\\r\\nThe other SQL select doesn't seem very demanding, just a single - release queried by name...\\r\\n\\r\\nPerhaps we should just re-deploy and - things will be automagically fixed as it happened other times?...\", \n \"date_created\": - \"1701676592\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886915, \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've just fired - a new build of bodhi-base image and the pods were automatically redeployed... - let's see how things go today.\\r\\n\\r\\nBTW, before the pods restart I noticed - that the bodhi-celery pod was using over 10GByte of RAM... I don't know if - this is the expected usage of celery. After restart it is now stable at 1.5GByte.\", - \n \"date_created\": \"1701677486\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 886916, \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 @zlopez**:\\n- Issue priority set to: Waiting on - Reporter (was: Needs Review)\", \n \"date_created\": \"1701682808\", + \"**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/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/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\": \"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 }, \n {\n \"assignee\": null, \n \"blocks\": [], + \n \"close_status\": \"Invalid\", \n \"closed_at\": \"1707834402\", + \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 \"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\": - 886934, \n \"notification\": true, \n \"parent\": null, + 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\": \"It restarted - again at 10.39 UTC\\r\\nLiveness probe failed at 10.27 and 10.38 and restarted - the pod, but meanwhile updates were properly processed and I can't see any - spike in CPU or memory consumption, so... \", \n \"date_created\": - \"1701686829\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886945, \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 @zlopez**:\\n- Issue priority set to: Waiting on Assignee (was: Waiting - on Reporter)\\n- Issue tagged with: Needs investigation\", \n \"date_created\": - \"1701772217\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887080, \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\": \"My guess is - now that the ongoing networking problems cause the pod to be unreachable from - whatever service is monitoring its availability, thus it is restarted even - if it is working correctly.\", \n \"date_created\": \"1701786926\", + 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\": - 887107, \n \"notification\": false, \n \"parent\": null, + 895361, \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 \"comment\": \"It's not... - bodhi is all in IAD2, the networking issue was in RDU2. ;) \\r\\n\\r\\nWhat - seems to happen is that bodhi pod gets stuck processing something, the health - check fails and openshift kills it and restarts it. \\r\\n\\r\\nBut as to - what is causing the sticking issue, thats the question. \\r\\n\", \n \"date_created\": - \"1701802073\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887130, \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\": \"One more thing - I noticed: those restarts seems to have some regularity.\\r\\nThey seem to - happen every day at 0, 6, 12, 18 UTC. Probably some cron script/celery task.\", - \n \"date_created\": \"1701845726\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 887185, \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\": - \"So, my theory is: \\r\\n\\r\\nsome large request or set of requests is coming - in then, bodhi starts processing them, the database gets really busy and is - churning on them, then openshift sees bodhi not respond and so it kills the - web pods. ;( \\r\\n\\r\\nI have done several things to try and fix this: \\r\\n\\r\\n* - I tweaked the db config to hopefully be more perfomant. It should have more - workers and use more memory now. So ideally it would process fast enough to - avoid the issue.\\r\\n* I increased bodhi's liveness probe time from 10s to - 15s. \\r\\n\\r\\nAlong the way I found that bodhi's 'mid' pod that is supposed - to do db schema updates wasnt defined right. I fixed that and it should be - working now. (which I had to do to change the timeout anyhow). \\r\\n\\r\\nI've - noticed that bodhi doesn't have any request logs, so it's hard to say what's - hitting it every 6 hours. ;( Would it be possible to enable those somehow? - (at least for a short time)\\r\\nI guess we will see the next spike time where - we are at.\\r\\n\", \n \"date_created\": \"1702066520\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 887495, \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\": - \"Still rebooting :pensive: \\r\\nCan we look at apache logs to get the request - that causes the high load? Perhaps, the error log or the access log?\\r\\nOtherwise - I'll try to look how to print out the requested url from Pyramid.\\r\\n\\r\\nOr - we can try to update to bodhi 8.0 (which I'm going to release) and see if, - by any chance, the problem gets fixed...\", \n \"date_created\": - \"1702114433\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887521, \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\": \"Yeah. ;( \\r\\n\\r\\nSo - a few observations: \\r\\n\\r\\n* There's a ton of crawler traffic. I wonder - if there's any good to letting crawlers crawl at all here? We do block some - path;s, but perhaps we should just disallow * ?\\r\\n\\r\\n* I looked at proxy - logs and I couldn't find anything that broke things, but there's some crazy - crawler hits like: \\r\\n\\r\\nhttps://bodhi.fedoraproject.org//updates/?ike=pdftk-java-3.3.1&page=593\\r\\nand\\r\\nhttps://bodhi.fedoraproject.org//updates/?page=18050\\r\\nand\\r\\nhttps://bodhi.fedoraproject.org/updates/?page=1384&releases=F34&status=stable\\r\\n\\r\\nbut - all those loaded just fine here. (Although perhaps they are cached somehow - now?)\\r\\n\\r\\n* Looking around on the errors we see lead me to: \\r\\n\\r\\nhttps://stackoverflow.com/questions/43944787/sqlalchemy-celery-with-scoped-session-error/54751019#54751019\\r\\n\\r\\nbasically - a problem with using connection pools and database connections. I have no - idea if this might be possible in bodhi code, but might be worth looking into - ?\\r\\n\\r\\n* It would be great if we could get the last request that it - was processing when it became unresponsive, but not sure how possible that - is. ;( \", \n \"date_created\": \"1702143311\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 887534, \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've locally tested this PR:\\r\\nhttps://github.com/mattiaverga/bodhi/commit/6b657c467866159383dcd2afa4a1855c7449abcd\\r\\n\\r\\nIt - will make sqlalchemy disable connection pool and set a timeout to 30sec on - queries.\\r\\nHowever, I'm not comfortable to propose it as \\\"hey, this - will fix all problems\\\", since I'm not extremely expert on this kind of - topics... perhaps there's someone in infra / releng / CPE who knows better - what kind of impact this change may have.\\r\\nAFAIK all db operations Bodhi - run are \\\"atomic\\\", a connection is fired at the start and closed in the - end, so I don't think we're reusing connections from a pool. Perhaps we only - need to set the query timeout.\\r\\n\\r\\nIf this turns out to be good, I - could officially include it in the next Bodhi release in a more customizable - way from the config file, rather than hardcoded.\", \n \"date_created\": - \"1702213304\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887568, \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\": \"Cool, yeah, - I don't know if this is the problem, related to the problem, or completely - unrelated. ;) \\r\\n\\r\\nPerhaps @zlopez and/or @abompard could take a look - tomorrow?\", \n \"date_created\": \"1702226682\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 887570, \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\": \"During - the last week I have been receiving 2/3 alerts per day about bodhi web pod - restarting. \\r\\nFrom Openshift console it looks like there are spikes in - CPU and memory consumption just before the pod gets restarted.\\r\\nHowever, - I have no access to the logs, so can someone look at what the issue is there?\", - \n \"custom_fields\": [], \n \"date_created\": \"1701519410\", \n - \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11657\", - \n \"id\": 11657, \n \"last_updated\": \"1702226682\", \n \"milestone\": - null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Open\", \n \"tags\": [\n \"Needs investigation\"\n - \ ], \n \"title\": \"Bodhi pod restarting\", \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\": {\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\": + \"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 \"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\", \n \"name\": \"ops\", \n \"status\": [\n {\n \ \"bg_color\": \"#ffb300\", \n \"close\": false, @@ -1359,167 +1085,495 @@ 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\": 779, \n \"status\": + \ }\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\": - \"Fixed with Explanation\", \n \"closed_at\": \"1701699955\", \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 @phsmoura**:\\n- Issue priority set to: Waiting on - Assignee (was: Needs Review)\\n- Issue tagged with: low-gain, low-trouble, - ops\", \n \"date_created\": \"1701371337\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 886589, \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 created a user in staging FAS named leo manually and copied everything - from production FAS. You would need to reset password as there shouldn't be - any set now.\\r\\n\\r\\nLet me know if there is something wrong with the user.\", - \n \"date_created\": \"1701699957\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 886962, \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\": - \"1701699958\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886963, \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\": - \"1701699962\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886964, \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\\nIs there a way to manually assign me `leo` in stg FAS, - as I have it in prod FAS? I can't sign up because it says \\\"5 characters - minimum\\\"\\r\\n\\r\\n# When do you need this to be done by? (YYYY/MM/DD)\\r\\nsooner - rather than later, trying to deploy something in STG openshift and would like - to be able to monitor the deployment\\r\\n\", \n \"custom_fields\": [], - \n \"date_created\": \"1701368363\", \n \"depends\": [], \n \"full_url\": - \"https://pagure.io/fedora-infrastructure/issue/11656\", \n \"id\": 11656, - \n \"last_updated\": \"1701699962\", \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\": - \"Inability to get grandfathered-in username in stg FAS\", \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/leo\", \n \"fullname\": - \"Leo Puvilland\", \n \"name\": \"leo\", \n \"url_path\": \"user/leo\"\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, - \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\": 778, \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\": \"1701735777\", \n \"closed_by\": - {\n \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": + \"Fixed\", \n \"closed_at\": \"1708530448\", \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: aws, low-gain, low-trouble, ops\", \n - \ \"date_created\": \"1701371199\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 886588, \n \"notification\": + \ }, \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\": + 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\": 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\": - \"Can you provide: \\r\\n\\r\\n* what aws region would be best to spin it - up in?\\r\\n\\r\\n* What os do you want? Fedora 39? CentOS stream? Something - else?\\r\\n\\r\\n\", \n \"date_created\": \"1701648890\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 886904, \n \"notification\": + \"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\": + 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\": - \"> * what aws region would be best to spin it up in?\\r\\neu-west-1 (Ireland)\\r\\n\\r\\n> - * What os do you want? Fedora 39? CentOS stream? Something else?\\r\\nFedora - 39 should work fine!\\r\\n\\r\\n\", \n \"date_created\": \"1701680325\", - \n \"edited_on\": \"1701680366\", \n \"editor\": {\n \"full_url\": - \"https://pagure.io/user/bcapper\", \n \"fullname\": \"Ben Capper\", - \n \"name\": \"bcapper\", \n \"url_path\": \"user/bcapper\"\n - \ }, \n \"id\": 886923, \n \"notification\": false, - \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/bcapper\", \n \"fullname\": - \"Ben Capper\", \n \"name\": \"bcapper\", \n \"url_path\": - \"user/bcapper\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @kevin**:\\n- Issue assigned to kevin\", \n \"date_created\": - \"1701735770\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887021, \n \"notification\": true, \n \"parent\": + \"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\": + 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 + \ \"edited_on\": null, \n \"editor\": null, \n \"id\": + 896766, \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\": + 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\": 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. IP is 54.216.92.153\\r\\n\\r\\nI - put your ssh key(s) in for root, so you should be able to add others or manage - it from now. \\r\\n\\r\\nLet us know if you need anything else!\\r\\n\", \n - \ \"date_created\": \"1701735779\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 887022, \n \"notification\": + \ }\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\": + \"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 \"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 @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\": 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\": - \"1701735779\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887023, \n \"notification\": true, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \"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 \"edited_on\": null, \n \"editor\": null, \n \"id\": + 895277, \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\": \"**NOTE**\\r\\n\\r\\nIf + \ }\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 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\\nThis is a follow up on a discussion between - Leigh and Steve that @kevin is aware of.\\r\\n\\r\\nI'm requesting an m4.10xLarge - AWS instance to support Fedora apps containerisation and networking in the - Waterford research team\\r\\n\\r\\n# When do you need this to be done by? - (YYYY/MM/DD)\\r\\n----\\r\\n\\r\\nasap\", \n \"custom_fields\": [], \n - \ \"date_created\": \"1701333034\", \n \"depends\": [], \n \"full_url\": - \"https://pagure.io/fedora-infrastructure/issue/11655\", \n \"id\": 11655, - \n \"last_updated\": \"1701735779\", \n \"milestone\": null, \n - \ \"priority\": 3, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Closed\", \n \"tags\": [\n \"aws\", - \n \"low-gain\", \n \"low-trouble\", \n \"ops\"\n ], - \n \"title\": \"Request for m4.10xLarge Instance to Support Fedora Apps - Containerisation\", \n \"user\": {\n \"full_url\": \"https://pagure.io/user/bcapper\", - \n \"fullname\": \"Ben Capper\", \n \"name\": \"bcapper\", \n - \ \"url_path\": \"user/bcapper\"\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\", + 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\", \n \"name\": \"ops\", \n \"status\": [\n {\n \ \"bg_color\": \"#ffb300\", \n \"close\": false, \n \"close_status\": null, \n \"default\": true, @@ -1541,86 +1595,174 @@ 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\": 776, \n \"status\": + \ }\n }, \n \"rank\": 836, \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\": \"1701288066\", \n \"closed_by\": + \"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\": \"**Metadata - Update from @phsmoura**:\\n- Issue priority set to: Waiting on Assignee (was: - Needs Review)\\n- Issue tagged with: Needs investigation, low-gain, low-trouble, - ops\", \n \"date_created\": \"1701284839\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 886445, \n \"notification\": + \ }, \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\": 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 is due to the sync issue noted recently. \\r\\n\\r\\nlmacken was removed - from infra-sig account group, but never logged into src.fedoraproject.org, - so it didn't update that he was no longer in the group. That data is pulled - from pkgs01/src.fedoraproject.org so... ;( \\r\\n\\r\\nI manually removed - them from the group in the db. This is probibly another good reason we do - need a out of band sync. \\r\\n\", \n \"date_created\": \"1701288079\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 886448, \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- + \"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\": + 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\": - \"1701288083\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886449, \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 assigned to kevin\", \n \"date_created\": - \"1701288092\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886450, \n \"notification\": true, \n \"parent\": + \"1707778257\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 895279, \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\": \"Ah, I didn't - think about that. Thank you for fixing it!\", \n \"date_created\": - \"1701291714\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886466, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/decathorpe\", \n \"fullname\": \"Fabio - Valentini\", \n \"name\": \"decathorpe\", \n \"url_path\": - \"user/decathorpe\"\n }\n }\n ], \n \"content\": - \"I'm sorry if this tracker is the wrong one for this kind of issue, but I - didn't know where else to file it.\\r\\n\\r\\nI recently sent some emails - to python-bcrypt-maintainers@fedoraproject.org and got a \\\"bounce\\\" message - back:\\r\\n\\r\\n```\\r\\nThis is the mail system at host bastion01.iad2.fedoraproject.org.\\r\\n\\r\\nI'm - sorry to have to inform you that your message could not\\r\\nbe delivered - to one or more recipients. It's attached below.\\r\\n\\r\\nFor further assistance, - please send mail to postmaster.\\r\\n\\r\\nIf you do so, please include this - problem report. You can\\r\\ndelete your own text from the attached returned - message.\\r\\n\\r\\n The mail system\\r\\n\\r\\n - (expanded from\\r\\n ): delivery - temporarily\\r\\n suspended: Host or domain name not found. Name service - error for\\r\\n name=openmailbox.org type=MX: Host not found, try again\\r\\n```\\r\\n\\r\\nI - cannot tell where lewk@openmailbox.org comes from. The users associated with - the python bcrypt package are @pingou and @mhayden (which are not the problem), - and groups infra-sig, epel-packagers-sig, and python-packagers-sig, but I - can't tell where the problematic address comes from. It's not from the [watchers](https://src.fedoraproject.org/api/0/rpms/python-bcrypt/watchers) - either.\\r\\n\", \n \"custom_fields\": [], \n \"date_created\": - \"1701266028\", \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11654\", - \n \"id\": 11654, \n \"last_updated\": \"1701291714\", \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\": \"email to python-bcrypt-maintainers@fedoraproject.org - partially bounces\", \n \"user\": {\n \"full_url\": \"https://pagure.io/user/decathorpe\", - \n \"fullname\": \"Fabio Valentini\", \n \"name\": \"decathorpe\", - \n \"url_path\": \"user/decathorpe\"\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 }\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\", \n \"name\": \"ops\", \n \"status\": [\n {\n \ \"bg_color\": \"#ffb300\", \n \"close\": false, \n \"close_status\": null, \n \"default\": true, @@ -1642,211 +1784,52 @@ 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\": 775, \n \"status\": + \ }\n }, \n \"rank\": 835, \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\": \"1701736409\", \n \"closed_by\": {\n - \ \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": + \"Fixed with Explanation\", \n \"closed_at\": \"1707438855\", \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\": \"> If - possible, I should be added there as an admin.\\r\\n\\r\\nMy username on GitHub - is 'siteshwar'.\", \n \"date_created\": \"1701248986\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 886365, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \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 \"comment\": - \"Where the project is hosted now?\", \n \"date_created\": \"1701250525\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 886369, \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\": \"> Where the - project is hosted now?\\r\\n\\r\\nFor experimental purpose, I have it under - my [namespace](https://github.com/siteshwar/openscanhub-deployment-configs/). - The files related to deployment can be seen in [fedora-infra](https://github.com/siteshwar/openscanhub-deployment-configs/tree/main/fedora-infra) - directory.\", \n \"date_created\": \"1701250941\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 886370, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \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 \"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\": \"1701284759\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 886443, \n \"notification\": + \ }, \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\": - \"I don't think you need that, everything related to deployment could be directly - in ansible. See [release-monitoring role](https://pagure.io/fedora-infra/ansible/blob/main/f/roles/openshift-apps/release-monitoring) - for example. Only think that is managed on Github are the deployment webhooks, - everything other is in the role.\", \n \"date_created\": \"1701349797\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 886539, \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 don't think - you need that, everything related to deployment could be directly in ansible. - See [release-monitoring role](https://pagure.io/fedora-infra/ansible/blob/main/f/roles/openshift-apps/release-monitoring) - for example. Only think that is managed on Github are the deployment webhooks, - everything other is in the role.\\r\\n\\r\\nI would prefer to use GitHub for - dockerfiles. The process of building and deploying container images looks - like:\\r\\n\\r\\n- Push to GitHub should trigger a container image build on - quay.io.\\r\\n- When the image build is successful, it should be deployed - on the fedora infra staging deployment.\\r\\n- Tests should be run on the - staging deployment.\\r\\n- If the tests pass, the same container image that - is deployed to staging should be promoted to ready for production.\\r\\n\\r\\nAlso, - I would like to use GitHub Actions CI for running basic tests on each pull - request and push to the `main` branch before a container image is built on - quay.io. \", \n \"date_created\": \"1701350508\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 886541, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \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 \"comment\": - \"This is really just on you, how do you want to manage the project upstream. - But I don't think it needs to be in fedora-infra namespace, as it is not project - that is maintained by Fedora Infrastructure team.\", \n \"date_created\": - \"1701698859\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886959, \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 is really - just on you, how do you want to manage the project upstream. But I don't think - it needs to be in fedora-infra namespace, as it is not project that is maintained - by Fedora Infrastructure team.\\r\\n\\r\\nIn that case, I would request for - a repository under [openscanhub](https://github.com/openscanhub/) GitHub organization.\\r\\n\\r\\n@kevin - Do you have any disagreement with that? I would add you as an `admin` there - as a backup.\\r\\n\\r\\n@kdudka Do you have any objection for having `fedora-infra` - repository in the upstream organization?\", \n \"date_created\": - \"1701699474\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886961, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \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 \"comment\": - \"@svashisht A repository under the openscanhub GitHub organization sounds - like a good idea to me.\", \n \"date_created\": \"1701703011\", \n - \ \"edited_on\": null, \n \"editor\": null, \n \"id\": - 886972, \n \"notification\": false, \n \"parent\": null, - \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/kdudka\", \n \"fullname\": \"Kamil Dudka\", - \n \"name\": \"kdudka\", \n \"url_path\": \"user/kdudka\"\n - \ }\n }, \n {\n \"comment\": \"Sounds very - reasonable to me. ;) Feel free to add me... \", \n \"date_created\": - \"1701723053\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887004, \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\": \"@kevin I have - created https://github.com/openscanhub/fedora-infra/ and added you there as - an 'admin`. Please confirm you can access it and close this issue.\", \n \"date_created\": - \"1701725679\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887009, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \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 \"comment\": - \"@kevin I have created https://github.com/openscanhub/fedora-infra/ and added - you there as an 'admin`. Please confirm you can access it and close this issue.\", - \n \"date_created\": \"1701725879\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 887010, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \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 \"comment\": - \"**Metadata Update from @kevin**:\\n- Issue assigned to kevin\", \n \"date_created\": - \"1701736403\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887027, \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\": \"I can indeed. - Thanks!\", \n \"date_created\": \"1701736411\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 887028, \n \"notification\": + \"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\": 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\": - \"1701736411\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887029, \n \"notification\": true, \n \"parent\": + \"**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\": 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\\n\\r\\nI need to store dockerfiles, configurations - etc. for deployment, so I am requesting for a repository on [fedora-infra](https://github.com/fedora-infra) - organization on GitHub. Name of the repository should be 'openscanhub`. If - possible, I should be added there as an admin.\\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\": \"1701247444\", \n \"depends\": [], \n - \ \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11653\", - \n \"id\": 11653, \n \"last_updated\": \"1701736411\", \n \"milestone\": + \ }\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 \"status\": \"Closed\", \n \"tags\": [\n \"low-gain\", \n \"low-trouble\", \n \"ops\"\n ], \n \"title\": - \"Request for 'openscanhub' repository on GitHub\", \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 \"close_status\": \"Will Not/Can Not fix\", - \n \"closed_at\": \"1701198533\", \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\": \"There - were local changes to aarch64 osbs inventory files, I have stashed them. did - a ```git pull``` not sure if anything else is needed. \", \n \"date_created\": - \"1701181726\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886257, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {\n \"Heart\": [\n \"praiskup\"\n - \ ]\n }, \n \"user\": {\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 }, \n {\n \"comment\": - \"Thats pretty odd. The 'mirror_pagure_ansible.service' on batcave01 watches - for fedora-messages from pagure.io and mirrors it when fedora-infra/ansible - changes. \\r\\n\\r\\nNot sure why it would have local changes... :( \", \n - \ \"date_created\": \"1701188488\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 886282, \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\": - \"Seems its all good now, but if this issue appear again feel free to reopen - \", \n \"date_created\": \"1701198535\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 886324, \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\": - \"**Metadata Update from @phsmoura**:\\n- Issue close_status updated to: Will - Not/Can Not fix\\n- Issue status updated to: Closed (was: Open)\", \n \"date_created\": - \"1701198536\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886325, \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\": \"Can anyone please - help me to resolve this within the scheduled Copr outage?\\r\\nhttps://status.fedoraproject.org/\", - \n \"custom_fields\": [], \n \"date_created\": \"1701181049\", \n - \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11652\", - \n \"id\": 11652, \n \"last_updated\": \"1701198536\", \n \"milestone\": - null, \n \"priority\": 1, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": - \"ansible.git on Batcave is not updated upon pushes\", \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 \"assignee\": null, \n \"blocks\": - [], \n \"boards\": [\n {\n \"board\": {\n \"active\": + \"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\", \n \"name\": \"ops\", \n \"status\": [\n {\n \ \"bg_color\": \"#ffb300\", \n \"close\": false, @@ -1869,102 +1852,63 @@ 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\": 773, \n \"status\": + \ }\n }, \n \"rank\": 834, \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-gain, low-trouble, ops\", \n \"date_created\": \"1701176139\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 886234, \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\": \"If anybody wants - to work on this, here is a guide for it https://docs.fedoraproject.org/en-US/infra/sysadmin_guide/database/#_creating_a_new_postgresql_database\\r\\n\\r\\nThis - needs to be created for staging now and added to secrets, which could be used - in ansible role.\", \n \"date_created\": \"1701176335\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 886235, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": + \"Fixed\", \n \"closed_at\": \"1707778288\", \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\": - \"It's worth noting here that if possible, we prefer to have several db users - for each app. (see the document link). \\r\\n\\r\\nie, an admin account to - do schema upgrades or maint, a regular account for normal operations and optionally - a read-only user in case the app can use that for anything. \\r\\n\\r\\nCan - your app accomodate that? Or would you prefer one account? The downside of - one account is then that it has all the perms on your db. Restricting admin/schema - changes to an admin account makes the app more secure.\\r\\n\\r\\nI'm sorry - it's taken so long to get to this. I hope to get some time this coming week - to help move your staging deployment forward. \\r\\n\", \n \"date_created\": - \"1701648698\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886903, \n \"notification\": false, \n \"parent\": + \"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\": + 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\": 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\": \"> Can your app - accomodate that? Or would you prefer one account?\\r\\n\\r\\nOpenScanHub only - supports one account. The user `openscanhub` should have all privileges on - the `openscanhub` database.\\r\\n\\r\\n> I'm sorry it's taken so long to get - to this. I hope to get some time this coming week to help move your staging - deployment forward. \\r\\n\\r\\nI need the database on the production instance - too.\\r\\n\", \n \"date_created\": \"1701699221\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 886960, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \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 \"comment\": - \"ok, too bad. \\r\\n\\r\\nok. I created the staging db user and database. - It's openscanhub for username and db name. It should have perms on the db. - \\r\\n\\r\\nThe password you can use in your playbooks is \\\"{{ openscanhub_db_password_stg - }}\\\". If you need to access the db directly, I can get you the password... - \\r\\n\\r\\nI'd prefer to finish all the staging deployment before setting - anything up there. \\r\\n\\r\\nShall we close this out now? or do you need - anything further on the db?\\r\\n\", \n \"date_created\": \"1701728637\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 887011, \n \"notification\": false, \n \"parent\": null, + \ }\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 + \ \"edited_on\": null, \n \"editor\": null, \n \"id\": + 895281, \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\": \"> Shall we close - this out now? or do you need anything further on the db?\\r\\n\\r\\nPlease - share the exact address of the staging database, or the url I could use in - a template file.\", \n \"date_created\": \"1701805832\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 887153, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \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 \"comment\": - \"Yes, that would be helpfull... ;) \\r\\n\\r\\nit's: \\r\\n\\r\\ndb01.stg.iad2.fedoraproject.org\\r\\n\\r\\nusername - is openscanhub, password can be inserted with the \\\"{{ openscanhub_db_password_stg - }}\\\" variable.\", \n \"date_created\": \"1701810010\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 887165, \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\": \"# - Describe what you would like us to do:\\r\\n----\\r\\n\\r\\nThis is a follow - up on https://pagure.io/fedora-infra/ansible/pull-request/1668#comment-195462\\r\\n\\r\\nI - am requesting for access to staging and production instances of central postgres - database. Both the database and usernames should be 'openscanhub'.\\r\\n\\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\": \"1701176093\", \n - \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11651\", - \n \"id\": 11651, \n \"last_updated\": \"1701810010\", \n \"milestone\": + \ }\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\": \"Open\", \n \"tags\": [\n \"low-gain\", - \n \"low-trouble\", \n \"ops\"\n ], \n \"title\": - \"Request for central database for OpenScanHub\", \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\": {\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 \"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 \"name\": \"ops\", \n \"status\": [\n {\n \ \"bg_color\": \"#ffb300\", \n \"close\": false, \n \"close_status\": null, \n \"default\": true, @@ -1986,379 +1930,638 @@ 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\": 772, \n \"status\": + \ }\n }, \n \"rank\": 833, \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\": \"1701187177\", \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: low-gain, low-trouble, ops\", \n \"date_created\": - \"1701175579\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886231, \n \"notification\": true, \n \"parent\": + \"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\": + {\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\": + 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\": - \"1701175582\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886232, \n \"notification\": true, \n \"parent\": + \"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\": \"I looked at - the user account and he is in the `packager` group so that is correct, but - maybe this change is not yet reflected in https://src.fedoraproject.org.\\r\\n\\r\\n@mengel - Could you log out and log in to https://src.fedoraproject.org? That should - update your groups on the page. You currently have [0 groups on dist-git](https://src.fedoraproject.org/user/mengel/groups).\", - \n \"date_created\": \"1701175981\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 886233, \n \"notification\": + \ }\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/zlopez\", \n \"fullname\": - \"Michal Kone\\u010dn\\u00fd\", \n \"name\": \"zlopez\", \n \"url_path\": - \"user/zlopez\"\n }\n }, \n {\n \"comment\": - \"That fixed it. Thanks for the suggestion, @zlopez !\", \n \"date_created\": - \"1701179764\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886245, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/psabata\", \n \"fullname\": \"Petr \\u0160abata\", - \n \"name\": \"psabata\", \n \"url_path\": \"user/psabata\"\n - \ }\n }, \n {\n \"comment\": \"@zlopez logging - out and in again worked. Thanks!\", \n \"date_created\": \"1701179773\", + {\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\": + 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\": - 886246, \n \"notification\": false, \n \"parent\": null, + 894890, \n \"notification\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/mengel\", \n \"fullname\": \"Michael Engel\", - \n \"name\": \"mengel\", \n \"url_path\": \"user/mengel\"\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\": \"1701187178\", \n - \ \"edited_on\": null, \n \"editor\": null, \n \"id\": - 886274, \n \"notification\": true, \n \"parent\": null, + \"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/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\\nTrying to add the user `mengel` to `rpms/bluechi` - with commit access yields an error saying the user needs to be in the packager - group, which is obvious; however, the user is a valid packager according to - the account information. I'm a repo admin, not the main admin, however.\\r\\n\\r\\nPlease, - fix the issue or, at least as a temporary workaround, grant `mengel` commit - privileges to that repository.\\r\\n\\r\\n# When do you need this to be done - by? (YYYY/MM/DD)\\r\\n2023/11/29\", \n \"custom_fields\": [], \n \"date_created\": - \"1701169737\", \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11650\", - \n \"id\": 11650, \n \"last_updated\": \"1701187178\", \n \"milestone\": + \"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 \"low-gain\", - \n \"low-trouble\", \n \"ops\"\n ], \n \"title\": - \"Cannot add a valid packager to a package repo\", \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/psabata\", \n \"fullname\": \"Petr \\u0160abata\", - \n \"name\": \"psabata\", \n \"url_path\": \"user/psabata\"\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\": 774, \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 tagged with: Needs investigation\", \n \"date_created\": \"1701175396\", + [], \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 \"edited_on\": null, \n \"editor\": null, \n \"id\": - 886230, \n \"notification\": true, \n \"parent\": null, + 894844, \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 @phsmoura**:\\n- Issue priority set to: Waiting on Assignee (was: Needs - Review)\\n- Issue tagged with: medium-gain, medium-trouble, ops\", \n \"date_created\": - \"1701198231\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886322, \n \"notification\": true, \n \"parent\": + 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/phsmoura\", \n \"fullname\": \"Pedro Moura\", - \n \"name\": \"phsmoura\", \n \"url_path\": \"user/phsmoura\"\n - \ }\n }, \n {\n \"comment\": \"I am unsure - what could be causing the copr end of things, but the wiki is very likely - the daily db upgrade. ;( \\r\\n\\r\\nThat starts at 05:00UTC... \\r\\n\\r\\nI - am not sure why it's hitting harder than before. Perhaps we can do something - to make it not starve things. Will need investigation on mariadb backups. - \\r\\n\", \n \"date_created\": \"1701306115\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 886488, \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\": - \"Thx for looking into this.\\r\\n\\r\\n> I am unsure what could be causing - the copr end of things \\r\\n\\r\\nAs I said, it might be unrelated. I'll - keep an eye out on things and update the status here, maybe it was a unrelated - thing that with a bit of luck vanishes by itself again.\\r\\n\\r\\n>but the - wiki is very likely the daily db upgrade. ;(\\r\\n> That starts at 05:00UTC...\\r\\n\\r\\nAhh! - FWIW, not sure if it really \\\"hitting harder than before\\\", as I noticed - this before, just never complained.\", \n \"date_created\": \"1701323055\", + \"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\": + 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\": + 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\": + 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\": - 886499, \n \"notification\": false, \n \"parent\": null, + 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/thl\", \n \"fullname\": \"Thorsten Leemhuis\", - \n \"name\": \"thl\", \n \"url_path\": \"user/thl\"\n - \ }\n }\n ], \n \"content\": \"I noticed two small - problems that look correlated to me, but maybe they are not:\\r\\n\\r\\n* - At a certain time of day saving edits in the fedoraproject wiki often (always?) - fail with a \\\"504 Gateway Timeout \\u2013 The gateway did not receive a - timely response from the upstream server or application.\\\" (quote from Firefox). - I ran into this occasionally for quite a while already, always during my early - mornings. Not sure when, seems to be around ~5:00 UTC? A little later things - start to work as expected again.\\r\\n\\r\\n* I often kick coprs builds by - tagging something in gitlab, which then sends a webhook to copr to kick of - a build. That used to worked reliably, but since about a week gitlab sometimes - fails to send the webhook \\u2013 also during my early mornings . Error message - in the gitlab UI: \\\"Internal error occurred while delivering this webhook. - \\u2013 Error: Net::ReadTimeout\\\"\\r\\n\\r\\nToday I checked if both happened - at the same time. And indeed that was the case. That was at about 5:15 UTC - (the webhook had worked fine about an hour earlier)\\r\\n\\r\\nThis is not - urgent, but somewhat annoying -- especially as I lost wiki changes due to - this. \", \n \"custom_fields\": [], \n \"date_created\": \"1701150059\", - \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11649\", - \n \"id\": 11649, \n \"last_updated\": \"1701323055\", \n \"milestone\": + \"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\": \"Open\", \n \"tags\": [\n \"Needs investigation\", - \n \"medium-gain\", \n \"medium-trouble\", \n \"ops\"\n - \ ], \n \"title\": \"It *seems* to me saving wiki edits and sending - copr webhooks fails at a certain time of day\", \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/thl\", \n \"fullname\": \"Thorsten Leemhuis\", - \n \"name\": \"thl\", \n \"url_path\": \"user/thl\"\n }\n + [], \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\": \"1701190155\", \n \"closed_by\": {\n - \ \"full_url\": \"https://pagure.io/user/praiskup\", \n \"fullname\": - \"Pavel Raiskup\", \n \"name\": \"praiskup\", \n \"url_path\": - \"user/praiskup\"\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: medium-gain, medium-trouble\", - \n \"date_created\": \"1701112444\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 886070, \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\": - \"And the outage is over. Our copr-be data was down for ~15 minutes because - of the snapshot automation (we had to fix a playbook online), otherwise it - would be 5 minutes including reboot (6 volumes, raid10 and raid1, 48T in total).\\r\\n\\r\\nShould - you see any issues, please ping here or in the chat. Or submit an issue https://github.com/fedora-copr/copr/issues\\r\\n\\r\\nHappy - building!\", \n \"date_created\": \"1701190157\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 886287, \n \"notification\": + \"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\": 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\": - \"**Metadata Update from @praiskup**:\\n- Issue close_status updated to: Fixed\\n- + {\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\": - \"1701190158\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886288, \n \"notification\": true, \n \"parent\": + \"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/praiskup\", \n \"fullname\": \"Pavel Raiskup\", - \n \"name\": \"praiskup\", \n \"url_path\": \"user/praiskup\"\n - \ }\n }, \n {\n \"comment\": \"Release notes - (but this time the outage was mostly about getting us from F37 to F39):\\r\\nhttps://docs.pagure.org/copr.copr/release-notes/2023-11-28.html\", - \n \"date_created\": \"1701190286\", \n \"edited_on\": \"1701190306\", - \n \"editor\": {\n \"full_url\": \"https://pagure.io/user/praiskup\", - \n \"fullname\": \"Pavel Raiskup\", \n \"name\": \"praiskup\", - \n \"url_path\": \"user/praiskup\"\n }, \n \"id\": - 886289, \n \"notification\": false, \n \"parent\": null, + \"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/praiskup\", \n \"fullname\": \"Pavel Raiskup\", - \n \"name\": \"praiskup\", \n \"url_path\": \"user/praiskup\"\n - \ }\n }\n ], \n \"content\": \"There will be a Fedora - Copr outage starting at\\r\\n\\r\\n date --date \\\"2023-11-28 13:30 UTC\\\"\\r\\n\\r\\nThe - outage will last approximately 4 hours. The build queue processing will be\\r\\nstopped - during the outage, and the Frontend/Web-UI will be down most of the\\r\\ntime, - too - so no new tasks will be accepted.\\r\\n\\r\\nThe Copr Backend repositories - will not be available for approximately 30\\r\\nminutes, so anyone using the - `dnf copr enable` repositories can see `404` errors\\r\\nduring this outage. - \ We'll try to minimize this \\\"hard\\\" outage as much as possible.\\r\\n\\r\\nReason - for outage:\\r\\nWe will update the infrastructure machines to Fedora 39 (from - Fedora 37), and\\r\\nupdate the Copr packages to the latest upstream versions.\\r\\n\\r\\nAffected - Services:\\r\\nhttps://copr.fedorainfracloud.org/\\r\\nhttps://download.copr.fedorainfracloud.org/results/\\r\\n\\r\\nUpstream - ticket:\\r\\nhttps://github.com/fedora-copr/copr/issues/2964\\r\\n\\r\\nPlease - join [Fedora Build System](https://matrix.to/#/#buildsys:fedoraproject.org) - Matrix channel (or #fedora-buildsys on libera.chat) or add comments to this - ticket.\\r\\n\", \n \"custom_fields\": [], \n \"date_created\": - \"1701095189\", \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11648\", - \n \"id\": 11648, \n \"last_updated\": \"1701190306\", \n \"milestone\": - null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Closed\", \n \"tags\": [\n \"copr\", - \n \"medium-gain\", \n \"medium-trouble\", \n \"outage\"\n - \ ], \n \"title\": \"Fedora Copr - upgrading infrastructure to Fedora - 39 and to a new \\\"November 2023\\\" release\", \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/praiskup\", \n \"fullname\": \"Pavel Raiskup\", - \n \"name\": \"praiskup\", \n \"url_path\": \"user/praiskup\"\n + \"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 \"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\": 771, \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\": \"1701092889\", \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\": - \"This is already resolved.\", \n \"date_created\": \"1701092869\", + [], \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 \"edited_on\": null, \n \"editor\": null, \n \"id\": - 886013, \n \"notification\": false, \n \"parent\": null, + 894694, \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-gain, low-trouble, ops\", \n \"date_created\": - \"1701092871\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886014, \n \"notification\": true, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \ }\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 \"edited_on\": null, \n \"editor\": null, \n \"id\": + 894695, \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\": - \"1701092882\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886015, \n \"notification\": true, \n \"parent\": + \"1707313095\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 894696, \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\\n- Issue status - updated to: Closed (was: Open)\", \n \"date_created\": \"1701092891\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 886016, \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\": \"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- + 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\": + 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 am not able to login to [OCP staging](https://console-openshift-console.apps.ocp.stg.fedoraproject.org/) - instance, but I can login to [production](https://console-openshift-console.apps.ocp.fedoraproject.org/).\\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\": \"1701081404\", \n - \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11647\", - \n \"id\": 11647, \n \"last_updated\": \"1701092891\", \n \"milestone\": - null, \n \"priority\": 1, \n \"private\": false, \n \"related_prs\": + 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\": [], \n \"status\": \"Closed\", \n \"tags\": [\n \"low-gain\", - \n \"low-trouble\", \n \"ops\"\n ], \n \"title\": - \"Not able to login to OCP staging\", \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 \"close_status\": \"Fixed\", \n \"closed_at\": \"1701089616\", - \n \"closed_by\": {\n \"full_url\": \"https://pagure.io/user/adrian\", - \n \"fullname\": \"Adrian Reber\", \n \"name\": \"adrian\", - \n \"url_path\": \"user/adrian\"\n }, \n \"comments\": [\n - \ {\n \"comment\": \"Should be fixed soon. Someone was running - the script to move content to the archive with `--directoryRe='/36/Everything'` - which excluded the Modular content.\\r\\n\\r\\nI reran the script with `-directoryRe=36` - and it should soon work again. Maybe 60 minutes.\", \n \"date_created\": - \"1701089618\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 885994, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/adrian\", \n \"fullname\": \"Adrian Reber\", - \n \"name\": \"adrian\", \n \"url_path\": \"user/adrian\"\n - \ }\n }, \n {\n \"comment\": \"**Metadata Update - from @adrian**:\\n- Issue close_status updated to: Fixed\\n- Issue status - updated to: Closed (was: Open)\", \n \"date_created\": \"1701089618\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 885995, \n \"notification\": true, \n \"parent\": null, - \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/adrian\", \n \"fullname\": \"Adrian Reber\", - \n \"name\": \"adrian\", \n \"url_path\": \"user/adrian\"\n - \ }\n }\n ], \n \"content\": \"# Describe what you - would like us to do:\\r\\n----\\r\\nOn fedora 36, the fedora-modular.repo - is using a metalink that provides out of date information. Dnf update fails - because fedora-modular doesn't find any functional mirror.\\r\\n\\r\\nMy fedora-modular.repo - contains the following:\\r\\n```\\r\\n# cat /etc/yum.repos.d/fedora-modular.repo - \\r\\n[fedora-modular]\\r\\nname=Fedora Modular $releasever - $basearch\\r\\n#baseurl=http://download.example/pub/fedora/linux/releases/$releasever/Modular/$basearch/os/\\r\\nmetalink=https://mirrors.fedoraproject.org/metalink?repo=fedora-modular-$releasever&arch=$basearch\\r\\nenabled=1\\r\\ncountme=1\\r\\nmetadata_expire=7d\\r\\nrepo_gpgcheck=0\\r\\ntype=rpm\\r\\ngpgcheck=1\\r\\ngpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch\\r\\nskip_if_unavailable=False\\r\\n```\\r\\n\\r\\nOutput - of `dnf update`:\\r\\n```\\r\\n# dnf update\\r\\nFedora Modular 36 - x86_64 - \ 314 - \ B/s | 196 B 00:00 \\r\\nErrors during downloading metadata for repository - 'fedora-modular':\\r\\n - Status code: 404 for http://mirror.rnet.missouri.edu/fedora/linux/releases/36/Modular/x86_64/os/repodata/repomd.xml - (IP: 128.206.116.77)\\r\\n - Status code: 404 for https://dl.fedoraproject.org/pub/fedora/linux/releases/36/Modular/x86_64/os/repodata/repomd.xml - (IP: 38.145.60.23)\\r\\n - Status code: 404 for https://d2lzkl7pfhq30w.cloudfront.net/pub/fedora/linux/releases/36/Modular/x86_64/os/repodata/repomd.xml - (IP: 18.164.93.81)\\r\\n - Status code: 404 for http://dl.fedoraproject.org/pub/fedora/linux/releases/36/Modular/x86_64/os/repodata/repomd.xml - (IP: 38.145.60.24)\\r\\nError: Failed to download metadata for repo 'fedora-modular': - Cannot download repomd.xml: Cannot download repodata/repomd.xml: All mirrors - were tried\\r\\n```\\r\\n\\r\\nThe metalink resolves the mirrors into the - following list:\\r\\n```\\r\\n\\r\\n\\r\\n \\r\\n - \ \\r\\n 1651698721\\r\\n - \ 6697\\r\\n \\r\\n 5f6cc4d93eee5be1c5ce67f36dbe8c1b\\r\\n - \ 016066313581a7f11ea7ff7bf671aa3af114bb86\\r\\n - \ 3892566baca15dac6365e08e7f6919a0632d34b7b751e199bc1e0eb63a4302f0\\r\\n - \ a11aa96d2b60ef6fa056ab1cda0ced7ec36d6b4106c94033b1e284a4915c6cbc2e18b5daa47a4c3ede832b3c3bb98ef13ab55b3baea6f3de1179fea62edb70e2\\r\\n - \ \\r\\n \\r\\n rsync://mirror.rnet.missouri.edu/fedora-enchilada/releases/36/Modular/x86_64/os/repodata/repomd.xml\\r\\n - \ http://mirror.rnet.missouri.edu/fedora/linux/releases/36/Modular/x86_64/os/repodata/repomd.xml\\r\\n - \ https://d2lzkl7pfhq30w.cloudfront.net/pub/fedora/linux/releases/36/Modular/x86_64/os/repodata/repomd.xml\\r\\n - \ https://dl.fedoraproject.org/pub/fedora/linux/releases/36/Modular/x86_64/os/repodata/repomd.xml\\r\\n - \ http://dl.fedoraproject.org/pub/fedora/linux/releases/36/Modular/x86_64/os/repodata/repomd.xml\\r\\n - \ \\r\\n \\r\\n \\r\\n\\r\\n```\\r\\nAll - the URLs are using /fedora/linux/releases/36/Modular/x86_64/os/repodata/repomd.xml - but should be replaced with /**archive**/fedora/linux/releases/36/Modular/x86_64/os/repodata/\\r\\n\\r\\nNote - that the other repositories are working well (fedora.repo and fedora-updates.repo)\\r\\n\\r\\n# - When do you need this to be done by? (YYYY/MM/DD)\\r\\n----\\r\\nAs soon as - possible\", \n \"custom_fields\": [], \n \"date_created\": \"1701078366\", - \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11646\", - \n \"id\": 11646, \n \"last_updated\": \"1701089618\", \n \"milestone\": - null, \n \"priority\": 1, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": - \"Mirror issue with fedora 36 and fedora-modular repo\", \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/frenaud\", \n \"fullname\": - \"Florence Blanc-Renaud\", \n \"name\": \"frenaud\", \n \"url_path\": - \"user/frenaud\"\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 \"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 \"name\": \"ops\", \n \"status\": [\n {\n \ \"bg_color\": \"#ffb300\", \n \"close\": false, \n \"close_status\": null, \n \"default\": true, @@ -2380,417 +2583,138 @@ 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\": 770, \n \"status\": + \ }\n }, \n \"rank\": 831, \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\": \"1701301592\", \n \"closed_by\": {\n - \ \"full_url\": \"https://pagure.io/user/kevin\", \n \"fullname\": + \"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 @zlopez**:\\n- Issue priority set to: Waiting on Assignee (was: + 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\": - \"1701090744\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886005, \n \"notification\": true, \n \"parent\": + \"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/zlopez\", \n \"fullname\": \"Michal Kone\\u010dn\\u00fd\", - \n \"name\": \"zlopez\", \n \"url_path\": \"user/zlopez\"\n - \ }\n }, \n {\n \"comment\": \"So, you can - call the room whatever name(s) you like, but for aliases it needs to be lower - case and no &'s... \\r\\n\\r\\nso, music-and-audio ? music-audio ? Any preference?\\r\\n\", - \n \"date_created\": \"1701119682\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 886099, \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\": - \"> So, you can call the room whatever name(s) you like, but for aliases it - needs to be lower case and no &'s...\\r\\n> \\r\\n> so, music-and-audio ? - music-audio ? Any preference?\\r\\n> \\r\\n\\r\\nLet's take \\u201cmusic-audio\\u201d - for the Room URL.\\r\\n\\r\\nhttps://discussion.fedoraproject.org/t/95775/62\", - \n \"date_created\": \"1701199733\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 886328, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/hankuoffroad\", \n \"fullname\": - \"hank L\", \n \"name\": \"hankuoffroad\", \n \"url_path\": - \"user/hankuoffroad\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @kevin**:\\n- Issue assigned to kevin\", \n \"date_created\": - \"1701301586\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886481, \n \"notification\": true, \n \"parent\": + \"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, room is - made. As soon as folks join I can make them moderators and you can set topic/room - icon, etc. \\r\\n\", \n \"date_created\": \"1701301594\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 886482, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {\n \"Heart\": - [\n \"hankuoffroad\"\n ], \n \"Thumbs up\": - [\n \"hankuoffroad\"\n ]\n }, \n \"user\": + \ }\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\": + 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\": - \"1701301595\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886483, \n \"notification\": true, \n \"parent\": + \"**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 \"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\\nThe new SIG 'Music & Audio' requires an official - Matrix room under Fedora space (:fedoraproject.org alias).\\r\\n\\r\\nAdmin/Moderator: - @nphilipp \\r\\n\\r\\nPlease check this thread.\\r\\n\\r\\nhttps://discussion.fedoraproject.org/t/95775/46\\r\\n\\r\\n# - When do you need this to be done by? (YYYY/MM/DD)\\r\\n2023/11/28\\r\\n\", - \n \"custom_fields\": [], \n \"date_created\": \"1700769527\", \n - \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11645\", - \n \"id\": 11645, \n \"last_updated\": \"1701301595\", \n \"milestone\": + \ }\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\": - \"Creation of Matrix room for new SIG \\\"Music & Audio\\\"\", \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/hankuoffroad\", \n \"fullname\": - \"hank L\", \n \"name\": \"hankuoffroad\", \n \"url_path\": - \"user/hankuoffroad\"\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\": 769, \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\": \"1701356789\", \n \"closed_by\": {\n - \ \"full_url\": \"https://pagure.io/user/svashisht\", \n \"fullname\": - \"Siteshwar Vashisht\", \n \"name\": \"svashisht\", \n \"url_path\": - \"user/svashisht\"\n }, \n \"comments\": [\n {\n \"comment\": - \"Possible fix: https://pagure.io/fedora-infra/ansible/pull-request/1665\\r\\n\\r\\nI - have not tested this change, so please test before merging.\", \n \"date_created\": - \"1700760313\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 885702, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \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 \"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\": \"1700766313\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 885716, \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\": - \"Hi @svashisht , merged your PR, and ran the playbook, seemed to go through - this time, can you check this is resolved now?\", \n \"date_created\": - \"1701087501\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 885993, \n \"notification\": false, \n \"parent\": + \"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\": \"I am able to - run playbooks on both staging and production.\", \n \"date_created\": - \"1701356790\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886565, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {\n \"Heart\": [\n \"dkirwan\"\n - \ ]\n }, \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 \"comment\": - \"**Metadata Update from @svashisht**:\\n- Issue close_status updated to: - Fixed\\n- Issue status updated to: Closed (was: Open)\", \n \"date_created\": - \"1701356791\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886566, \n \"notification\": true, \n \"parent\": - null, \n \"reactions\": {}, \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 \"content\": - \"# Describe what you would like us to do:\\r\\n----\\r\\n\\r\\nRunning below - command:\\r\\n\\r\\n```\\r\\nsudo rbac-playbook -l staging openshift-apps/openscanhub.yml\\r\\n```\\r\\n\\r\\nends - with this error:\\r\\n\\r\\n```\\r\\nThursday 23 November 2023 17:02:50 +0000 - (0:00:00.067) 0:00:11.746 ***** \\r\\nfatal: [os-control01.stg.iad2.fedoraproject.org]: - FAILED! => {\\\"changed\\\": true, \\\"cmd\\\": \\\"oc -n openscanhub apply - --validate=strict -f /etc/openshift_apps/openscanhub/alertmanager.yml\\\", - \\\"delta\\\": \\\"0:00:00.459606\\\", \\\"end\\\": \\\"2023-11-23 17:02:51.152992\\\", - \\\"msg\\\": \\\"non-zero return code\\\", \\\"rc\\\": 1, \\\"start\\\": \\\"2023-11-23 - 17:02:50.693386\\\", \\\"stderr\\\": \\\"Error from server (BadRequest): error - when creating \\\\\\\"/etc/openshift_apps/openscanhub/alertmanager.yml\\\\\\\": - AlertmanagerConfig in version \\\\\\\"v1beta1\\\\\\\" cannot be handled as - a AlertmanagerConfig: strict decoding error: unknown field \\\\\\\"spec.route.repeat_interval\\\\\\\"\\\", - \\\"stderr_lines\\\": [\\\"Error from server (BadRequest): error when creating - \\\\\\\"/etc/openshift_apps/openscanhub/alertmanager.yml\\\\\\\": AlertmanagerConfig - in version \\\\\\\"v1beta1\\\\\\\" cannot be handled as a AlertmanagerConfig: - strict decoding error: unknown field \\\\\\\"spec.route.repeat_interval\\\\\\\"\\\"], - \\\"stdout\\\": \\\"\\\", \\\"stdout_lines\\\": []}\\r\\n```\\r\\n\\r\\nwhich - means that the `repeat_interval` field does not exist in the `AlertmanagerConfig`.\\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\": \"1700759683\", \n - \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11644\", - \n \"id\": 11644, \n \"last_updated\": \"1701356791\", \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\": - \"Error in `alertmanager.yml` while running openscanhub playbook\", \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\": {\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\": 768, \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\": \"1701112277\", \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 helped - Bill here create his new @ctlinux account to replace @renegadext.\", \n \"date_created\": - \"1700756328\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 885695, \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 tagged with: low-gain, low-trouble, ops\", \n - \ \"date_created\": \"1700766205\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 885715, \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 checked the accounts and the @renegadext already has the same groups as - @ctlinux. Also both of them are currently enabled.\\r\\nAs none of the accounts - is in `packager` groups I don't assume you own any package.\\r\\n\\r\\nTo - disable the @ctlinux account, you need to create a request in https://pagure.io/fedora-pdr.\\r\\n\\r\\nLet - me know if there is anything else that needs to be solved.\", \n \"date_created\": - \"1701086541\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 885991, \n \"notification\": false, \n \"parent\": + 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\": 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\": \"It's the other - way around. @ctlinux needs to be in everything @renegadext was.\", \n \"date_created\": - \"1701086598\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 885992, \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\": \"I misunderstood - the request. In this case I added the @ctlinux to `fedora-hams`, which was - the only group that was missing on this account.\\r\\n\\r\\nDo you need anything - else? There is nothing else I can see in account system that is missing.\", - \n \"date_created\": \"1701093250\", \n \"edited_on\": \"1701093261\", - \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\": - 886017, \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\": \"VGhhdCBzaG91bGQgYmUgaXQsIHRoYW5rcyEKClNlbnQgZnJvbSBbUHJvdG9uIE1haWxdKGh0dHBz\\nOi8vcHJvdG9uLm1lL21haWwvaG9tZSkgZm9yIGlPUwoKT24gTW9uLCBOb3YgMjcsIDIwMjMgYXQg\\nODo1NCBBTSwgTWljaGFsIEtvbmXEjW7DvSA8W3BhZ3VyZUBwYWd1cmUuaW9dKG1haWx0bzpPbiBN\\nb24sIE5vdiAyNywgMjAyMyBhdCA4OjU0IEFNLCBNaWNoYWwgS29uZcSNbsO9IDw8YSBocmVmPSk+\\nIHdyb3RlOgoKPiB6bG9wZXogYWRkZWQgYSBuZXcgY29tbWVudCB0byBhbiBpc3N1ZSB5b3UgYXJl\\nIGZvbGxvd2luZzoKPiBgYAo+IEkgbWlzdW5kZXJzdG9vZCB0aGUgcmVxdWVzdC4gSW4gdGhpcyBj\\nYXNlIEkgYWRkZWQgdGhlIEBjdGxpbnV4IHRvIGBmZWRvcmEtaGFtc2AsIHdoaWNoIHdhcyB0aGUg\\nb25seSBncm91cCB0aGF0IHdhcyBtaXNzaW5nIG9uIHRoaXMgYWNjb3VudC4KPgo+IERvIHlvdSBu\\nZWVkIGFueXRoaW5nIGVsc2UuIFRoZXJlIGlzIG5vdGhpbmcgZWxzZSBJIGNhbiBzZWUgaW4gYWNj\\nb3VudCBzeXN0ZW0gdGhhdCBpcyBtaXNzaW5nLgo+IGBgCj4KPiBUbyByZXBseSwgdmlzaXQgdGhl\\nIGxpbmsgYmVsb3cgb3IganVzdCByZXBseSB0byB0aGlzIGVtYWlsCj4gaHR0cHM6Ly9wYWd1cmUu\\naW8vZmVkb3JhLWluZnJhc3RydWN0dXJlL2lzc3VlLzExNjQz\\n\", - \n \"date_created\": \"1701095365\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 886021, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/renegadext\", \n \"fullname\": - \"Bill Schouten\", \n \"name\": \"renegadext\", \n \"url_path\": - \"user/renegadext\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @zlopez**:\\n- Issue assigned to zlopez\", \n \"date_created\": - \"1701100772\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886030, \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 + \"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 @phsmoura**:\\n- Issue priority set to: Waiting on Assignee (was: Needs - Review)\", \n \"date_created\": \"1701112074\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 886067, \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 - Reporter (was: Waiting on Assignee)\", \n \"date_created\": \"1701112100\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 886068, \n \"notification\": true, \n \"parent\": null, - \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + 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\": + 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 close_status updated to: Fixed\\n- Issue status updated - to: Closed (was: Open)\", \n \"date_created\": \"1701112279\", \n - \ \"edited_on\": null, \n \"editor\": null, \n \"id\": - 886069, \n \"notification\": true, \n \"parent\": null, - \n \"reactions\": {}, \n \"user\": {\n \"full_url\": + \ }\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\": + 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\": \"Hello,\\r\\n\\r\\nPlease - assist me in transferring my account assets, permissions, and other information - from renegadext@fedoraproject.org to ctlinux@fedoraproject.org - thank you!\\r\\n\\r\\nBill - Schouten\", \n \"custom_fields\": [], \n \"date_created\": \"1700756216\", - \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11643\", - \n \"id\": 11643, \n \"last_updated\": \"1701112279\", \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\": - \"Account Transfer\", \n \"user\": {\n \"full_url\": \"https://pagure.io/user/renegadext\", - \n \"fullname\": \"Bill Schouten\", \n \"name\": \"renegadext\", - \n \"url_path\": \"user/renegadext\"\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\": \"@abompard Could you look at this? I'm - not sure how the messages could be lost.\", \n \"date_created\": - \"1700737903\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 885634, \n \"notification\": false, \n \"parent\": + \ }\n }, \n {\n \"comment\": \"+1\", \n \"date_created\": + \"1707312555\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 894691, \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 priority set to: Waiting on Assignee (was: Needs - Review)\\n- Issue tagged with: Needs investigation, medium-gain\", \n \"date_created\": - \"1700737904\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 885635, \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\": \"Hey! I can have - a look, but first I have a few questions to narrow down the issue.\\r\\n- - could you send me a link to the datagrepper results containing the messages - you're seeing?\\r\\n- could you send me the rabbitmq username that your JMS - messaging plugin is connecting to the bus with\\r\\n\\r\\nThanks!\", \n \"date_created\": - \"1700747317\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 885666, \n \"notification\": false, \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 \"comment\": - \"**Metadata Update from @abompard**:\\n- Issue assigned to abompard\", \n - \ \"date_created\": \"1700747325\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 885667, \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 \"comment\": - \"Sure! \\r\\n\\r\\nWe are listening to org.fedoraproject.prod.github.issue.comment - topic, so e.g. https://apps.fedoraproject.org/datagrepper/v2/search?rows_per_page=1&delta=100000&topic=org.fedoraproject.prod.github.issue.comment\\r\\n\\r\\nAs - for rabbitmq username, I didn't find anything, here is the complete configuration - of the plugin. Btw, plugin is https://plugins.jenkins.io/jms-messaging/\\r\\n\\r\\n - \ - fedMsg:\\r\\n hubAddr: \\\"tcp://hub.fedoraproject.org:9940\\\"\\r\\n - \ name: \\\"fedmsg\\\"\\r\\n pubAddr: \\\"tcp://172.19.4.24:9941\\\"\\r\\n - \ topic: \\\"org.fedoraproject.prod.github.issue.comment\\\"\\r\\n\", - \n \"date_created\": \"1700750337\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 885674, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/efedin\", \n \"fullname\": - \"Evgeny Fedin\", \n \"name\": \"efedin\", \n \"url_path\": - \"user/efedin\"\n }\n }, \n {\n \"comment\": - \"Oh, yeah that's not fedora-messaging, that's the old fedmsg (its predecessor). - It did not have any protection against lost messages, so that might be why - you're not getting them.\\r\\nTry switching to the \\\"rabbitmq\\\" mode, - with the following config:\\r\\n\\r\\n```\\r\\nhostname: \\\"rabbitmq.fedoraproject.org\\\"\\r\\nvirtualHost: - \\\"/public_pubsub\\\"\\r\\ntopic: \\\"org.fedoraproject.prod.github.issue.comment\\\"\\r\\n```\\r\\n\\r\\nFor - authentication you can use the public SSL cert/key available here: https://github.com/fedora-infra/fedora-messaging/tree/develop/configs\\r\\nI'm - not certain how authentication configuration is done in the JMS plugin, but - people more familiar with Java may know how to translate cert & key to a keystore - and & truststore.\\r\\n\\r\\nThis will give you read-only access to the bus.\", - \n \"date_created\": \"1700755556\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 885685, \n \"notification\": - false, \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 \"comment\": - \"Oh, I see, thank you! For the plugin setup, I also need a port number, exchange, - queue, and username for SSL certificate authentication. Could you help me - with that?\", \n \"date_created\": \"1700822933\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 885782, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/efedin\", \n \"fullname\": - \"Evgeny Fedin\", \n \"name\": \"efedin\", \n \"url_path\": - \"user/efedin\"\n }\n }, \n {\n \"comment\": - \"Port will be the default for AMQPs: `5671`.\\r\\nExchange shouldn't be necessary - if you don't send messages, but if the config requires it it's `amq.topic`.\\r\\nThe - username is `fedora`.\\r\\nThe queue can be left blank and that should mean - asking the server to give you an autogenerated one. If the JMS plugin/library - does not support this, you can choose a UUID4-like name, such as `00000000-0000-0000-0000-000000000000` - where all the zeros are hex chars (`[0-9a-f]`)\", \n \"date_created\": - \"1701085317\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 885989, \n \"notification\": false, \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\": \"Hello,\\r\\n\\r\\nWe've - been encountering a rather unusual issue with our Fedora messaging bus setup, - where messages are being skipped intermittently. This started last night and - has been quite erratic in its occurrence.\\r\\n\\r\\nIn our setup, we're using - github2fedmsg for posting messages to fedora messaging bus. These are then - picked up by Jenkins, which runs on the Red Hat intranet and uses a JMS messaging - plugin to listen for specific topics and dispatch jobs.\\r\\n\\r\\nThe core - of the issue is that, starting on Tuesday, a large portion of messages - I'd - estimate around 90% - began being skipped. This wasn't constant; it lasted - for about 5 hours, seemed to resolve itself, but then started again yesterday.\\r\\n\\r\\nWhat's - puzzling is that we can see all the messages are present in the bus via datagrepper. - Yet, on our end, everything seems in order - no strange logs, no updates to - either the plugin or Jenkins that could explain this.\\r\\n\\r\\nWe would - really appreciate it if you could take a look at the fedora messaging side - of things to see if everything is functioning as it should. Your insight into - this would be incredibly helpful.\\r\\n\\r\\nThanks a lot for your help!\", - \n \"custom_fields\": [], \n \"date_created\": \"1700729980\", \n - \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11642\", - \n \"id\": 11642, \n \"last_updated\": \"1701085317\", \n \"milestone\": - null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Open\", \n \"tags\": [\n \"Needs investigation\", - \n \"medium-gain\"\n ], \n \"title\": \"Intermittent Skipping - of Messages in Fedora Messaging Bus Setup\", \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/efedin\", \n \"fullname\": \"Evgeny Fedin\", - \n \"name\": \"efedin\", \n \"url_path\": \"user/efedin\"\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/dev\", - \n \"name\": \"dev\", \n \"status\": [\n {\n + 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 + \ \"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\": + 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 @@ -2809,391 +2733,90 @@ interactions: \ \"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\": 29, \n \"status\": + \ \"tag\": {\n \"tag\": \"ops\", \n \"tag_color\": + \"#3efa0e\", \n \"tag_description\": \"ops problem now...\"\n + \ }\n }, \n \"rank\": 830, \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- + [\n {\n \"comment\": \"**Metadata Update from @phsmoura**:\\n- Issue priority set to: Waiting on Assignee (was: Needs Review)\\n- Issue tagged - with: dev, medium-gain, medium-trouble\", \n \"date_created\": \"1700737678\", + with: medium-gain, medium-trouble, ops\", \n \"date_created\": \"1707246436\", \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 885632, \n \"notification\": true, \n \"parent\": null, + 894576, \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\": \"Probably a good - ticket to bring up on I&R standup.\", \n \"date_created\": \"1700737708\", + \"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\": - 885633, \n \"notification\": false, \n \"parent\": null, + 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\": \"OK, so let me - make a summary of this, after a week of work or so. The solution is composed - of 3 elements:\\r\\n1. A git hook running on the server that will send messages - on push. This hook already exists.\\r\\n2. A schema for the messages sent - by the git hook. This is what will be used to generate the `Subject` and the - body of the email. This work used to be done by `fedmsg_meta_fedora_infrastructure/scm.py` - on fedmsg.\\r\\n3. A fedora-messaging consumer that will receive the messages, - use the schema to generate the email components, and send the email. One process - to rule them all, and in the darkness of the datacenter, bind them.\\r\\n\\r\\nPart - 3 could be done by anyone new to fedora-messaging and Toddlers, it's simple - enough I think. I'm happy to give some mentoring on the fedora-messaging part - (I haven't ever written a Toddler yet so I don't know about that part).\\r\\n\\r\\nPart - 1 is... trickier. The git hook is actually installed by Ansible, and has [two](https://pagure.io/fedora-infra/ansible/blob/main/f/roles/git/hooks/files/post-receive-fedora-messaging) - [versions](https://pagure.io/fedora-infra/ansible/blob/main/f/roles/batcave/files/fedmsg-announce-commits.py), - slightly different from each other, one adapted to Python 3 but not the other, - one supporting namespaces but not the other. It's a bit of a mess. And hard - to evolve into something that would use schemas as required by Part 2. Let's - try to minimize the amount of raw code that we deploy with Ansible, please.\\r\\n\\r\\nI've - taken those git hooks and tried to merge them into [a proper repo](https://github.com/fedora-infra/fedora-messaging-git-hook), - retaining the features and the Python 3.6 compatibility (wasn't easy, but - Pagure is currently running on Python 3.6), and adding some unit tests and - QA tools at the same time.\\r\\n\\r\\nI've also written the schemas required - by Part 2 in [another repo](https://github.com/fedora-infra/fedora-messaging-git-hook-messages).\\r\\n\\r\\nI - don't think we want to deploy code directly from Github on pkgs01 and batcave, - so I had those two be packaged into RPMs by Packit into a Copr repo: https://copr.fedorainfracloud.org/coprs/abompard/fedora-messaging-git-hook/.\\r\\n\\r\\nI'm - going to rebuild the SRPMs from this repo into Koji's infra tag each time - there's an update in the code even if it's an extra step because this is pretty - sensitive code, running on batcave and dist-git on each commit and having - full access to the repos. Or do you think it's not necessary?\\r\\n\\r\\nI'll - try on staging today and hopefully it'll work out fine enough. We can work - on the consumer (Part 3) in parallel.\", \n \"date_created\": \"1701413159\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 886618, \n \"notification\": false, \n \"parent\": null, + \ }\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/abompard\", \n \"fullname\": \"Aur\\u00e9lien - Bompard\", \n \"name\": \"abompard\", \n \"url_path\": - \"user/abompard\"\n }\n }, \n {\n \"comment\": - \"This all seems kinda complex when it could just send email from the hook, - but makes sense. :(\\r\\n\\r\\none thing I am a bit worried at with this and - toddlers is that it will get a heavy processing flow... if we have a bunch - of things in toddlers we need to make sure a problem with one toddler doesn't - cause all of them to stop processing... or slow down.\\r\\n\", \n \"date_created\": - \"1701649049\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886905, \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 all seems - kinda complex when it could just send email from the hook, but makes sense. - :(\\r\\n\\r\\nAgreed, if the hook has no other use than sending an email to - scm-list, then it's very overkill. But I think we want a fedora-messaging - message to be sent when a commit is received nonetheless, so that people can - get those from FMN, have it be recorded in datanommer, etc.\\r\\n\\r\\n> one - thing I am a bit worried at with this and toddlers is that it will get a heavy - processing flow... if we have a bunch of things in toddlers we need to make - sure a problem with one toddler doesn't cause all of them to stop processing... - or slow down.\\r\\n\\r\\nGood point, I haven't looked at Toddler's code, but - I would bet that processing of a message starts when the processing of the - previous message has finished. So one slow toddler will slow down the whole - processing. We should however be able to run multiple toddlers pods in parallel, - and they would not be waiting on each other.\\r\\n\\r\\nOne more thing: Pagure - sends a message on each push, so for dist-git we actually have two messages - from the same action. Not a big deal, but maybe a bit superfluous.\\r\\nWe - still need this git hook for the batcave repos (such as ansible), though.\\r\\n\\r\\n\", - \n \"date_created\": \"1701676461\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 886914, \n \"notification\": - false, \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 \"comment\": - \"toddlers is actually very good at scaling horizontally. I've had times where - it\\r\\nwas stuck due to messages not being in the expected format and the - toddler was\\r\\nthus crashing. I just bumped the number of pods to 50 and - let it seat over the\\r\\nweek-end and waited for the next week to make the - code change that allowed the\\r\\ntoddler to handle these messages.\\r\\n\\r\\nSo - if you're worried about processing being slow, just increase the number of\\r\\npods.\\r\\n\", - \n \"date_created\": \"1701678544\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 886918, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {\n \"Thumbs - up\": [\n \"abompard\"\n ]\n }, \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\": - \"> > one thing I am a bit worried at with this and toddlers is that it will - get a heavy processing flow... if we have a bunch of things in toddlers we - need to make sure a problem with one toddler doesn't cause all of them to - stop processing... or slow down.\\n> \\n> Good point, I haven't looked at - Toddler's code, but I would bet that processing of a message starts when the - processing of the previous message has finished. So one slow toddler will - slow down the whole processing. We should however be able to run multiple - toddlers pods in parallel, and they would not be waiting on each other.\\n\\ntoddlers - is actually very good at scaling horizontally. I've had times where it\\nwas - stuck due to messages not being in the expected format and the toddler was\\nthus - crashing. I just bumped the number of pods to 50 and let it seat over the\\nweek-end - and waited for the next week to make the code change that allowed the\\ntoddler - to handle these messages.\\n\\nSo if you're worried about processing being - slow, just increase the number of\\npods.\\n\", \n \"date_created\": - \"1701708254\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886990, \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 \"content\": \"The old fmn was used - to watch all commits on src.fedoraproject.org and send them to the scm-commits@lists.fedoraproject.org - list.\\r\\nSince I took down the old FMN, there's no more emails there. ;(\\r\\n\\r\\nThis - list was super high volume, but it was a way to have commits for all packages - transparently go out and allow auditing from 3rd parties, etc. It would be - super nice if we could make this work again.\\r\\n\\r\\nI think it would be - a nice exercise for someone who wants to learn writing a fedora-messaging - consumer. Maybe a toddler would be better btw.\", \n \"custom_fields\": - [], \n \"date_created\": \"1700729897\", \n \"depends\": [], \n - \ \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11641\", - \n \"id\": 11641, \n \"last_updated\": \"1701708254\", \n \"milestone\": - null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Open\", \n \"tags\": [\n \"dev\", \n - \ \"medium-gain\", \n \"medium-trouble\"\n ], \n \"title\": - \"Commits don't end up on the scm-commits list\", \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 \"close_status\": \"Fixed\", \n \"closed_at\": \"1700738491\", - \n \"closed_by\": {\n \"full_url\": \"https://pagure.io/user/praiskup\", - \n \"fullname\": \"Pavel Raiskup\", \n \"name\": \"praiskup\", - \n \"url_path\": \"user/praiskup\"\n }, \n \"comments\": - [\n {\n \"comment\": \"Fedora Copr can not start machines - in RDU lab because of this, which means that the build throughput is very - bad.\", \n \"date_created\": \"1700677890\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 885470, \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\": - \"Workaround:\\r\\n1. cron job every 2 minutes: `for i in vmhost-x86-copr01.rdu-cc.fedoraproject.org - vmhost-x86-copr02.rdu-cc.fedoraproject.org vmhost-x86-copr03.rdu-cc.fedoraproject.org - vmhost-x86-copr04.rdu-cc.fedoraproject.org vmhost-p08-copr01.rdu-cc.fedoraproject.org - vmhost-p08-copr02.rdu-cc.fedoraproject.org vmhost-p09-copr01.rdu-cc.fedoraproject.org; - do ssh -6 copr@$i true 2>/dev/null; done`\\r\\n2. ssh config that keeps controlling - chanel open\\r\\n\\r\\nThis way, even though -4 is requested, ssh doesn't - open new controlling channel ...\", \n \"date_created\": \"1700678257\", + \ }\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\": - 885471, \n \"notification\": false, \n \"parent\": null, + 895282, \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\": \"Can you ssh - from your AWS systems to people01.fedoraproject.org or pagure02.fedoraproject.org? - Those are both in the same colocation. If you can't, I would then look at - trying to connect to ports 443 and 80 on those systems. \\r\\n\\r\\nMy first - guess is that there may be an outbound firewall rule for your 'zone' which - has come into play. I do not know of any filtering beyond that which would - be AWS specific (though it would help to know what IP address your systmes - are coming out from to help debug this)\", \n \"date_created\": \"1700679725\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 885475, \n \"notification\": false, \n \"parent\": null, - \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/smooge\", \n \"fullname\": \"Stephen J - Smoogen\", \n \"name\": \"smooge\", \n \"url_path\": - \"user/smooge\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @phsmoura**:\\n- Issue priority set to: Waiting on - Assignee (was: Needs Review)\\n- Issue tagged with: aws, low-gain, low-trouble, - ops\", \n \"date_created\": \"1700680190\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 885478, \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\": - \"No, people01 with a slightly different failure:\\r\\n```\\r\\ndebug2: fd - 3 setting O_NONBLOCK\\r\\ndebug1: connect to address 152.19.134.196 port 22: - No route to host\\r\\nssh: connect to host people01.fedoraproject.org port - 22: No route to host\\r\\n```\\r\\n\\r\\npeople02 works.\\r\\n\\r\\nI now - better tested ICMP, and it has the same problems.\\r\\n\\r\\n- ping -6 to - hypervisors works\\r\\n- ping -4 to hypervisors doesn't work\\r\\n- ping -6 - and -4 to people02 works\\r\\n- neither ping -4 nor ping -6 works to people01\\r\\nAnd - I noticed now that this actually isn't only about ICMP\", \n \"date_created\": - \"1700680478\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 885479, \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\": \"**Metadata Update - from @praiskup**:\\n- Issue **un**tagged with: aws, low-gain, low-trouble, - ops\\n- Issue priority set to: Needs Review (was: Waiting on Assignee)\", - \n \"date_created\": \"1700680490\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 885480, \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 \"comment\": - \"oops I forgot that it was people02 AND it is not in the same datacentre. - people01 was removed a long time ago but its DNS entry is still there\\r\\n\\r\\n```\\r\\n$ - host people02.fedoraproject.org\\r\\npeople02.fedoraproject.org has address - 152.19.134.199\\r\\npeople02.fedoraproject.org has IPv6 address 2600:2701:4000:5211:dead:beef:a7:9474\\r\\n$ - host pagure02.fedoraproject.org\\r\\npagure02.fedoraproject.org has address - 8.43.85.76\\r\\npagure02.fedoraproject.org has IPv6 address 2620:52:3:1:dead:beef:cafe:fed8\\r\\n$ - host download-cc-rdu01.fedoraproject.org\\r\\ndownload-cc-rdu01.fedoraproject.org - has address 8.43.85.72\\r\\ndownload-cc-rdu01.fedoraproject.org has IPv6 address - 2620:52:3:1:dead:beef:cafe:fed1\\r\\n```\\r\\n\\r\\nThe two hosts in the community - cage which should be able to be gotten to on ports 443 and 22 should be download-cc-rdu01 - and pagure02.fedoraproject.org. If you are able to do this, then it is something - with the specific COPR systems. If you can't do this but can do so on pagure02, - then it may be due to some sort of firewall change which happened during the - switch upgrades last week. \\r\\n\\r\\nCan you try the following from the - AWS hosts to see what ip address they are presenting?\\r\\n```\\r\\ncurl -4 - https://ipv4.icanhazip.com\\r\\n```\\r\\n\\r\\nThat way if that network has - been blocked for a reason, Red Hat IT can figure it out?\\r\\n\\r\\nIf you - can get to the SSH on 152.19.134.199 but not to the SSH on 8.43.85.76 then - I am going to say that it is probably a firewall issue on the community cage - part. If you can get to the \", \n \"date_created\": \"1700681983\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 885481, \n \"notification\": false, \n \"parent\": null, - \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/smooge\", \n \"fullname\": \"Stephen J - Smoogen\", \n \"name\": \"smooge\", \n \"url_path\": - \"user/smooge\"\n }\n }, \n {\n \"comment\": - \"**Metadata Update from @smooge**:\\n- Issue priority set to: Waiting on - Assignee (was: Needs Review)\\n- Issue tagged with: aws, medium-gain, medium-trouble, - ops, rdu-cc\", \n \"date_created\": \"1700682209\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 885482, \n \"notification\": - true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/smooge\", \n \"fullname\": - \"Stephen J Smoogen\", \n \"name\": \"smooge\", \n \"url_path\": - \"user/smooge\"\n }\n }, \n {\n \"comment\": - \"> If you can get to the SSH on 152.19.134.199 but not to the SSH on 8.43.85.76 - then I am going to say that it is probably a firewall issue on the community - cage part.\\r\\n\\r\\nThis is exactly what is happening now.\", \n \"date_created\": - \"1700682385\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 885483, \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\": \"**Metadata Update - from @praiskup**:\\n- Issue **un**tagged with: aws, medium-gain, medium-trouble, - ops, rdu-cc\\n- Issue priority set to: Needs Review (was: Waiting on Assignee)\", - \n \"date_created\": \"1700682397\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 885484, \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 \"comment\": - \"```\\r\\n[resalloc@copr-be-dev ~][STG]$ curl -4 https://ipv4.icanhazip.com\\r\\n18.208.10.131\\r\\n```\\r\\n\\r\\n```\\r\\n[root@copr-be - ~][PROD]# curl -4 https://ipv4.icanhazip.com\\r\\n52.44.175.77\\r\\n```\", - \n \"date_created\": \"1700682473\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 885486, \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\": - \"Update from IRC channel earlier today:\\r\\n```\\r\\n12:51:47 nirik | - seems to be ipv4 down, but ipv6 up? \\r\\n```\\r\\n\\r\\nIt looks like some - sort of network problem with the entire cage. \", \n \"date_created\": - \"1700684454\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 885488, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {\n \"Thumbs up\": [\n \"praiskup\"\n - \ ]\n }, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/smooge\", \n \"fullname\": \"Stephen J - Smoogen\", \n \"name\": \"smooge\", \n \"url_path\": - \"user/smooge\"\n }\n }, \n {\n \"comment\": - \"Yes. It's affecting the entire site. ;( \\r\\n\\r\\nI filed an internal - ticket... hopefully they can fix it. \\r\\n\", \n \"date_created\": - \"1700699219\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 885570, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {\n \"Thumbs up\": [\n \"praiskup\"\n - \ ]\n }, \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\": \"From the IT - ticket, it appears there's a certain fiber cut affecting ISP in North Carolina. - \ They are trying to fix it right now. I updated https://status.fedoraproject.org/\", - \n \"date_created\": \"1700724296\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 885590, \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\": - \"> From the IT ticket, it appears there's a certain fiber cut affecting ISP - in North Carolina. They are trying to fix it right now. I updated https://status.fedoraproject.org/\\r\\n\\r\\n~~~\\r\\nOutage - Started\\r\\nNov 23 2023, 20:00 UTC \\r\\n~~~\\r\\n\\r\\nWas it rather 22nd?\", - \n \"date_created\": \"1700738090\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 885636, \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\": - \"Yes, sorry, I did not pay attention to details... I fixed the metadata - (according to the info from IT) and closed the event, the issue should be - resolved by now (at least Copr seems to work fine now).\", \n \"date_created\": - \"1700738493\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 885638, \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\": \"**Metadata Update - from @praiskup**:\\n- Issue close_status updated to: Fixed\\n- Issue status - updated to: Closed (was: Open)\", \n \"date_created\": \"1700738495\", + \ }\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\": - 885639, \n \"notification\": true, \n \"parent\": null, + 895416, \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\": \"Seems like this - happens again: https://pagure.io/fedora-infrastructure/issue/11661\", \n \"date_created\": - \"1701758081\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887065, \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 \"content\": \"I'm unable to `ssh - -vvv -4 copr@vmhost-x86-copr01.rdu-cc.fedoraproject.org` from\\r\\nany of - our machines hosted in `us-east-1` location.\\r\\n\\r\\nTested from these - instances (subnet subnet-0995f6a466849f4c3):\\r\\n\\r\\n i-0ba958e718cb91fa3\\r\\n - \ i-062172568528899ab\\r\\n i-0007e54a85c0e56b1\\r\\n\\r\\nLog output:\\r\\n\\r\\n - \ [resalloc@copr-be ~][PROD]$ ssh -vvv -4 copr@vmhost-x86-copr01.rdu-cc.fedoraproject.org\\r\\n - \ OpenSSH_8.8p1, OpenSSL 3.0.9 30 May 2023\\r\\n debug1: Reading configuration - data /var/lib/resallocserver/.ssh/config\\r\\n debug1: /var/lib/resallocserver/.ssh/config - line 1: Applying options for *\\r\\n debug1: /var/lib/resallocserver/.ssh/config - line 9: Applying options for vmhost-x86-copr01.rdu-cc.fedoraproject.org\\r\\n - \ debug1: Reading configuration data /etc/ssh/ssh_config\\r\\n debug3: - /etc/ssh/ssh_config line 55: Including file /etc/ssh/ssh_config.d/50-redhat.conf - depth 0\\r\\n debug1: Reading configuration data /etc/ssh/ssh_config.d/50-redhat.conf\\r\\n - \ debug2: checking match for 'final all' host vmhost-x86-copr01.rdu-cc.fedoraproject.org - originally vmhost-x86-copr01.rdu-cc.fedoraproject.org\\r\\n debug3: /etc/ssh/ssh_config.d/50-redhat.conf - line 3: not matched 'final'\\r\\n debug2: match not found\\r\\n debug3: - /etc/ssh/ssh_config.d/50-redhat.conf line 5: Including file /etc/crypto-policies/back-ends/openssh.config - depth 1 (parse only)\\r\\n debug1: Reading configuration data /etc/crypto-policies/back-ends/openssh.config\\r\\n - \ debug3: gss kex names ok: [gss-curve25519-sha256-,gss-nistp256-sha256-,gss-group14-sha256-,gss-group16-sha512-]\\r\\n - \ debug3: kex names ok: [curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha256,diffie-hellman-group16-sha512,diffie-hellman-group18-sha512]\\r\\n - \ debug1: configuration requests final Match pass\\r\\n debug1: re-parsing - configuration\\r\\n debug1: Reading configuration data /var/lib/resallocserver/.ssh/config\\r\\n - \ debug1: /var/lib/resallocserver/.ssh/config line 1: Applying options for - *\\r\\n debug2: add_identity_file: ignoring duplicate key ~/.ssh/id_rsa\\r\\n - \ debug1: /var/lib/resallocserver/.ssh/config line 9: Applying options for - vmhost-x86-copr01.rdu-cc.fedoraproject.org\\r\\n debug1: Reading configuration - data /etc/ssh/ssh_config\\r\\n debug3: /etc/ssh/ssh_config line 55: Including - file /etc/ssh/ssh_config.d/50-redhat.conf depth 0\\r\\n debug1: Reading - configuration data /etc/ssh/ssh_config.d/50-redhat.conf\\r\\n debug2: checking - match for 'final all' host vmhost-x86-copr01.rdu-cc.fedoraproject.org originally - vmhost-x86-copr01.rdu-cc.fedoraproject.org\\r\\n debug3: /etc/ssh/ssh_config.d/50-redhat.conf - line 3: matched 'final'\\r\\n debug2: match found\\r\\n debug3: /etc/ssh/ssh_config.d/50-redhat.conf - line 5: Including file /etc/crypto-policies/back-ends/openssh.config depth - 1\\r\\n debug1: Reading configuration data /etc/crypto-policies/back-ends/openssh.config\\r\\n - \ debug3: gss kex names ok: [gss-curve25519-sha256-,gss-nistp256-sha256-,gss-group14-sha256-,gss-group16-sha512-]\\r\\n - \ debug3: kex names ok: [curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha256,diffie-hellman-group16-sha512,diffie-hellman-group18-sha512]\\r\\n - \ debug2: resolving \\\"vmhost-x86-copr01.rdu-cc.fedoraproject.org\\\" port - 22\\r\\n debug3: resolve_host: lookup vmhost-x86-copr01.rdu-cc.fedoraproject.org:22\\r\\n - \ debug3: ssh_connect_direct: entering\\r\\n debug1: Connecting to vmhost-x86-copr01.rdu-cc.fedoraproject.org - [8.43.85.57] port 22.\\r\\n debug3: set_sock_tos: set socket 3 IP_TOS 0x48\\r\\n - \ debug2: fd 3 setting O_NONBLOCK\\r\\n debug1: connect to address 8.43.85.57 - port 22: Connection timed out\\r\\n ssh: connect to host vmhost-x86-copr01.rdu-cc.fedoraproject.org - port 22: Connection timed out\\r\\n\\r\\nFrom my personal laptop (Brno, custom - net provider) it seems to work fine.\\r\\n\\r\\nIt works fine when I **connect - using ipv6**, `ssh -vvv -6 ...`, it just works.\\r\\n\\r\\nI can reproduce - this with all our rdu-cc machines, isn't RDU lab filtering\\r\\nsomething - on ipv4?\\r\\n\", \n \"custom_fields\": [], \n \"date_created\": - \"1700677798\", \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11640\", - \n \"id\": 11640, \n \"last_updated\": \"1701758081\", \n \"milestone\": - null, \n \"priority\": 1, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Closed\", \n \"tags\": [], \n \"title\": - \"Can not connect to rdu-cc lab over ipv4 from some locations\", \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 \"assignee\": null, \n \"blocks\": - [], \n \"boards\": [\n {\n \"board\": {\n \"active\": - true, \n \"full_url\": \"https://pagure.io/fedora-infrastructure/boards/ops\", + \"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\": + \"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, @@ -3215,144 +2838,398 @@ 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\": 767, \n \"status\": + \ }\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\": - \"Fixed\", \n \"closed_at\": \"1701250429\", \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\": - \"@tpopela I have no idea about admin interface that can manage email aliases. - \\r\\nBut i would say, it should be managed by fasjson role .\\r\\n\\r\\nLet - me push PR for that \\r\\n\\r\\n\", \n \"date_created\": \"1700673199\", + 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 \"edited_on\": null, \n \"editor\": null, \n \"id\": - 885463, \n \"notification\": false, \n \"parent\": null, + 894443, \n \"notification\": true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/seddik\", \n \"fullname\": \"seddik alaouiismaili\", - \n \"name\": \"seddik\", \n \"url_path\": \"user/seddik\"\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\": - \"1700679986\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 885477, \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\": \"PR : https://pagure.io/fedora-infra/ansible/pull-request/1659\", - \n \"date_created\": \"1700754215\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 885684, \n \"notification\": + \ }\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\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/seddik\", \n \"fullname\": - \"seddik alaouiismaili\", \n \"name\": \"seddik\", \n \"url_path\": - \"user/seddik\"\n }\n }, \n {\n \"comment\": - \"Thanks for the PR! Merged and rolled out.\", \n \"date_created\": - \"1701125488\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886119, \n \"notification\": false, \n \"parent\": + {\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\": + 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 + \ \"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 with Explanation\\n- - Issue status updated to: Closed (was: Open)\", \n \"date_created\": - \"1701125489\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886120, \n \"notification\": true, \n \"parent\": + 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, + \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 \"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\": 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 the new alias - that was just set up for @fedoraproject.org?\\r\\n\\r\\nI tried sending email - to gnome-sig-untriaged@fedoraproject.org (and gnome-sig-untriaged@lists.fedoraproject.org - as well, just in case), but both are bouncing for me.\\r\\n\\r\\n```\\r\\n550 - 5.1.1 : Recipient address rejected: - User unknown in local recipient table\\r\\n```\\r\\n\\r\\n```\\r\\nThis is - the mail system at host smtp-mm-osuosl01.fedoraproject.org.\\r\\n\\r\\nI'm - sorry to have to inform you that your message could not\\r\\nbe delivered - to one or more recipients. It's attached below.\\r\\n\\r\\nFor further assistance, - please send mail to postmaster.\\r\\n\\r\\nIf you do so, please include this - problem report. You can\\r\\ndelete your own text from the attached returned - message.\\r\\n\\r\\n The mail system\\r\\n\\r\\n: - host\\r\\n mailman01.vpn.fedoraproject.org[192.168.1.118] said: 550 5.1.1\\r\\n - \ : Recipient address rejected:\\r\\n - \ User unknown in local recipient table (in reply to RCPT TO command)\\r\\n```\", - \n \"date_created\": \"1701162820\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 886185, \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 }\n }, \n {\n \"comment\": - \"**Metadata Update from @tpopela**:\\n- Issue status updated to: Open (was: - Closed)\", \n \"date_created\": \"1701162863\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 886186, \n \"notification\": - true, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/tpopela\", \n \"fullname\": - \"Tomas Popela\", \n \"name\": \"tpopela\", \n \"url_path\": - \"user/tpopela\"\n }\n }, \n {\n \"comment\": - \"I think it's rejected because gnome-sig-untriaged is not subscribed to the - list members \\r\\n@kevin any advice ? \", \n \"date_created\": - \"1701168798\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886218, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/seddik\", \n \"fullname\": \"seddik alaouiismaili\", - \n \"name\": \"seddik\", \n \"url_path\": \"user/seddik\"\n - \ }\n }, \n {\n \"comment\": \"@kalev could - you try to add gnome-sig-untriaged to the list members ?? \", \n \"date_created\": - \"1701178919\", \n \"edited_on\": \"1701178963\", \n \"editor\": - {\n \"full_url\": \"https://pagure.io/user/seddik\", \n \"fullname\": - \"seddik alaouiismaili\", \n \"name\": \"seddik\", \n \"url_path\": - \"user/seddik\"\n }, \n \"id\": 886241, \n \"notification\": + \ }\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 \"edited_on\": null, \n \"editor\": null, \n \"id\": + 894274, \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\": \"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\": + 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\": false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/seddik\", \n \"fullname\": - \"seddik alaouiismaili\", \n \"name\": \"seddik\", \n \"url_path\": - \"user/seddik\"\n }\n }, \n {\n \"comment\": - \"No I don't think that's it, because it says 'User unknown in local recipient - table'; it doesn't say that the sender's address is rejected.\\r\\n\\r\\nMy - guess is that we just need to wait for https://pagure.io/fedora-infra/ansible/blob/main/f/roles/fasjson/files/fasjson-aliases.cron - cron job to run newaliases.\", \n \"date_created\": \"1701188967\", + {\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\": - 886285, \n \"notification\": false, \n \"parent\": null, + 894267, \n \"notification\": true, \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 - \ }\n }, \n {\n \"comment\": \"This has run - now, can you (re) test?\\r\\n\", \n \"date_created\": \"1701198809\", + \"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\": - 886327, \n \"notification\": false, \n \"parent\": null, + 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\": \"Works as expected - now. Thanks!\", \n \"date_created\": \"1701209690\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 886345, \n \"notification\": + \ }\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\": + \"1707419602\", \n \"edited_on\": null, \n \"editor\": null, + \n \"id\": 894953, \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 + \ {\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\": + 827, \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\": 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 }\n }, \n {\n \"comment\": + {\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\": - \"1701250432\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886368, \n \"notification\": true, \n \"parent\": + \"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 \"content\": \"Together with @kalev - we're trying to create a new email alias for gnome-sig@lists.fedoraproject.org. - Kalev went to the admin interface and added a new alias gnome-sig-untriaged@lists.fedoraproject.org - through \\\"Acceptable aliases\\\" option. It's been few hours and the emails - are still bouncing back. Do we have to wait more or we've used wrong option - in the admin interface to setup the alias or there's something else going - on?\", \n \"custom_fields\": [], \n \"date_created\": \"1700665599\", - \n \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11639\", - \n \"id\": 11639, \n \"last_updated\": \"1701250432\", \n \"milestone\": + \ }\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 {\n \"id\": 1659, \n \"title\": \"new email alias - for grome-sig\"\n }\n ], \n \"status\": \"Closed\", \n \"tags\": - [\n \"low-gain\", \n \"low-trouble\", \n \"ops\"\n ], - \n \"title\": \"Newly created email alias for gnome-sig@lists.fedoraproject.org - is bouncing back\", \n \"user\": {\n \"full_url\": \"https://pagure.io/user/tpopela\", - \n \"fullname\": \"Tomas Popela\", \n \"name\": \"tpopela\", - \n \"url_path\": \"user/tpopela\"\n }\n }, \n {\n \"assignee\": - null, \n \"blocks\": [], \n \"boards\": [\n {\n \"board\": + [], \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, @@ -3375,250 +3252,69 @@ 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\": 767, \n \"status\": + \ }\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\": - null, \n \"closed_at\": null, \n \"closed_by\": null, \n \"comments\": - [\n {\n \"comment\": \"This looks to be a duplicate of #11631 - \", \n \"date_created\": \"1700658909\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 885407, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/smooge\", \n \"fullname\": - \"Stephen J Smoogen\", \n \"name\": \"smooge\", \n \"url_path\": - \"user/smooge\"\n }\n }, \n {\n \"comment\": - \"Yep, except that fedora koji doesn't consume the repodata produced by pungi.\\r\\nSo - if pungi \\\"workarounds\\\" the issue in #11631, the problem will rise again - when builders will be updated to createrepo_c 1.0.x from fedora-39+\\r\\n\\r\\nBest - solution, that I suggested upstream.\\r\\nhttps://github.com/rpm-software-management/createrepo_c/issues/403#issuecomment-1822622405\\r\\nWould - imply a --compatibility mode...\\r\\n\\r\\n\", \n \"date_created\": - \"1700660061\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 885409, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/kwizart\", \n \"fullname\": \"Nicolas - Chauvet\", \n \"name\": \"kwizart\", \n \"url_path\": - \"user/kwizart\"\n }\n }, \n {\n \"comment\": - \"So to me is a different issue as it deals with others components and could - have other solutions.\\r\\nBut the cause is similar (createrepo_c changed - defaults).\", \n \"date_created\": \"1700660160\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 885415, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/kwizart\", \n \"fullname\": - \"Nicolas Chauvet\", \n \"name\": \"kwizart\", \n \"url_path\": - \"user/kwizart\"\n }\n }, \n {\n \"comment\": - \"OK thanks for pointing out the differences. \", \n \"date_created\": - \"1700666683\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 885453, \n \"notification\": false, \n \"parent\": - null, \n \"reactions\": {}, \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/smooge\", \n \"fullname\": \"Stephen J - Smoogen\", \n \"name\": \"smooge\", \n \"url_path\": - \"user/smooge\"\n }\n }, \n {\n \"comment\": + \"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: medium-gain, medium-trouble, - ops\", \n \"date_created\": \"1700679894\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 885476, \n \"notification\": + 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\": 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'm switching rawhide back to gzip for now... of course yes, this will be - an issue when/if we upgrade builders to f39 in prod for epel7 builds... \", - \n \"date_created\": \"1700699154\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 885568, \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 **un**tagged with: medium-gain, - medium-trouble, ops\\n- Issue priority set to: Needs Review (was: Waiting - on Assignee)\", \n \"date_created\": \"1700699165\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 885569, \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\": - \"I've tried to move rawhide back to gz for now... if a compose ever finishes - with that we can at least kick this issue down the road some.\\r\\n\", \n - \ \"date_created\": \"1700699265\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 885571, \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: medium-gain, medium-trouble, ops\", - \n \"date_created\": \"1700699276\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 885572, \n \"notification\": + \"**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\": 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\": - \"So, rawhide is back on gz for now... I asked what we should do in #11631 - \\r\\n\\r\\nWe still need to sort this related problem before upgrading any - prod builders to 39. Hopefully the --compatibility thing will become supported - by koji/createrepo_c soon.\", \n \"date_created\": \"1701126124\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 886122, \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\": \"# Describe what you - would like us to do:\\r\\n----\\r\\n\\r\\nI need advices about how to fix - this since the switch to zck compression, our koji builder cannot parse the - fedora rawhide metadata. This would requires createrepo_c 1.0.x that support - zck, but using this version has new problems:\\r\\n- Is produce zck compressed - metadata that cannot be read by older yum (that can be tuned by patching kojid - builder to specity the compressed output).\\r\\n- It consumes lot more memory - (many OOM on our 5G koji builders whereas 4G is usually enough for regen-repo - task)\\r\\n- It produces a repomd.xml with only a compressed comps that cannot - be read by EL7 yum. (see https://github.com/rpm-software-management/createrepo_c/issues/403 - )\\r\\n\\r\\n```Using our version of createrepo_c in our fedora builders shows:\\r\\nC_CREATEREPOLIB: - Critical: cr_metadata_load_xml: Error encountered while parsing\\r\\nC_CREATEREPOLIB: - Critical: Cannot load repo: \\\"http://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/aarch64/os/\\\"\\r\\nC_CREATEREPOLIB: - Critical: cr_metadata_load_xml: Error encountered while parsing\\r\\nCritical: - Cannot load repo: \\\"http://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/aarch64/os/\\\" - : Error encountered while parsing:primary.xml parsing: Cannot open /tmp/createrepo_c_tmp_repo_NbYHix/repodata/7cd966d76cea90afb8aef04eafa414f098c37128f99c7da74cc57114643915d0-primary.xml.zst: - Cannot detect compression type```\\r\\n\\r\\n\\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\": \"1700646427\", \n \"depends\": [], \n - \ \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11637\", - \n \"id\": 11637, \n \"last_updated\": \"1701126124\", \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\": - \"3rd part koji builders cannot parse fedora-rawhide repodata compression - type\", \n \"user\": {\n \"full_url\": \"https://pagure.io/user/kwizart\", - \n \"fullname\": \"Nicolas Chauvet\", \n \"name\": \"kwizart\", - \n \"url_path\": \"user/kwizart\"\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\": - \"1701723886\", \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\", \n \"date_created\": \"1700557356\", - \n \"edited_on\": null, \n \"editor\": null, \n \"id\": - 885240, \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 suspect this - is due to #11631 \\r\\nI've tried to revert rawhide back to gz... when a compose - with that ever finishes we can see if koschei resumes\", \n \"date_created\": - \"1700699126\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 885567, \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\": \"Doesn't look - like it:\\r\\nhttps://koschei.fedoraproject.org/package/python-nh3?collection=f40\", - \n \"date_created\": \"1701089703\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 885996, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/decathorpe\", \n \"fullname\": - \"Fabio Valentini\", \n \"name\": \"decathorpe\", \n \"url_path\": - \"user/decathorpe\"\n }\n }, \n {\n \"comment\": - \"Yeah, it's getting some db error: \\r\\n\\r\\n```\\r\\nDownloading repo - primary-f38-build-5627628\\r\\n/usr/lib64/python3.10/site-packages/hawkey/__init__.py:348: - DeprecationWarning: The class hawkey.Repo is deprecated. Please use dnf.repo.Repo - instead. The class will be removed on 2019-12-31.\\r\\n warnings.warn(msg, - DeprecationWarning)\\r\\nRepo primary-f38-build-5627628 was successfully downloaded\\r\\nResolving - dependencies (repo_id=5627628, collection=f38) for 205 packages\\r\\nService - repo_resolver crashed.\\r\\nTraceback (most recent call last):\\r\\n File - \\\"/usr/lib64/python3.10/site-packages/sqlalchemy/engine/base.py\\\", line - 1900, in _execute_context\\r\\n self.dialect.do_execute(\\r\\n File \\\"/usr/lib64/python3.10/site-packages/sqlalchemy/engine/default.py\\\", - line 736, in do_execute\\r\\n cursor.execute(statement, parameters)\\r\\npsycopg2.errors.NumericValueOutOfRange: - integer out of range\\r\\n```\\r\\n\\r\\n@mizdebsk can you look?\\r\\n\", - \n \"date_created\": \"1701120118\", \n \"edited_on\": null, - \n \"editor\": null, \n \"id\": 886100, \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, I guess this could be: https://github.com/fedora-infra/koschei/issues/234 - again?\", \n \"date_created\": \"1701120193\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 886101, \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 assigned to kevin\", \n \"date_created\": - \"1701305983\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 886486, \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\": \"So, I just did - the steps there to wipe that table and restart the sequence. It seems like - it's processing again... but I will leave this open for a bit to confirm. - \", \n \"date_created\": \"1701305994\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 886487, \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 looks much better now. I'll continue to monitor my packages for potential - issues.\", \n \"date_created\": \"1701365076\", \n \"edited_on\": - null, \n \"editor\": null, \n \"id\": 886582, \n \"notification\": - false, \n \"parent\": null, \n \"reactions\": {}, \n \"user\": - {\n \"full_url\": \"https://pagure.io/user/decathorpe\", \n \"fullname\": - \"Fabio Valentini\", \n \"name\": \"decathorpe\", \n \"url_path\": - \"user/decathorpe\"\n }\n }, \n {\n \"comment\": - \"So, the frontend has been crashing some, but I suppose thats a different - issue... I am going to go ahead and close this now. \\r\\n\\r\\nPlease do - re-open or file a new ticket if you still see any issues. \\r\\n\", \n \"date_created\": - \"1701724097\", \n \"edited_on\": null, \n \"editor\": null, - \n \"id\": 887007, \n \"notification\": false, \n \"parent\": + {\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/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\": \"1701724308\", \n - \ \"edited_on\": null, \n \"editor\": null, \n \"id\": - 887008, \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 appears that since - a few weeks ago, koschei stops being able to resolve dependencies for packages - in some circumstances, and never recovers. In this state, koschei does not - schedule any new scratch builds for the affected packages, and does not report - new issues about unresolved dependencies (because dependency resolution for - the affected packages is apparently stuck). This makes koschei useless for - packages that are affected by this issue - and it appears to be affecting - more and more packages over time.\\r\\n\\r\\nI also filed a ticket with koschei - upstream:\\r\\nhttps://github.com/fedora-infra/koschei/issues/356\\r\\n\", - \n \"custom_fields\": [], \n \"date_created\": \"1700521300\", \n - \ \"depends\": [], \n \"full_url\": \"https://pagure.io/fedora-infrastructure/issue/11636\", - \n \"id\": 11636, \n \"last_updated\": \"1701724308\", \n \"milestone\": + \"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\": null, \n \"priority\": 3, \n \"private\": false, \n \"related_prs\": - [], \n \"status\": \"Closed\", \n \"tags\": [\n \"Needs investigation\", - \n \"high-gain\"\n ], \n \"title\": \"koschei not processing - packages correctly / not resolving dependencies\", \n \"user\": {\n \"full_url\": - \"https://pagure.io/user/decathorpe\", \n \"fullname\": \"Fabio Valentini\", - \n \"name\": \"decathorpe\", \n \"url_path\": \"user/decathorpe\"\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=327\", + [], \n \"status\": \"Closed\", \n \"tags\": [\n \"high-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\", + \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\": 327, \n \"per_page\": 35, \n \"prev\": + \n \"page\": 1, \n \"pages\": 330, \n \"per_page\": 35, \n \"prev\": null\n }, \n \"total_issues\": 35\n}\n" headers: Connection: - Upgrade, Keep-Alive Content-Length: - - '278123' + - '263233' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-mXQWdLqGCxkpg6dTD9lgaYNZW'; style-src - 'self' 'nonce-mXQWdLqGCxkpg6dTD9lgaYNZW'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-DmXqxYjiwBYFwksVVLFqamsJA'; style-src + 'self' 'nonce-DmXqxYjiwBYFwksVVLFqamsJA'; 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: - - Mon, 11 Dec 2023 06:30:07 GMT + - Thu, 22 Feb 2024 09:36:18 GMT Keep-Alive: - timeout=5, max=100 Referrer-Policy: @@ -3651,7 +3347,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: GET - uri: https://pagure.io/api/0/fedora-infrastructure/issues?per_page=35&page=327&status=all + uri: https://pagure.io/api/0/fedora-infrastructure/issues?per_page=35&page=330&status=all response: body: string: "{\n \"args\": {\n \"assignee\": null, \n \"author\": null, \n @@ -3662,37 +3358,6 @@ 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\": \"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, @@ -3943,24 +3608,24 @@ interactions: \n \"fullname\": \"Mike McGrath\", \n \"name\": \"mmcgrath\", \n \"url_path\": \"user/mmcgrath\"\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=327\", - \n \"next\": null, \n \"page\": 327, \n \"pages\": 327, \n \"per_page\": - 35, \n \"prev\": \"https://pagure.io/api/0/fedora-infrastructure/issues?per_page=35&status=all&page=326\"\n - \ }, \n \"total_issues\": 10\n}\n" + \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" headers: Connection: - Upgrade, Keep-Alive Content-Length: - - '22254' + - '19895' Content-Security-Policy: - - default-src 'self';script-src 'self' 'nonce-O2mFVjLL1JqKV3rXyOFyjiLZc'; style-src - 'self' 'nonce-O2mFVjLL1JqKV3rXyOFyjiLZc'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-3PtxA1XgNMMAwBSgMLEOixW1Y'; style-src + 'self' 'nonce-3PtxA1XgNMMAwBSgMLEOixW1Y'; 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: - - Mon, 11 Dec 2023 06:30:13 GMT + - Thu, 22 Feb 2024 09:36:22 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 fce10ac..7c874b5 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-G6zXNBS5xSLB71pU6sTNUvByN'; style-src - 'self' 'nonce-G6zXNBS5xSLB71pU6sTNUvByN'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-rZvwa0cHb63OFfYerV3PXyJlE'; style-src + 'self' 'nonce-rZvwa0cHb63OFfYerV3PXyJlE'; 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: - - Mon, 11 Dec 2023 06:30:06 GMT + - Thu, 22 Feb 2024 09:36:17 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 a0f7e28..5383991 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-RxXujXsa8SSiGthfBu21XyP7c'; style-src - 'self' 'nonce-RxXujXsa8SSiGthfBu21XyP7c'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-gDpw3TROvHs2mWruTFdpHz87C'; style-src + 'self' 'nonce-gDpw3TROvHs2mWruTFdpHz87C'; 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: - - Mon, 11 Dec 2023 06:30:15 GMT + - Thu, 22 Feb 2024 09:36:24 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 88e681d..19a61df 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-0jUcsEZHOUccSjvL7CA56ig73'; style-src - 'self' 'nonce-0jUcsEZHOUccSjvL7CA56ig73'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-uPLT7g9mgNqL4IiN28fNTLXyc'; style-src + 'self' 'nonce-uPLT7g9mgNqL4IiN28fNTLXyc'; 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: - - Mon, 11 Dec 2023 06:30:16 GMT + - Thu, 22 Feb 2024 09:36:25 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 index 8017fc4..434b5c0 100644 --- 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 @@ -1,6 +1,6 @@ interactions: - request: - body: body=%0AThis+test+comment+with+broken+links+was+created+on+Mon+Dec+11+06%3A21%3A34+2023.%0A%0A_This+comment+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%23comment-878473%29+by+%5B%2A%2AOrdinary+Engineer%2A%2A%5D%28https%3A%2F%2Ffedoraproject.org%29+under%0A%5Bthis%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%29+issue+ticket+on+a+Pagure+repository%2C+%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+on%0A%5B%2A%2AMon+Dec+11+06%3A21%3A34+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Fdec-11-2023%2F06-21%29._%0A%0A_This+comment+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + body: null headers: Accept: - '*/*' @@ -8,40 +8,130 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '786' + 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/x-www-form-urlencoded + - 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-requests/2.31.0 + - python-gitlab/4.4.0 method: POST - uri: https://gitlab.com/api/v4/projects/42823949/issues/1/notes + uri: https://gitlab.com/api/v4/projects/42823949/issues/1/discussions response: body: - string: '{"id":1687905004,"type":null,"body":"\nThis test comment with broken - links was created on Mon Dec 11 06:21:34 2023.\n\n_This comment was originally - created [here](https://pagure.io/protop2g-test-srce/issue/1#comment-878473) + 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[**Mon Dec 11 06:21:34 2023** UTC](https://savvytime.com/converter/utc/dec-11-2023/06-21)._\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/1b6289f6c729f1ba694aa2bc296a7277?s=80\u0026d=identicon","web_url":"https://gitlab.com/project_42823949_bot_992e5e9e997a7b44822ff32a4c634472"},"created_at":"2023-12-11T06:30:32.275Z","updated_at":"2023-12-11T06:30:32.275Z","system":false,"noteable_id":134663521,"noteable_type":"Issue","project_id":42823949,"resolvable":false,"confidential":false,"internal":false,"noteable_iid":1,"commands_changes":{}}' + 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: - - 833badf09ceb85ba-BOM + - 85963eff3cc993c2-CCU Connection: - keep-alive Content-Length: - - '1262' + - '1444' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:30:32 GMT + - 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=a0Uboo24Hp%2FEhGc%2BHjofQHTf%2F8bn5cc8pYOJlytDUi0Krk6OyTJ%2F1ZPjr7tI4btJDLw768qp1fQBcD01p0dMVNxEfTkbBqZFXdpbg8eYzn1OeBHln%2BTANGM8W%2Bw%3D"}],"group":"cf-nel","max_age":604800}' + - '{"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: '' @@ -50,21 +140,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"67735e5d3a229c80471694e2fec2181c" + - W/"9fe5fc9fd2be5022798f305a9adb0473" gitlab-lb: - - haproxy-main-41-lb-gprd + - haproxy-main-06-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '4' - ratelimit-remaining: - - '1996' - ratelimit-reset: - - '1702276292' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:31:32 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -76,11 +156,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"8bbf8811df3833ed05fcd4c8c0b5d2c5","version":"1"}' + - '{"correlation_id":"3f026980ab747fe14b05443d48aad0b0","version":"1"}' x-request-id: - - 8bbf8811df3833ed05fcd4c8c0b5d2c5 + - 3f026980ab747fe14b05443d48aad0b0 x-runtime: - - '0.505541' + - '1.693238' status: code: 201 message: Created 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 186a92b..8b653bb 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-EvgSdUXjEa8unBsQnhx7mbUPu'; style-src - 'self' 'nonce-EvgSdUXjEa8unBsQnhx7mbUPu'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-UFKLVktdbOn150JoFgopcFoyf'; style-src + 'self' 'nonce-UFKLVktdbOn150JoFgopcFoyf'; 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: - - Mon, 11 Dec 2023 06:30:23 GMT + - Thu, 22 Feb 2024 09:36:32 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 367ba95..677d7c9 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-KOpywHkaKV3DcBbiaEuC3eNFR'; style-src - 'self' 'nonce-KOpywHkaKV3DcBbiaEuC3eNFR'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-BurQw5MrwQmEvU6vriKW9roLm'; style-src + 'self' 'nonce-BurQw5MrwQmEvU6vriKW9roLm'; 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: - - Mon, 11 Dec 2023 06:30:24 GMT + - Thu, 22 Feb 2024 09:36:33 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 0e72eb7..5f512b7 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-KnlVZ8NjutDkFgAAujHwhCjMM'; style-src - 'self' 'nonce-KnlVZ8NjutDkFgAAujHwhCjMM'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-toz9WUtB5vU9o35iqkFhihzb3'; style-src + 'self' 'nonce-toz9WUtB5vU9o35iqkFhihzb3'; 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: - - Mon, 11 Dec 2023 06:30:25 GMT + - Thu, 22 Feb 2024 09:36:34 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 855c77d..c760417 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-kbJzgp1ciCSwQWdicgwGzShxf'; style-src - 'self' 'nonce-kbJzgp1ciCSwQWdicgwGzShxf'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-uOm0FBq6xE8SRRFWAbjbCJKp1'; style-src + 'self' 'nonce-uOm0FBq6xE8SRRFWAbjbCJKp1'; 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: - - Mon, 11 Dec 2023 06:30:28 GMT + - Thu, 22 Feb 2024 09:36:37 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 110acb4..8a4ceea 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-fa1A6JxFcPi7YZuZ5Xu4xFZJK'; style-src - 'self' 'nonce-fa1A6JxFcPi7YZuZ5Xu4xFZJK'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-5wARXSdfECXG3lrTOyswzM4g5'; style-src + 'self' 'nonce-5wARXSdfECXG3lrTOyswzM4g5'; 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: - - Mon, 11 Dec 2023 06:30:26 GMT + - Thu, 22 Feb 2024 09:36:35 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 be82383..117be0d 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-DIKNTmAamBhVBsi14k0SrpyHy'; style-src - 'self' 'nonce-DIKNTmAamBhVBsi14k0SrpyHy'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-aX6Wcq3sfq2PEeBPHaDkvVDgs'; style-src + 'self' 'nonce-aX6Wcq3sfq2PEeBPHaDkvVDgs'; 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: - - Mon, 11 Dec 2023 06:30:18 GMT + - Thu, 22 Feb 2024 09:36:28 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 cce04a9..5f85392 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-I2YsHnpbDIRTpNVgFLa3Og89h'; style-src - 'self' 'nonce-I2YsHnpbDIRTpNVgFLa3Og89h'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-QPFayHZQoVYHEvpwAtYt4lFOI'; style-src + 'self' 'nonce-QPFayHZQoVYHEvpwAtYt4lFOI'; 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: - - Mon, 11 Dec 2023 06:30:20 GMT + - Thu, 22 Feb 2024 09:36:29 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 915a4bd..bdcfe51 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-Z00KAsoyeVn8MjOJye1gC1HPs'; style-src - 'self' 'nonce-Z00KAsoyeVn8MjOJye1gC1HPs'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-3XYwwdnkhWklgHyaNLtrPTMjA'; style-src + 'self' 'nonce-3XYwwdnkhWklgHyaNLtrPTMjA'; 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: - - Mon, 11 Dec 2023 06:30:17 GMT + - Thu, 22 Feb 2024 09:36:27 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 bf7415d..49462cf 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-uGX5hUGklinSl78PxHQyNKJpY'; style-src - 'self' 'nonce-uGX5hUGklinSl78PxHQyNKJpY'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-rpqeSAc0yVR3UYDlba3YaALkz'; style-src + 'self' 'nonce-rpqeSAc0yVR3UYDlba3YaALkz'; 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: - - Mon, 11 Dec 2023 06:30:21 GMT + - Thu, 22 Feb 2024 09:36:30 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 b107ba1..5ac32b2 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-CNsbPEZB3N2W8MIXP66aToC87'; style-src - 'self' 'nonce-CNsbPEZB3N2W8MIXP66aToC87'; object-src 'none';base-uri 'self';img-src + - default-src 'self';script-src 'self' 'nonce-uzuPcCpQA7tV8K6gI8fI0TcxK'; style-src + 'self' 'nonce-uzuPcCpQA7tV8K6gI8fI0TcxK'; 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: - - Mon, 11 Dec 2023 06:30:22 GMT + - Thu, 22 Feb 2024 09:36:31 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 index b12ee9c..c766d6d 100644 --- 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 @@ -1,6 +1,6 @@ interactions: - request: - body: state_event=close + body: null headers: Accept: - '*/*' @@ -8,12 +8,97 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '17' + 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/x-www-form-urlencoded + - 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-requests/2.31.0 + - python-gitlab/4.4.0 method: PUT uri: https://gitlab.com/api/v4/projects/42823949/issues/1 response: @@ -28,14 +113,14 @@ interactions: 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":"2023-12-11T06:30:32.331Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/4249f4df72b475e7894fabed1c5888cf?s=80\u0026d=identicon","web_url":"https://gitlab.com/ghost1"},"type":"ISSUE","assignee":null,"user_notes_count":126,"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 + 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: - - 833badf66de184c5-BOM + - 85963f113de493cb-CCU Connection: - keep-alive Content-Encoding: @@ -43,11 +128,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:30:33 GMT + - 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=L0RtRHq8HjDRJWijjFhezqdlmmkFO4EMoHL1287ZKBWIzw7pwuC0Tr7aMidmYOvUCjjO0786pqOZoWuB33AG27OU4ckn1%2FhcXxQJ37hPXr%2Bys%2FKTt7o8dlQ7PHA%3D"}],"group":"cf-nel","max_age":604800}' + - '{"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: '' @@ -58,21 +143,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"8f1a4f8dce6dc991fe4722a5dadd7af6" + - W/"f708edd8cba6b3c5fb164970473a3b39" gitlab-lb: - - haproxy-main-03-lb-gprd + - haproxy-main-13-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '5' - ratelimit-remaining: - - '1995' - ratelimit-reset: - - '1702276293' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:31:33 GMT + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -84,11 +159,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"f93c70948f6ce912cd65b9360c8e4fca","version":"1"}' + - '{"correlation_id":"2b5f358f480ef2be3561396baaffb8ce","version":"1"}' x-request-id: - - f93c70948f6ce912cd65b9360c8e4fca + - 2b5f358f480ef2be3561396baaffb8ce x-runtime: - - '0.294322' + - '0.380498' status: code: 200 message: OK 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 index 46143f2..53ef709 100644 --- 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 @@ -1,6 +1,6 @@ interactions: - request: - body: state_event=close + body: null headers: Accept: - '*/*' @@ -8,22 +8,22 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '17' - Content-Type: - - application/x-www-form-urlencoded + Content-type: + - application/json + Cookie: + - _cfuvid=vu8WFvYnYBoMr_rXlAqCO4OhQXmFXlp2D2FwLpYVZ7g-1708594478626-0.0-604800000 User-Agent: - - python-requests/2.31.0 - method: PUT + - 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: - - DYNAMIC + - MISS CF-RAY: - - 833badfabb358549-BOM + - 85963f194d3b93cb-CCU Connection: - keep-alive Content-Length: @@ -31,11 +31,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:30:33 GMT + - 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=Ak0vnh7Rh4LMYthHv0kDvOwJ56kgH7ebsoUFw%2Fq%2ByGf2PWlBShrqP%2BdVt8QsahfD2FjBJe4XyrHw%2BvD3eSnWayNvYB87%2Bg%2FPJwwZKz8tTcRSjZuUSvy6cpciVRU%3D"}],"group":"cf-nel","max_age":604800}' + - '{"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: '' @@ -46,19 +46,9 @@ interactions: content-security-policy: - default-src 'none' gitlab-lb: - - haproxy-main-58-lb-gprd + - haproxy-main-36-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '6' - ratelimit-remaining: - - '1994' - ratelimit-reset: - - '1702276293' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:31:33 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -66,11 +56,11 @@ interactions: vary: - Origin, Accept-Encoding x-gitlab-meta: - - '{"correlation_id":"3c371376d478a6415db838dc4fc527d2","version":"1"}' + - '{"correlation_id":"b8841305080dbf4112a0575722b8a9b8","version":"1"}' x-request-id: - - 3c371376d478a6415db838dc4fc527d2 + - b8841305080dbf4112a0575722b8a9b8 x-runtime: - - '0.055450' + - '0.056521' status: code: 404 message: Not Found 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 c01f586..4545602 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,6 +1,12 @@ interactions: - request: - body: title=%5BSN%231%5D+This+is+the+title+of+the+first+test+issue&description=%0AThis+is+the+body+of+the+first+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AOrdinary+Engineer%2A%2A%5D%28https%3A%2F%2Ffedoraproject.org%29+on%0A%5B%2A%2AFri+Oct+13+03%3A57%3A42+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F03-57%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A&labels=aaaa%2Cbbbb + 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 + 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)._\n", + "labels": ["aaaa", "bbbb"]}' headers: Accept: - '*/*' @@ -9,40 +15,42 @@ interactions: Connection: - keep-alive Content-Length: - - '734' - Content-Type: - - application/x-www-form-urlencoded + - '613' + Content-type: + - application/json + Cookie: + - _cfuvid=vu8WFvYnYBoMr_rXlAqCO4OhQXmFXlp2D2FwLpYVZ7g-1708594478626-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467286,"iid":6114,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142497685,"iid":13170,"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":"2023-12-11T06:30:30.127Z","updated_at":"2023-12-11T06:30:30.127Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6114","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/6114","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6114/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6114/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6114","relative":"#6114","full":"gridhead/protop2g-test#6114"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833bade11a376ed4-BOM + - 85963eeffeec94bf-CCU Connection: - keep-alive Content-Length: - - '2159' + - '2199' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:30:31 GMT + - Thu, 22 Feb 2024 09:36: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=SpHJfVemNSg2I1WEhXSYpmgglFR%2BgvB2Fgjc02Sjja%2BPXFCXKjQ5gTXo14GAME9u%2B9ulY5CO1fbiF72HO7G7ZdTRZaCOSZah%2Fh5v9UBCcBRLA3HbE87w3wDxvJs%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=TBfUHfZ%2Bvx7B%2FCcIc4AhUVMrzmfEa2cRGJBv2BSRmQesExTawOEsG4bidqpsQjttfVphPyds5ADl4es%2F3BpcM%2FxI%2BIMbL%2FlAoHkpnZtV0xRCjFgcCHK82YFOxCDyoisJ0CLnD6hKOVo%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -51,21 +59,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"8e812be97f73aca56f5b9999772d5ffb" + - W/"27df68c77c315fa65c04450abd12ddec" gitlab-lb: - - haproxy-main-48-lb-gprd + - haproxy-main-06-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '3' - ratelimit-remaining: - - '1997' - ratelimit-reset: - - '1702276291' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:31:31 GMT + - api-gke-us-east1-b referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -77,11 +75,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"81cdd69685f3dc2b138b375d87cfdf66","version":"1"}' + - '{"correlation_id":"b6f13e893ffeebf8e51aabede5e06b07","version":"1"}' x-request-id: - - 81cdd69685f3dc2b138b375d87cfdf66 + - b6f13e893ffeebf8e51aabede5e06b07 x-runtime: - - '2.087146' + - '1.237991' 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 f2b3589..8efb390 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,6 +1,11 @@ interactions: - request: - body: title=%5BSN%231%5D+This+is+the+title+of+the+first+test+issue&description=%0AThis+is+the+body+of+the+first+test+issue%0A%0A_This+issue+ticket+was+originally+created+%5Bhere%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%2Fissue%2F1%29+on+a+Pagure+repository%2C%0A%5B%2A%2Aprotop2g-test-srce%2A%2A%5D%28https%3A%2F%2Fpagure.io%2Fprotop2g-test-srce%29+by+%5B%2A%2AOrdinary+Engineer%2A%2A%5D%28https%3A%2F%2Ffedoraproject.org%29+on%0A%5B%2A%2AFri+Oct+13+03%3A57%3A42+2023%2A%2A+UTC%5D%28https%3A%2F%2Fsavvytime.com%2Fconverter%2Futc%2Foct-13-2023%2F03-57%29._%0A%0A_This+issue+ticket+was+automatically+created+by+the%0A%5B%2A%2APagure+Exporter%2A%2A%5D%28https%3A%2F%2Fgithub.com%2Fgridhead%2Fpagure-exporter%29._%0A + 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 + 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)._\n"}' headers: Accept: - '*/*' @@ -9,40 +14,42 @@ interactions: Connection: - keep-alive Content-Length: - - '715' - Content-Type: - - application/x-www-form-urlencoded + - '585' + Content-type: + - application/json + Cookie: + - _cfuvid=vu8WFvYnYBoMr_rXlAqCO4OhQXmFXlp2D2FwLpYVZ7g-1708594478626-0.0-604800000 User-Agent: - - python-requests/2.31.0 + - python-gitlab/4.4.0 method: POST uri: https://gitlab.com/api/v4/projects/42823949/issues response: body: - string: '{"id":139467285,"iid":6113,"project_id":42823949,"title":"[SN#1] This + string: '{"id":142497683,"iid":13169,"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":"2023-12-11T06:30:28.827Z","updated_at":"2023-12-11T06:30:28.827Z","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/1b6289f6c729f1ba694aa2bc296a7277?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/6113","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/6113","notes":"https://gitlab.com/api/v4/projects/42823949/issues/6113/notes","award_emoji":"https://gitlab.com/api/v4/projects/42823949/issues/6113/award_emoji","project":"https://gitlab.com/api/v4/projects/42823949","closed_as_duplicate_of":null},"references":{"short":"#6113","relative":"#6113","full":"gridhead/protop2g-test#6113"},"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-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}' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 833baddb6b0d85e4-BOM + - 85963ee9bba394d0-CCU Connection: - keep-alive Content-Length: - - '2146' + - '2186' Content-Type: - application/json Date: - - Mon, 11 Dec 2023 06:30:29 GMT + - Thu, 22 Feb 2024 09:36: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=XUchuSrXxhhw%2BfiqVdNA%2FAl1RBv7PBzqhF9jn1I7AHzNW8CCWVYr45IJBfI4Yqn53o0AvPQwJkUJgx79Un9Ewgo957B79zX0Aw2RSBIWfjmC4nI56oLfFJVzfJM%3D"}],"group":"cf-nel","max_age":604800}' + - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=v59DiVpIapudlXr8Sb1b6p6UAZuixh2FYibXqxx%2FJwkGakqujauZOqNYKistIxYfKXUynKfdI%2BZuRY5xycYwxWW%2FBBOvUSR3XVuH4W20LcdNY0LorhQ0pRUCNlrFHblUl1eX2wORlqo%3D"}],"group":"cf-nel","max_age":604800}' Server: - cloudflare Set-Cookie: '' @@ -51,21 +58,11 @@ interactions: content-security-policy: - default-src 'none' etag: - - W/"a59054c65ca7ae2e5bc0c6afa57fd510" + - W/"ee02f7bcbdccbeee09b43f5ab4b63ba6" gitlab-lb: - - haproxy-main-37-lb-gprd + - haproxy-main-46-lb-gprd gitlab-sv: - - localhost - ratelimit-limit: - - '2000' - ratelimit-observed: - - '2' - ratelimit-remaining: - - '1998' - ratelimit-reset: - - '1702276289' - ratelimit-resettime: - - Mon, 11 Dec 2023 06:31:29 GMT + - api-gke-us-east1-c referrer-policy: - strict-origin-when-cross-origin strict-transport-security: @@ -77,11 +74,11 @@ interactions: x-frame-options: - SAMEORIGIN x-gitlab-meta: - - '{"correlation_id":"a55cd61de6be4f844712c5247a4f68d3","version":"1"}' + - '{"correlation_id":"af4d1d65268b3f9cc5c0477e5870f932","version":"1"}' x-request-id: - - a55cd61de6be4f844712c5247a4f68d3 + - af4d1d65268b3f9cc5c0477e5870f932 x-runtime: - - '0.565035' + - '0.585994' status: code: 201 message: Created diff --git a/test/test_stat.py b/test/test_stat.py new file mode 100644 index 0000000..dffc0ce --- /dev/null +++ b/test/test_stat.py @@ -0,0 +1,54 @@ +""" +Pagure Exporter +Copyright (C) 2022-2023 Akashdeep Dhar + +This program is free software: you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free Software +Foundation, either version 3 of the License, or (at your option) any later +version. + +This program is distributed in the hope that it will be useful, but WITHOUT +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +details. + +You should have received a copy of the GNU General Public License along with +this program. If not, see . + +Any Red Hat trademarks that are incorporated in the source code or +documentation are not subject to the GNU General Public License and may only +be used or replicated with the express permission of Red Hat, Inc. +""" + + +from os import environ as envr + +import pytest +from click.testing import CliRunner + +from pagure_exporter.main import main + + +@pytest.mark.vcr(filter_headers=["Authorization", "PRIVATE-TOKEN"]) +@pytest.mark.parametrize( + "cmdl, code, text", + [ + pytest.param( + f"--srce {envr['TEST_SRCE']} --dest {envr['TEST_DEST']} --pkey {envr['TEST_PKEY']} --gkey STUPIDCODE --fusr {envr['TEST_FUSR']} --tusr {envr['TEST_TUSR']} tkts --status OPEN", # noqa: E501 + 1, + [ + "Destination namespace metadata acquisition failed!", + "The namespace metadata could not be acquired.", + "Code: 0", + "Reason: 401: 401 Unauthorized", + ], + id="Checking for possible errors while attempting to authenticate in the destination namespace using wrong credentials", # noqa: E501 + ), + ] +) +def test_stat_destdata_obtninfo(caplog, cmdl, code, text): + runner = CliRunner() + result = runner.invoke(main, cmdl) + assert result.exit_code == code # noqa: S101 + for indx in text: + assert indx in caplog.text # noqa: S101 diff --git a/test/test_tkts.py b/test/test_tkts.py index 09ee7c5..6e6a44c 100644 --- a/test/test_tkts.py +++ b/test/test_tkts.py @@ -29,7 +29,7 @@ from pagure_exporter.main import main -@pytest.mark.vcr(filter_headers=["Authorization"]) +@pytest.mark.vcr(filter_headers=["Authorization", "PRIVATE-TOKEN"]) @pytest.mark.parametrize( "cmdl, code, text", [ @@ -93,8 +93,8 @@ [ "[ FAIL ] Destination namespace metadata acquisition failed!", "The namespace metadata could not be acquired.", - "Code: 404", - "Reason: Not Found", + "Code: 0", + "Reason: 404: 404 Project Not Found", ], id="Transferring issue tickets to a destination namespace that does not exist", ), diff --git a/test/test_unit_gitlab.py b/test/test_unit_gitlab.py new file mode 100644 index 0000000..2ab8c45 --- /dev/null +++ b/test/test_unit_gitlab.py @@ -0,0 +1,170 @@ +""" +Pagure Exporter +Copyright (C) 2022-2023 Akashdeep Dhar + +This program is free software: you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free Software +Foundation, either version 3 of the License, or (at your option) any later +version. + +This program is distributed in the hope that it will be useful, but WITHOUT +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +details. + +You should have received a copy of the GNU General Public License along with +this program. If not, see . + +Any Red Hat trademarks that are incorporated in the source code or +documentation are not subject to the GNU General Public License and may only +be used or replicated with the express permission of Red Hat, Inc. +""" + + +from datetime import datetime +from os import environ as envr +from time import time +from unittest.mock import Mock + +import pytest +from gitlab.exceptions import GitlabCreateError, GitlabUpdateError + +from pagure_exporter.conf import standard +from pagure_exporter.work.tkts import MoveTkts + + +@pytest.mark.vcr(filter_headers=["Authorization", "PRIVATE-TOKEN"]) +@pytest.mark.parametrize( + "data, rslt", + [ + pytest.param( + { + "assignee": None, + "blocks": [], + "close_status": None, + "closed_at": None, + "closed_by": None, + "comments": [], + "content": "This is the body of the first test issue", + "custom_fields": [], + "date_created": "1697169462", + "depends": [], + "full_url": "https://pagure.io/protop2g-test-srce/issue/1", + "id": 1, + "last_updated": "1697169924", + "milestone": None, + "priority": None, + "private": False, + "related_prs": [], + "status": "Open", + "tags": ["aaaa", "bbbb"], + "title": "This is the title of the first test issue", + "user": { + "full_url": "https://fedoraproject.org", + "fullname": "Ordinary Engineer", + "name": "ordinaryengineer", + "url_path": "user/ordinaryengineer", + }, + }, + False, + id="Checking for possible errors while creating an issue ticket", # noqa: E501 + ) + ] +) +def test_unit_gitlab_itertkts(caplog, data, rslt): + test_movetkts = MoveTkts() + + # Store the previous state of the object so that it can be restored after mocking + keepsake_gpro = standard.gpro + + # Mocking project object from the GitLab class and simulating a failure scenario + standard.gpro = Mock() + standard.gpro.issues.create.side_effect = GitlabCreateError() + + 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.gpro = keepsake_gpro + + +@pytest.mark.vcr(filter_headers=["Authorization", "PRIVATE-TOKEN"]) +@pytest.mark.parametrize( + "data, rslt", + [ + pytest.param( + { + "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", + }, + }, + False, + id="Checking for possible errors while creating a comment under an existing issue ticket", # noqa: E501 + ), + ] +) +def test_unit_gitlab_itercmts(caplog, data, rslt): + test_movetkts = MoveTkts() + + # Store the previous state of the object so that it can be restored after mocking + keepsake_gpro = standard.gpro + + # Mocking project object from the GitLab class and simulating a failure scenario + standard.gpro = Mock() + standard.gpro.issues.get().discussions.create.side_effect = GitlabCreateError() + + 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.gpro = keepsake_gpro + + +@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, + False, + id="Checking for possible errors while updating the issue ticket status", # noqa: E501 + ), + ] +) +def test_unit_gitlab_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 + test_movetkts = MoveTkts() + + # Store the previous state of the object so that it can be restored after mocking + keepsake_gpro = standard.gpro + + # Mocking project object from the GitLab class and simulating a failure scenario + standard.gpro = Mock() + standard.gpro.issues.get().save.side_effect = GitlabUpdateError() + + assert rslt == test_movetkts.iterstat()[0] # noqa: S101 + + # Changing the shared variable back to its default + # Please check https://github.com/gridhead/protop2g/issues/35 for additional details + standard.gpro = keepsake_gpro diff --git a/test/test_unit_tkts.py b/test/test_unit_tkts.py index b44165d..a45fb11 100644 --- a/test/test_unit_tkts.py +++ b/test/test_unit_tkts.py @@ -32,7 +32,7 @@ from pagure_exporter.work.tkts import MoveTkts -@pytest.mark.vcr(filter_headers=["Authorization"]) +@pytest.mark.vcr(filter_headers=["Authorization", "PRIVATE-TOKEN"]) @pytest.mark.parametrize( "srce, dest, pkey, gkey, fusr, tusr, qant, stat, rslt", [ @@ -71,7 +71,7 @@ def test_unit_getcount(caplog, srce, dest, pkey, gkey, fusr, tusr, qant, stat, r assert qant <= standard.tktcount # noqa: S101 -@pytest.mark.vcr(filter_headers=["Authorization"]) +@pytest.mark.vcr(filter_headers=["Authorization", "PRIVATE-TOKEN"]) @pytest.mark.parametrize( "srce, dest, pkey, gkey, fusr, tusr, root, rslt", [ @@ -122,7 +122,7 @@ def test_unit_getcount_expt(caplog, srce, dest, pkey, gkey, fusr, tusr, root, rs standard.pagulink = "https://pagure.io/api/0" -@pytest.mark.vcr(filter_headers=["Authorization"]) +@pytest.mark.vcr(filter_headers=["Authorization", "PRIVATE-TOKEN"]) @pytest.mark.parametrize( "srce, dest, pkey, gkey, fusr, tusr, size, indx, stat, rslt", [ @@ -175,7 +175,7 @@ def test_unit_iterpage(caplog, srce, dest, pkey, gkey, fusr, tusr, size, indx, s assert rslt == test_movetkts.iterpage(indx)[0] # noqa: S101 -@pytest.mark.vcr(filter_headers=["Authorization"]) +@pytest.mark.vcr(filter_headers=["Authorization", "PRIVATE-TOKEN"]) @pytest.mark.parametrize( "srce, dest, pkey, gkey, fusr, tusr, indx, root, rslt", [ @@ -229,7 +229,7 @@ def test_unit_iterpage_expt(caplog, srce, dest, pkey, gkey, fusr, tusr, indx, ro standard.pagulink = "https://pagure.io/api/0" -@pytest.mark.vcr(filter_headers=["Authorization"]) +@pytest.mark.vcr(filter_headers=["Authorization", "PRIVATE-TOKEN"]) @pytest.mark.parametrize( "srce, dest, pkey, gkey, fusr, tusr, indx, stat, skip, rslt", [ @@ -285,7 +285,7 @@ def test_unit_iteriden(caplog, srce, dest, pkey, gkey, fusr, tusr, indx, stat, s assert skip == test_iteriden[1] # noqa: S101 -@pytest.mark.vcr(filter_headers=["Authorization"]) +@pytest.mark.vcr(filter_headers=["Authorization", "PRIVATE-TOKEN"]) @pytest.mark.parametrize( "srce, dest, pkey, gkey, fusr, tusr, indx, root, rslt", [ @@ -339,7 +339,7 @@ def test_unit_iteriden_expt(caplog, srce, dest, pkey, gkey, fusr, tusr, indx, ro standard.pagulink = "https://pagure.io/api/0" -@pytest.mark.vcr(filter_headers=["Authorization"]) +@pytest.mark.vcr(filter_headers=["Authorization", "PRIVATE-TOKEN"]) @pytest.mark.parametrize( "srce, dest, pkey, gkey, fusr, tusr, data, root, tags, rslt", [ @@ -438,46 +438,6 @@ def test_unit_iteriden_expt(caplog, srce, dest, pkey, gkey, fusr, tusr, indx, ro False, id="Attempting to migrate an invalid issue ticket without tags to 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"], - { - "assignee": None, - "blocks": [], - "close_status": None, - "closed_at": None, - "closed_by": None, - "comments": [], - "content": "This is the body of the first test issue", - "custom_fields": [], - "date_created": "1697169462", - "depends": [], - "full_url": "https://pagure.io/protop2g-test-srce/issue/1", - "id": 1, - "last_updated": "1697169924", - "milestone": None, - "priority": None, - "private": False, - "related_prs": [], - "status": "Open", - "tags": ["aaaa", "bbbb"], - "title": "This is the title of the first test issue", - "user": { - "full_url": "https://fedoraproject.org", - "fullname": "Ordinary Engineer", - "name": "ordinaryengineer", - "url_path": "user/ordinaryengineer", - }, - }, - "https://jitleb.com/api/v1212/projects", - False, - False, - id="Attempting to migrate an existing issue ticket without tags to an invalid namespace", # noqa: E501 - ), ], ) def test_unit_itertkts(caplog, srce, dest, pkey, gkey, fusr, tusr, data, root, tags, rslt): @@ -492,7 +452,7 @@ def test_unit_itertkts(caplog, srce, dest, pkey, gkey, fusr, tusr, data, root, t standard.gtlblink = "https://gitlab.com/api/v4/projects" -@pytest.mark.vcr(filter_headers=["Authorization"]) +@pytest.mark.vcr(filter_headers=["Authorization", "PRIVATE-TOKEN"]) @pytest.mark.parametrize( "srce, dest, pkey, gkey, fusr, tusr, data, root, tkid, rslt", [ @@ -539,34 +499,6 @@ def test_unit_itertkts(caplog, srce, dest, pkey, gkey, fusr, tusr, data, root, t False, id="Attempting to migrate an invalid 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"], - { - "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://jitleb.com/api/v1212/projects", - 1, - False, - id="Attempting to migrate an existing comment to an invalid namespace", - ), ], ) def test_unit_itercmts(caplog, srce, dest, pkey, gkey, fusr, tusr, data, root, tkid, rslt): @@ -581,7 +513,7 @@ def test_unit_itercmts(caplog, srce, dest, pkey, gkey, fusr, tusr, data, root, t standard.gtlblink = "https://gitlab.com/api/v4/projects" -@pytest.mark.vcr(filter_headers=["Authorization"]) +@pytest.mark.vcr(filter_headers=["Authorization", "PRIVATE-TOKEN"]) @pytest.mark.parametrize( "srce, dest, pkey, gkey, fusr, tusr, root, tkid, shut, rslt", [ @@ -608,21 +540,8 @@ def test_unit_itercmts(caplog, srce, dest, pkey, gkey, fusr, tusr, data, root, t "https://gitlab.com/api/v4/projects", 0, True, - 404, - 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://jitleb.com/api/v1212/projects", - 1, - True, False, - id="Attempting to migrate status of an existing issue ticket when requested on an invalid namespace", # noqa: E501 + id="Attempting to migrate status of an invalid issue ticket when requested on an existing namespace", # noqa: E501 ), pytest.param( envr["TEST_SRCE"], diff --git a/tox.ini b/tox.ini index 043620e..d75e710 100644 --- a/tox.ini +++ b/tox.ini @@ -20,7 +20,7 @@ deps = commands_pre = poetry install --all-extras commands = - poetry run pytest -o 'addopts=--cov-config .coveragerc --cov=pagure_exporter --cov-report term-missing --cov-report xml --cov-report html --record-mode=none' test/ {posargs} -vvv + poetry run pytest -o 'addopts=--cov-config .coveragerc --cov=pagure_exporter --cov-report term-missing --cov-report xml --cov-report html --record-mode=new_episodes' test/ {posargs} -vvv # To let your instances of `print` commands appear on stdout in the tests for debugging, use `pytest -s` on the above command.