[releng] Issue #7275: provide casync index and object storage files for
images on getfedora.org
by Basti Endres
sedrubal reported a new issue against the project: `releng` that you are following:
``
[casync](https://github.com/systemd/casync) is like a new and better rsync for directory trees, binary files and system images. It can speed up downloads if the user already has a similar image on his local machine.
For example if a user already has fedora 26 and he wants to download fedora 27 he can use fedora 26 as local seed and download only differences using casync. The same applies if he has fedora workstation and he wants to download fedora server.
It was great if you provide a `.caibx` index file for each image and a (global) `.castr` object storage on the fedora ftp mirrors.
``
To reply, visit the link below or just reply to this email
https://pagure.io/releng/issue/7275
3 years, 10 months
[releng] Issue #7300: Deny push / Implement git hook for unescaped macro in
%changelog
by Igor Gnatenko
ignatenkobrain reported a new issue against the project: `releng` that you are following:
``
```python
#!/usr/bin/python3
import re
import sys
replace = False
out = []
with open(sys.argv[1], "r"):
for l in open(sys.argv[1], "r"):
out.append(l)
if l.startswith("%changelog"):
replace = True
continue
if not replace:
continue
if l.startswith("%"):
replace = False
continue
if l.startswith("*"):
# XXX: HACK
continue
out[-1] = re.sub(r"([^%])%([^% \n\d])", r"\1%%\2", l)
with open(sys.argv[1], "w") as f:
f.writelines(out)
```
This is something I've been using for automatic fix myself. I think we should either prohibit pushing this or have git-hook which would fix it automatically.
``
To reply, visit the link below or just reply to this email
https://pagure.io/releng/issue/7300
3 years, 10 months
[releng] Issue #7522: koji authentication is unreliable
by Till Maas
till reported a new issue against the project: `releng` that you are following:
``
When trying to build, koji errors too often (IMHO) with AuthError: unable to obtain a session
For example for 51 builds it happened 7 times and every time some builds before and afterwards cold be submitted without a problem, so it was not a outage but happenes every few builds. IMHO this is an indication that something is somehow broken, not sure what. The requests that failed were to build snownews qdevelop python-oslo-vmware ptlib opal nuvola-app-tunein nodejs-utf8
Here is some info about the tasks that were created before and afterwards to help identifying the exact times to be able to look into the logs:
```
Created task: 27243633
Task info: https://koji.fedoraproject.org/koji/taskinfo?taskID=27243633
Rebuilding nuvola-app-tunein
AuthError: unable to obtain a session
Command '['koji', 'build', '--nowait', '--background', 'rawhide', 'git+https://src.fedoraproject.org/rpms/nuvola-app-tunein.git?#7608d8e356d...']' returned non-zero exit status 1.
Created task: 27243642
Created task: 27244803
Task info: https://koji.fedoraproject.org/koji/taskinfo?taskID=27244803
Rebuilding opal
AuthError: unable to obtain a session
Command '['koji', 'build', '--nowait', '--background', 'rawhide', 'git+https://src.fedoraproject.org/rpms/opal.git?#ae968fe460fe56a1dad0c0a2...']' returned non-zero exit status 1.
Created task: 27244810
Created task: 27245354
Task info: https://koji.fedoraproject.org/koji/taskinfo?taskID=27245354
Rebuilding ptlib
AuthError: unable to obtain a session
Command '['koji', 'build', '--nowait', '--background', 'rawhide', 'git+https://src.fedoraproject.org/rpms/ptlib.git?#58737509e4992ef8812e9ee...']' returned non-zero exit status 1.
Created task: 27245366
Created task: 27245763
Task info: https://koji.fedoraproject.org/koji/taskinfo?taskID=27245763
Rebuilding qdevelop
AuthError: unable to obtain a session
Command '['koji', 'build', '--nowait', '--background', 'rawhide', 'git+https://src.fedoraproject.org/rpms/qdevelop.git?#e4caa9d3e7ac737a9601...']' returned non-zero exit status 1.
Created task: 27245767
```
``
To reply, visit the link below or just reply to this email
https://pagure.io/releng/issue/7522
3 years, 11 months