Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 853431 Details for
Bug 1056039
[PATCH] $releasever in Repos field is not expanded
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
[PATCH] unquote repos
0001-1056039-dispatcher-unquote-repos.patch (text/plain), 1.10 KB, created by
Igor Gnatenko
on 2014-01-21 19:49:40 UTC
(
hide
)
Description:
[PATCH] unquote repos
Filename:
MIME Type:
Creator:
Igor Gnatenko
Created:
2014-01-21 19:49:40 UTC
Size:
1.10 KB
patch
obsolete
>From e8b12c81b20a81053edb615ccef304a73f2583df Mon Sep 17 00:00:00 2001 >From: Igor Gnatenko <i.gnatenko.brain@gmail.com> >Date: Tue, 21 Jan 2014 23:42:34 +0400 >Subject: [PATCH] 1056039 - dispatcher: unquote repos > >Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com> >--- > backend/dispatcher.py | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > >diff --git a/backend/dispatcher.py b/backend/dispatcher.py >index d251075..a00e674 100644 >--- a/backend/dispatcher.py >+++ b/backend/dispatcher.py >@@ -18,6 +18,7 @@ import subprocess > import string > import setproctitle > from IPy import IP >+import urllib > > try: > import fedmsg >@@ -228,7 +229,7 @@ class Worker(multiprocessing.Process): > return None > jobdata = Bunch() > jobdata.pkgs = build['pkgs'].split(' ') >- jobdata.repos = [r for r in build['repos'].split(' ') if r.strip() ] >+ jobdata.repos = [urllib.unquote(r) for r in build['repos'].split(' ') if r.strip() ] > jobdata.chroot = build['chroot'] > jobdata.buildroot_pkgs = build['buildroot_pkgs'] > jobdata.memory_reqs = build['memory_reqs'] >-- >1.8.5.3 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 1056039
:
853431
|
854105
|
854608