Author: sebb
Date: Wed Jan 29 13:47:53 2025
New Revision: 1923442
URL: http://svn.apache.org/viewvc?rev=1923442&view=rev
Log:
Temporarily disable auth as it does not seem to be needed...
Also for projects
Modified:
comdev/reporter.apache.org/trunk/scripts/readjira.py
Modified: comdev/reporter.apache.org/trunk/scripts/readjira.py
URL:
http://svn.apache.org/viewvc/comdev/reporter.apache.org/trunk/scripts/readjira.py?rev=1923442&r1=1923441&r2=1923442&view=diff
==============================================================================
--- comdev/reporter.apache.org/trunk/scripts/readjira.py (original)
+++ comdev/reporter.apache.org/trunk/scripts/readjira.py Wed Jan 29 13:47:53
2025
@@ -61,7 +61,7 @@ def getProjects():
print("Refresh %s" % PROJECT_JSON)
try:
req = Request("https://issues.apache.org/jira/rest/api/2/project.json")
- req.add_header("Authorization", "Basic %s" % base64string)
+ # TEMP req.add_header("Authorization", "Basic %s" % base64string)
x = json.loads(urlopen(req,
timeout=JIRATIMEOUT).read().decode('utf-8'))
with open(PROJECT_JSON, "w") as f:
json.dump(x, f, indent=1, sort_keys=True)